-
Great respect for your work. I just have a question about the result of the HAN model.
Did you just use the TensorFlow version of HAN implemented by the author? Because I can't reproduce the results …
-
I just did a clean reinstall of DaPy on Python 3.7.4.
When I tried to load methods (from DaPy import methods) I got the following error:
print pageranker(initial, weight)
^…
-
Hello there,
I am wondering about the state of the ADC implementation, and what remains to bring it to a functional state.
In the ADC merge commit message, you mentioned that it is still WiP and tha…
-
In your project, the cross_entropy is used to train the classifier,
`loss_cls = (loss_xent(lgt_glb_mlp, labels) + loss_xent(lgt_glb_lin, labels))`
and the losses are accumulated directly.
`loss_opt…
-
Hello there,
The Alexnet model you defined creates a network with the final layer having 1000 classes by default. And this can be seen in the following piece of code in models/alexnet.py:95:
```…
-
When two lines have the same "title" AND "year" AND "authors" keep only one (the first? the most complete?)
Below the three key in ISI and SCOPUS:
- title --> ISI = TI / Scopus = Title
- year -->…
tommv updated
3 years ago
-
previous version it worked but i dont know how much old is it so i decided to work on latest Git code for this purpose i pulled the code and i got errors mostly resolved but this error i dont know not…
-
Hi,
I saw the datasets used in this model are univariate. Could this model deal with multivariate time series data?
Thanks!
-
Hello,
Note: I've updated this issue to reflect new testing I've done.
I'm using pytorch, a simple MLP model pre-trained on MNIST, and the foolbox boundary attack.
The Boundary attack often s…
-
Hi by looking at the example from keras.io 'Getting started at 30 second'
classes = model.predict_classes(X_test, batch_size=32)
proba = model.predict_proba(X_test, batch_size=32)
Why there is batch…