-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FileNotFoundError: [Errno 2] No such file or directory: '/home/scratch/XC/models/MM-AmazonTitles-300K/MufinMultiModal/v_MUFIN/filter_model.pkl #3
Comments
Can you post the entire error stack? |
Hi...I'm also facing the same problem: Your CPU supports instructions that this binary was not compiled to use: SSE3 SSE4.1 SSE4.2 AVX AVX2 |
I've followed the steps mentioned in the readme file, but in the last step
./run_MUFIN.sh 0,1 PreTrainedMufinMultiModal MM-AmazonTitles-300K MUFIN_pretrained ViT sentencebert -1 0
we get this error
FileNotFoundError: [Errno 2] No such file or directory: '/home/scratch/XC/models/MM-AmazonTitles-300K/MufinMultiModal/v_MUFIN/filter_model.pkl. We don't have any pkl file in our models folder.
This is the output for
tree $HOME/scratch/XC
/home/scratch/XC
├── data
│ ├── MM-AmazonTitles-300K
│ │ ├── download_images.ipynb
│ │ ├── filter_labels_test.txt
│ │ ├── filter_labels_train.txt
│ │ ├── img.urls.txt
│ │ ├── raw_data
│ │ │ ├── label.raw.txt
│ │ │ ├── test.raw.txt
│ │ │ └── train.raw.txt
│ │ ├── sentencebert
│ │ │ ├── test.txt.seq.memmap.dat
│ │ │ └── test.txt.seq.memmap.meta
│ │ ├── trn_X_Y.txt
│ │ └── tst_X_Y.txt
│ └── MM-AmazonTitles-300K.zip
├── models
│ └── MM-AmazonTitles-300K
│ ├── MufinMultiModal
│ │ └── v_MUFIN
│ └── PreTrainedMufinMultiModal
│ └── v_MUFIN_pretrained
├── programs
│ ├── CafeXC
│ │ ├── CafeXC.yml
│ │ ├── get_examples.ipynb
│ │ ├── README.md
│ │ ├── tokenize.ipynb
│ │ └── xc
│ │ ├── libs
│ │ │ ├── anns.py
│ │ │ ├── build_data.py
│ │ │ ├── cluster.py
│ │ │ ├── collate_fn.py
│ │ │ ├── convert2onnx.py
│ │ │ ├── custom_dtypes.py
│ │ │ ├── data_base.py
│ │ │ ├── data_img.py
│ │ │ ├── data_lbl.py
│ │ │ ├── dataloader.py
│ │ │ ├── dataparallel.py
│ │ │ ├── dataset.py
│ │ │ ├── data_shorty.py
│ │ │ ├── data_txt.py
│ │ │ ├── diskann.py
│ │ │ ├── dtypes.py
│ │ │ ├── fast_cluster.py
│ │ │ ├── graph.py
│ │ │ ├── loss.py
│ │ │ ├── model_base.py
│ │ │ ├── model.py
│ │ │ ├── model_utils.py
│ │ │ ├── optimizer_utils.py
│ │ │ ├── parameters.py
│ │ │ └── utils.py
│ │ ├── method
│ │ │ └── mufin
│ │ │ ├── dataset.py
│ │ │ ├── model.py
│ │ │ ├── models_encoders.py
│ │ │ └── network.py
│ │ ├── models
│ │ │ ├── custom_transformer.py
│ │ │ ├── models_base.py
│ │ │ ├── models_clf.py
│ │ │ ├── models_emb.py
│ │ │ ├── models_fusion.py
│ │ │ ├── models_img.py
│ │ │ ├── models_txt.py
│ │ │ └── network.py
│ │ └── tools
│ │ ├── analysis.py
│ │ ├── evaluate.py
│ │ ├── extract_eval.py
│ │ ├── get_pre_train.py
│ │ ├── label_features_split.py
│ │ └── tokenize_text.py
│ ├── Miniconda3-latest-Linux-x86_64.sh
│ ├── Miniconda3-latest-Linux-x86_64.sh.1
│ └── MUFIN
│ ├── configs
│ │ ├── LF-AmazonTitles-131K.json
│ │ └── MM-AmazonTitles-300K.json
│ ├── img_db_hash.ipynb
│ ├── LICENSE
│ ├── MUFIN.ipynb
│ ├── MUFIN.pdf
│ ├── mufin.py
│ ├── parameters.py
│ ├── pycache
│ │ └── parameters.cpython-39.pyc
│ ├── README.md
│ ├── run_MUFIN.sh
│ ├── run_pretrained.sh
│ └── xc
│ ├── libs
│ │ ├── anns.py
│ │ ├── build_data.py
│ │ ├── cluster.py
│ │ ├── collate_fn.py
│ │ ├── convert2onnx.py
│ │ ├── custom_dtypes.py
│ │ ├── data_base.py
│ │ ├── data_img.py
│ │ ├── data_lbl.py
│ │ ├── dataloader.py
│ │ ├── dataparallel.py
│ │ ├── dataset.py
│ │ ├── data_shorty.py
│ │ ├── data_txt.py
│ │ ├── diskann.py
│ │ ├── dtypes.py
│ │ ├── fast_cluster.py
│ │ ├── graph.py
│ │ ├── loss.py
│ │ ├── model_base.py
│ │ ├── model.py
│ │ ├── model_utils.py
│ │ ├── optimizer_utils.py
│ │ ├── parameters.py
│ │ ├── pycache
│ │ │ ├── anns.cpython-39.pyc
│ │ │ ├── cluster.cpython-39.pyc
│ │ │ ├── custom_dtypes.cpython-39.pyc
│ │ │ ├── data_base.cpython-39.pyc
│ │ │ ├── data_img.cpython-39.pyc
│ │ │ ├── data_lbl.cpython-39.pyc
│ │ │ ├── dataloader.cpython-39.pyc
│ │ │ ├── dataparallel.cpython-39.pyc
│ │ │ ├── dataset.cpython-39.pyc
│ │ │ ├── data_shorty.cpython-39.pyc
│ │ │ ├── data_txt.cpython-39.pyc
│ │ │ ├── diskann.cpython-39.pyc
│ │ │ ├── fast_cluster.cpython-39.pyc
│ │ │ ├── loss.cpython-39.pyc
│ │ │ ├── model_base.cpython-39.pyc
│ │ │ ├── model_utils.cpython-39.pyc
│ │ │ ├── optimizer_utils.cpython-39.pyc
│ │ │ ├── parameters.cpython-39.pyc
│ │ │ ├── utils.bin_index-82.py39.1.nbc
│ │ │ ├── utils.bin_index-82.py39.2.nbc
│ │ │ ├── utils.bin_index-82.py39.nbi
│ │ │ └── utils.cpython-39.pyc
│ │ └── utils.py
│ ├── method
│ │ └── mufin
│ │ ├── dataset.py
│ │ ├── model.py
│ │ ├── models_encoders.py
│ │ ├── network.py
│ │ └── pycache
│ │ ├── dataset.cpython-39.pyc
│ │ ├── model.cpython-39.pyc
│ │ ├── models_encoders.cpython-39.pyc
│ │ └── network.cpython-39.pyc
│ ├── models
│ │ ├── custom_transformer.py
│ │ ├── models_base.py
│ │ ├── models_clf.py
│ │ ├── models_emb.py
│ │ ├── models_fusion.py
│ │ ├── models_img.py
│ │ ├── models_txt.py
│ │ ├── network.py
│ │ └── pycache
│ │ ├── custom_transformer.cpython-39.pyc
│ │ ├── models_base.cpython-39.pyc
│ │ ├── models_clf.cpython-39.pyc
│ │ ├── models_emb.cpython-39.pyc
│ │ ├── models_fusion.cpython-39.pyc
│ │ ├── models_img.cpython-39.pyc
│ │ └── models_txt.cpython-39.pyc
│ └── tools
│ ├── analysis.py
│ ├── evaluate.py
│ ├── extract_eval.py
│ ├── get_pre_train.py
│ ├── label_features_split.py
│ ├── pycache
│ │ └── tokenize_text.cpython-39.pyc
│ └── tokenize_text.py
└── results
└── MM-AmazonTitles-300K
├── MufinMultiModal
│ └── v_MUFIN
│ ├── log_predict.txt
│ ├── module1
│ ├── module2
│ ├── module3
│ └── module4
└── PreTrainedMufinMultiModal
└── v_MUFIN_pretrained
├── log_eval.txt
├── log_extract.txt
├── log_predict.txt
├── module1
├── module2
├── module3
└── module4
The text was updated successfully, but these errors were encountered: