-
My tf **version is 1.2.1**. The following code in _capsNet.py_ :
`argmax_idx = tf.argmax(self.softmax_v, axis=1, output type=tf.int32)`
should be changed to:
`argmax_idx = tf.to_int32(tf.argm…
-
Excellent Hacker-Noon article. Dramatic and informative! Congrats...
However, more credit (which you partially do!) should be given to the [CapsNet-Tensorflow repro](https://github.com/naturomics/Ca…
-
https://arxiv.org/abs/1710.09829
-
Any idea why this happens? I'm talking about changing the 16 in `line 46` in `capsulenet.py` to something else like 17 or 32.
# Layer 3: Capsule layer. Routing algorithm works here.
digit…
ghost updated
6 years ago
-
I want to thank you for this wonderful work =),
How can I cite this repo ?
Thanks
-
Hi Xifeng,
Just surprised by how smooth, this code was running. I probably spent 5 minutes for getting everything running and finish one epoch. while I spent a couple of hours try to get "naturomic…
-
https://github.com/naturomics/CapsNet-Tensorflow/blob/master/capsLayer.py#L151
```
# then matmul in the last tow dim: [16, 1].T x [16, 1] => [1, 1], reduce mean in the
# bat…
-
I test the model trained by your capsule net code followed your guide as:
$> python test.py outputs/checkpoints/ckpt_name dataset/
but the terminal point out the error:
Traceback (most recent call…
-
When I test the model using a trained model I get the error below. My TensorFlow Version: 1.2.1
this error changes when I rerun the kernel into `ValueError: At least two variables have the same nam…
-
Hi, Mr. Guo,
I've found a problem when using the GPU version. The following is my steps:
python capsulenet-multi-gpu.py --gpus 2
> Using TensorFlow backend.
> Namespace(batch_size=300, debug=0…