├── .gitignore ├── Lasf FM exploracion inicial + preprocesamiento.ipynb ├── PyData_Córdoba_2018_Fantastic_Recommendations_and_Where_To_Find_Them.ipynb ├── README.md ├── baseline └── simrank.py ├── data └── README.md ├── data_normalization ├── Word2Vec.ipynb ├── idomaar reader example.ipynb └── idomaar.py ├── requirements.txt ├── setup.sh └── src └── utils ├── files.py ├── jupyter.py └── pandas.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/.gitignore -------------------------------------------------------------------------------- /Lasf FM exploracion inicial + preprocesamiento.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/Lasf FM exploracion inicial + preprocesamiento.ipynb -------------------------------------------------------------------------------- /PyData_Córdoba_2018_Fantastic_Recommendations_and_Where_To_Find_Them.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/PyData_Córdoba_2018_Fantastic_Recommendations_and_Where_To_Find_Them.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/README.md -------------------------------------------------------------------------------- /baseline/simrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/baseline/simrank.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/data/README.md -------------------------------------------------------------------------------- /data_normalization/Word2Vec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/data_normalization/Word2Vec.ipynb -------------------------------------------------------------------------------- /data_normalization/idomaar reader example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/data_normalization/idomaar reader example.ipynb -------------------------------------------------------------------------------- /data_normalization/idomaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/data_normalization/idomaar.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gensim 2 | progressbar2 3 | cython 4 | pandas 5 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/setup.sh -------------------------------------------------------------------------------- /src/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/src/utils/files.py -------------------------------------------------------------------------------- /src/utils/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/src/utils/jupyter.py -------------------------------------------------------------------------------- /src/utils/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labdac/Meta-Prod2Vec/HEAD/src/utils/pandas.py --------------------------------------------------------------------------------