Remi
Remi
@haoopan I am still working on releasing the code to extract image features to use pretrained models on new images / questions. However I just uploaded the features on AWS....
@haoopan sorry we don't provide support for KLD loss. We didn't manage to make it work. If I remember correctly, even with this low loss it can learn, but not...
May have been fixed in PR: https://github.com/Cadene/bootstrap.pytorch/pull/34
@Ricocotam After discussing with @MicaelCarvalho, we think that it is a great idea. For instance, it would be useful to test that our model is able to overfit a small...
What is your version of pytorch and pretrainedmodels? ``` torch.__version__ pretrainedmodels.__version__ ``` Did you try with the last version of pretrainedmodels? (0.7.3) ``` pip install --upgrade pretrainedmodels ```
@yyfyan Do you have an url to pretrained model somewhere?
It is due to pytorch2.7. Unfortunately pretrainedmodels is not totally compatible for now.
Do you have an url to these pretrained models? Thanks :)
Hi @Dipeshtamboli Sorry for the late answer. It works for me with python 3: ``` $ python Python 3.7.2 (default, Dec 29 2018, 06:19:36) [GCC 7.3.0] :: Anaconda, Inc. on...
Hi @heitorrapela and @Joeywzr, It works for me with these versions: ``` >>> import torch >>> import pretrainedmodels >>> torch.__version__ '1.0.1.post2' >>> pretrainedmodels.__version__ '0.7.4' ``` ``` CUDA_VISIBLE_DEVICES=1 python examples/imagenet_eval.py --data...