A notebook which explores mapping based on text similarity with Doc2Vec.

This commit is contained in:
Ruben van de Ven 2023-12-29 17:18:35 +01:00
commit 61b61a0fbb
3 changed files with 2781 additions and 0 deletions

924
Mapping Movements.ipynb Normal file

File diff suppressed because one or more lines are too long

1833
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

24
pyproject.toml Normal file
View File

@ -0,0 +1,24 @@
[tool.poetry]
name = "mapping-movements"
version = "0.1.0"
description = ""
authors = ["Ruben van de Ven <git@rubenvandeven.com>"]
readme = "README.md"
packages = [{include = "mapping_movements"}]
[tool.poetry.dependencies]
python = "^3.10"
gensim = "^4.3.2"
jupyter = "^1.0.0"
#numpy = "^1.26.2"
nltk = "^3.8.1"
matplotlib = "^3.8.2"
networkx = "^3.2.1"
pandas = "^2.1.3"
scikit-learn = "^1.3.2"
umap-learn = "^0.5.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"