Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 655 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 655 Bytes

Similarity Data Play

Create Conda Env

  1. List all evns:
conda info --envs
  1. Create new env for the project:
conda create -n similarity-data
  1. Activate the evn
conda activate similarity-data
  1. Install FAISS
conda install -c pytorch faiss-cpu=1.9.0
  1. Install Jupiter
conda install jupyter
  1. Run Jupiter Notebook

{from the local directory used as base for the Notebook} for instance /home/fax/code/similarity-data-play/vector-faiss

jupyter notebook --NotebookApp.allow_origin='https://colab.research.google.com' --port=8888 --NotebookApp.port_retries=0