You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello , firstly, thanks for your shared code!
The following are Error when I debug the file of "example_feat_extract.py" :
File "/home/jsj/TF_FeatureExtraction/example_feat_extract.py", line 25, in
import feature_extractor.utils as utils
File "/home/jsj/TF_FeatureExtraction/feature_extractor/utils.py", line 23, in
from datasets import imagenet
ImportError: No module named datasets
Do I need to creat a file of dataset and then download the imagenet data? Any suggestion will be appreciated!@tomrunia
The text was updated successfully, but these errors were encountered:
Hi, no you just need to make sure it can find the datasets package included in the tensorflow/datasets repository. It seems like they recently changed the file structure of that repository, but you can find those files here: https://github.com/tensorflow/models/tree/master/research/slim. Just add that path to your PYTHONPATH and you should be fine :)
Hello , firstly, thanks for your shared code!
The following are Error when I debug the file of "example_feat_extract.py" :
File "/home/jsj/TF_FeatureExtraction/example_feat_extract.py", line 25, in
import feature_extractor.utils as utils
File "/home/jsj/TF_FeatureExtraction/feature_extractor/utils.py", line 23, in
from datasets import imagenet
ImportError: No module named datasets
Do I need to creat a file of dataset and then download the imagenet data? Any suggestion will be appreciated!@tomrunia
The text was updated successfully, but these errors were encountered: