-
on this step
global_step = sess.run(capsNet.global_step)
-
İyi güzel, commentleri Türkçeleştirmişsiniz de kodu gerçekten yazmış kişiye referans verin bari:
https://github.com/XifengGuo/CapsNet-Keras
Hani bilim, etik vs.
-
To the owner and all other visitors:
I do not mean to be offensive, but I decided to speak out my understanding of this routing algorithm as I have not seen any correct implementation so far yet.
…
-
https://github.com/naturomics/CapsNet-Tensorflow/blob/1e0668037447e89aca9173a688ce1965bf6a43c1/capsNet.py#L45
Why `num_outputs` is set in this while it will not be used?
-
Hi,
First of all let me compliment you on the swift implementation CapsNet in Keras. It looks very interesting! I haven't gotten around testing it myself but when I was skimming to the source code …
-
**Preprocessing**
- Scale pixel values to [0,1]
- Data augmentation: shift at most 2 pixel and horizontal flip.
**Keras model structure**
![model](https://user-images.githubusercontent.com…
-
There is a small bug in [capsulenet-multi-gpu.py:129](https://github.com/XifengGuo/CapsNet-Keras/blob/92756e02bc1209e84750792055580fa1a9499cb3/capsulenet-multi-gpu.py#L129)
The function returns 3 v…
-
In routing method, F.softmax is called on b_ij which is 1 x 1152 x 10 x 1 but it should be called on dimension 2. Of course pytorch 0.2.0 does not yet have softmax where dim can be supplied but using…
-
In capsnet_em.py em_routing():
```
r = tf.constant(np.ones([batch_size, caps_num_i, caps_num_c], dtype=np.float32) / 32)
```
should this be:
```
r = tf.constant(np.ones([batch_size, caps_n…
-
Hi Xi,
I want to run the code on Theano. Can you suggest any other implementation of CapsNet which is over Theano?.
Thanks.