├── .gitignore ├── .idea ├── .gitignore ├── HandsOn-RecSys2020.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── config └── configs.ini ├── data ├── movielens-500 │ ├── testset.tsv │ └── trainingset.tsv └── movielens │ ├── testset.tsv │ └── trainingset.tsv ├── main.ipynb ├── requirements.txt ├── src ├── dataset │ ├── __pycache__ │ │ └── dataset.cpython-37.pyc │ └── dataset.py ├── recommender │ ├── Evaluator.py │ ├── RecommenderModel.py │ ├── __init__.py │ └── __pycache__ │ │ ├── Evaluator.cpython-37.pyc │ │ ├── RecommenderModel.cpython-37.pyc │ │ └── __init__.cpython-37.pyc └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── read.cpython-37.pyc │ └── write.cpython-37.pyc │ ├── read.py │ ├── sendmail.py │ └── write.py └── venv ├── etc └── jupyter │ └── nbconfig │ └── notebook.d │ └── widgetsnbextension.json └── share ├── jupyter ├── kernels │ └── python3 │ │ ├── kernel.json │ │ ├── logo-32x32.png │ │ └── logo-64x64.png ├── nbconvert │ └── templates │ │ ├── asciidoc │ │ ├── conf.json │ │ └── index.asciidoc.j2 │ │ ├── base │ │ ├── celltags.j2 │ │ ├── display_priority.j2 │ │ ├── jupyter_widgets.html.j2 │ │ ├── mathjax.html.j2 │ │ └── null.j2 │ │ ├── classic │ │ ├── base.html.j2 │ │ ├── conf.json │ │ ├── index.html.j2 │ │ └── static │ │ │ └── style.css │ │ ├── compatibility │ │ ├── basic.tpl │ │ ├── display_priority.tpl │ │ ├── full.tpl │ │ ├── python.tpl │ │ └── rst.tpl │ │ ├── lab │ │ ├── base.html.j2 │ │ ├── conf.json │ │ ├── index.html.j2 │ │ └── static │ │ │ ├── index.css │ │ │ ├── theme-dark.css │ │ │ └── theme-light.css │ │ ├── latex │ │ ├── base.tex.j2 │ │ ├── conf.json │ │ ├── display_priority.j2 │ │ ├── document_contents.tex.j2 │ │ ├── index.tex.j2 │ │ ├── null.j2 │ │ ├── report.tex.j2 │ │ ├── style_bw_ipython.tex.j2 │ │ ├── style_bw_python.tex.j2 │ │ ├── style_ipython.tex.j2 │ │ ├── style_jupyter.tex.j2 │ │ └── style_python.tex.j2 │ │ ├── markdown │ │ ├── conf.json │ │ └── index.md.j2 │ │ ├── python │ │ ├── conf.json │ │ └── index.py.j2 │ │ ├── reveal │ │ ├── base.html.j2 │ │ ├── conf.json │ │ ├── index.html.j2 │ │ └── static │ │ │ └── custom_reveal.css │ │ ├── rst │ │ ├── conf.json │ │ └── index.rst.j2 │ │ └── script │ │ ├── conf.json │ │ └── script.j2 └── nbextensions │ └── jupyter-js-widgets │ ├── extension.js │ └── extension.js.map └── man └── man1 └── ipython.1.gz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/HandsOn-RecSys2020.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/HandsOn-RecSys2020.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/README.md -------------------------------------------------------------------------------- /config/configs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/config/configs.ini -------------------------------------------------------------------------------- /data/movielens-500/testset.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/data/movielens-500/testset.tsv -------------------------------------------------------------------------------- /data/movielens-500/trainingset.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/data/movielens-500/trainingset.tsv -------------------------------------------------------------------------------- /data/movielens/testset.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/data/movielens/testset.tsv -------------------------------------------------------------------------------- /data/movielens/trainingset.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/data/movielens/trainingset.tsv -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/main.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/dataset/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/dataset/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /src/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/dataset/dataset.py -------------------------------------------------------------------------------- /src/recommender/Evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/recommender/Evaluator.py -------------------------------------------------------------------------------- /src/recommender/RecommenderModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/recommender/RecommenderModel.py -------------------------------------------------------------------------------- /src/recommender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/recommender/__pycache__/Evaluator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/recommender/__pycache__/Evaluator.cpython-37.pyc -------------------------------------------------------------------------------- /src/recommender/__pycache__/RecommenderModel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/recommender/__pycache__/RecommenderModel.cpython-37.pyc -------------------------------------------------------------------------------- /src/recommender/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/recommender/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/__init__.py -------------------------------------------------------------------------------- /src/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/util/__pycache__/read.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/__pycache__/read.cpython-37.pyc -------------------------------------------------------------------------------- /src/util/__pycache__/write.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/__pycache__/write.cpython-37.pyc -------------------------------------------------------------------------------- /src/util/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/read.py -------------------------------------------------------------------------------- /src/util/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/sendmail.py -------------------------------------------------------------------------------- /src/util/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/src/util/write.py -------------------------------------------------------------------------------- /venv/etc/jupyter/nbconfig/notebook.d/widgetsnbextension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/etc/jupyter/nbconfig/notebook.d/widgetsnbextension.json -------------------------------------------------------------------------------- /venv/share/jupyter/kernels/python3/kernel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/kernels/python3/kernel.json -------------------------------------------------------------------------------- /venv/share/jupyter/kernels/python3/logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/kernels/python3/logo-32x32.png -------------------------------------------------------------------------------- /venv/share/jupyter/kernels/python3/logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/kernels/python3/logo-64x64.png -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/asciidoc/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/asciidoc/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/base/celltags.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/base/celltags.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/base/display_priority.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/base/display_priority.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/base/mathjax.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/base/mathjax.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/base/null.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/base/null.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/classic/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/classic/base.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/classic/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/classic/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/classic/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/classic/index.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/classic/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/classic/static/style.css -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/compatibility/basic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/compatibility/basic.tpl -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/compatibility/display_priority.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/compatibility/display_priority.tpl -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/compatibility/full.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/compatibility/full.tpl -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/compatibility/python.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/compatibility/python.tpl -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/compatibility/rst.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/compatibility/rst.tpl -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/lab/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/lab/base.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/lab/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/lab/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/lab/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/lab/index.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/lab/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/lab/static/index.css -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/lab/static/theme-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/lab/static/theme-dark.css -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/lab/static/theme-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/lab/static/theme-light.css -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/base.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/base.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/display_priority.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/display_priority.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/index.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/index.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/null.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/null.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/report.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/report.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/latex/style_python.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/latex/style_python.tex.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/markdown/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/markdown/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/markdown/index.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/markdown/index.md.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/python/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/python/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/python/index.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/python/index.py.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/reveal/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/reveal/base.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/reveal/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/reveal/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/reveal/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/reveal/index.html.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/rst/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/rst/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/rst/index.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/rst/index.rst.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/script/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/script/conf.json -------------------------------------------------------------------------------- /venv/share/jupyter/nbconvert/templates/script/script.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbconvert/templates/script/script.j2 -------------------------------------------------------------------------------- /venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js -------------------------------------------------------------------------------- /venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js.map -------------------------------------------------------------------------------- /venv/share/man/man1/ipython.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sisinflab/HandsOn-ECIR2021/HEAD/venv/share/man/man1/ipython.1.gz --------------------------------------------------------------------------------