Igor

Results 13 comments of Igor

Installed VS2013 and recompiled everything. Boost log: ``` No install step for 'Boost' Completed 'Boost' 1>Done Building Project "C:\Caffe\build\Boost.vcxproj" (Build target(s)) -- FAILED. Build FAILED. Time Elapsed 00:28:05.19 ``` Protobuf...

@mcourteaux code does not work with tf2, since there is no .eval and is_tensor_or_variable functions, any other workaround? And when is this going to be fixed?

@nbro thanks, i used a different workaround: MultivariateNormalTriL instead of DenseFlipout. Thank you for your hints, tried it too, but still fails: ``` 171 loss={'loss_1': negloglik, 'loss_2': MetricWrapper(negloglik, name='nll')}, -->...

Nope, my first loss does not need it, it works without this wrapper.

it is the same function, used for 2 different outputs, yes. And it works fine with MultivariateNormalTril, but does not work with DenseFlipout.

i cannot use negloglik directly with DenseFlipout, because it does not have log_prob somehow. So i either need to replace DenseFlipout with MultivariateNormalTril, or use this wrapper (as i thought,...

why would i need to do this, if it works ok directly? Occam's razor, i don't need a wrapper if i don't need it.

It works directly *only* with loss_1, because it is a "MultivariateNormalTril" layer. It *does not work* directly with loss_2, which is a "DenseFlipout layer".

to rephrase: DenseFlipout has some bug, which was not yet fixed, that is why i am here asking this question. If there would not be a bug in TFP, i...