├── .github └── workflows │ ├── black.yml │ ├── codeql-analysis.yml │ ├── package-test-coverage.yml │ └── pip-publish.yml ├── .gitignore ├── .idea ├── .gitignore ├── emoatlas.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .readthedocs.yaml ├── Demos&Guides ├── Analyzing_TFMNs.ipynb ├── Starting_guide.ipynb └── simple_demo.ipynb ├── LICENSE ├── MANIFEST.in ├── README.md ├── antonyms └── __pycache__ │ ├── english.cpython-37.pyc │ ├── english.cpython-38.pyc │ ├── english.cpython-39.pyc │ ├── french.cpython-38.pyc │ ├── italian.cpython-38.pyc │ └── italian.cpython-39.pyc ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── API_Reference.md │ ├── _templates │ ├── custom-class-template.rst │ └── custom-module-template.rst │ ├── conf.py │ ├── demos │ └── emolib_demo.ipynb │ └── index.md ├── ea.png ├── emoatlas ├── __init__.py ├── antonyms │ ├── __init__.py │ ├── catalan.py │ ├── chinese.py │ ├── danish.py │ ├── dutch.py │ ├── english.py │ ├── french.py │ ├── german.py │ ├── greek.py │ ├── italian.py │ ├── japanese.py │ ├── lithuanian.py │ ├── macedonian.py │ ├── norwegian.py │ ├── polish.py │ ├── portuguese.py │ ├── romanian.py │ ├── russian.py │ └── spanish.py ├── baseline_tables │ ├── english_baseline.dict │ └── italian_baseline.dict ├── baselines.py ├── distributions.py ├── draw_formamentis_bundling.py ├── draw_formamentis_force.py ├── draw_plutchik.py ├── dyads.py ├── emo_scores.py ├── emolib.py ├── emotions.py ├── formamentis_edgelist.py ├── langs │ ├── catalan.json │ ├── catalan_idiomatic_tokens.json │ ├── chinese.json │ ├── chinese_idiomatic_tokens.json │ ├── danish.json │ ├── danish_idiomatic_tokens.json │ ├── danish_stem.json │ ├── danish_stem_idiomatic_tokens.json │ ├── dutch.json │ ├── dutch_idiomatic_tokens.json │ ├── dutch_stem.json │ ├── dutch_stem_idiomatic_tokens.json │ ├── emoji.json │ ├── emojis.json │ ├── english.json │ ├── english_idiomatic_tokens.json │ ├── english_stem.json │ ├── english_stem_idiomatic_tokens.json │ ├── french.json │ ├── french_idiomatic_tokens.json │ ├── french_stem.json │ ├── french_stem_idiomatic_tokens.json │ ├── german.json │ ├── german_idiomatic_tokens.json │ ├── german_stem.json │ ├── german_stem_idiomatic_tokens.json │ ├── greek.json │ ├── greek_idiomatic_tokens.json │ ├── italian.json │ ├── italian_idiomatic_tokens.json │ ├── italian_stem.json │ ├── italian_stem_idiomatic_tokens.json │ ├── japanese.json │ ├── japanese_idiomatic_tokens.json │ ├── lithuanian.json │ ├── lithuanian_idiomatic_tokens.json │ ├── macedonian.json │ ├── macedonian_idiomatic_tokens.json │ ├── norwegian.json │ ├── norwegian_idiomatic_tokens.json │ ├── norwegian_stem.json │ ├── norwegian_stem_idiomatic_tokens.json │ ├── polish.json │ ├── polish_idiomatic_tokens.json │ ├── portuguese.json │ ├── portuguese_idiomatic_tokens.json │ ├── portuguese_stem.json │ ├── portuguese_stem_idiomatic_tokens.json │ ├── romanian.json │ ├── romanian_idiomatic_tokens.json │ ├── romanian_stem.json │ ├── romanian_stem_idiomatic_tokens.json │ ├── russian.json │ ├── russian_idiomatic_tokens.json │ ├── russian_stem.json │ ├── russian_stem_idiomatic_tokens.json │ ├── spanish.json │ ├── spanish_idiomatic_tokens.json │ ├── spanish_stem.json │ └── spanish_stem_idiomatic_tokens.json ├── language_dependencies.py ├── resources.py ├── test │ ├── __init__.py │ └── test_basetest.py ├── textloader.py └── valence │ ├── __init__.py │ ├── catalan.py │ ├── chinese.py │ ├── danish.py │ ├── dutch.py │ ├── english.py │ ├── french.py │ ├── german.py │ ├── greek.py │ ├── italian.py │ ├── japanese.py │ ├── lithuanian.py │ ├── macedonian.py │ ├── norwegian.py │ ├── polish.py │ ├── portuguese.py │ ├── romanian.py │ ├── russian.py │ └── spanish.py ├── fig1_1500.png ├── pyproject.toml ├── requirements.txt ├── sample_texts ├── bob_dylan.json ├── bob_dylan.txt ├── canadian_const.rst ├── costituzione.txt ├── costituzione_cleaned.txt ├── french_current.txt ├── french_rev.txt └── sample_article.txt └── setup.cfg /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/package-test-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.github/workflows/package-test-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/pip-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.github/workflows/pip-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/emoatlas.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.idea/emoatlas.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Demos&Guides/Analyzing_TFMNs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/Demos&Guides/Analyzing_TFMNs.ipynb -------------------------------------------------------------------------------- /Demos&Guides/Starting_guide.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/Demos&Guides/Starting_guide.ipynb -------------------------------------------------------------------------------- /Demos&Guides/simple_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/Demos&Guides/simple_demo.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/README.md -------------------------------------------------------------------------------- /antonyms/__pycache__/english.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/antonyms/__pycache__/english.cpython-37.pyc -------------------------------------------------------------------------------- /antonyms/__pycache__/english.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/antonyms/__pycache__/english.cpython-38.pyc -------------------------------------------------------------------------------- /antonyms/__pycache__/english.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/antonyms/__pycache__/english.cpython-39.pyc -------------------------------------------------------------------------------- /antonyms/__pycache__/french.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/antonyms/__pycache__/french.cpython-38.pyc -------------------------------------------------------------------------------- /antonyms/__pycache__/italian.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/antonyms/__pycache__/italian.cpython-38.pyc -------------------------------------------------------------------------------- /antonyms/__pycache__/italian.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/antonyms/__pycache__/italian.cpython-39.pyc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | myst-parser==0.18.1 2 | nbsphinx==0.8.9 -------------------------------------------------------------------------------- /docs/source/API_Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/source/API_Reference.md -------------------------------------------------------------------------------- /docs/source/_templates/custom-class-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/source/_templates/custom-class-template.rst -------------------------------------------------------------------------------- /docs/source/_templates/custom-module-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/source/_templates/custom-module-template.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/demos/emolib_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/source/demos/emolib_demo.ipynb -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/ea.png -------------------------------------------------------------------------------- /emoatlas/__init__.py: -------------------------------------------------------------------------------- 1 | from .emolib import * 2 | 3 | __version__ = "0.2.0" 4 | -------------------------------------------------------------------------------- /emoatlas/antonyms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emoatlas/antonyms/catalan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/catalan.py -------------------------------------------------------------------------------- /emoatlas/antonyms/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/chinese.py -------------------------------------------------------------------------------- /emoatlas/antonyms/danish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/danish.py -------------------------------------------------------------------------------- /emoatlas/antonyms/dutch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/dutch.py -------------------------------------------------------------------------------- /emoatlas/antonyms/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/english.py -------------------------------------------------------------------------------- /emoatlas/antonyms/french.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/french.py -------------------------------------------------------------------------------- /emoatlas/antonyms/german.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/german.py -------------------------------------------------------------------------------- /emoatlas/antonyms/greek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/greek.py -------------------------------------------------------------------------------- /emoatlas/antonyms/italian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/italian.py -------------------------------------------------------------------------------- /emoatlas/antonyms/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/japanese.py -------------------------------------------------------------------------------- /emoatlas/antonyms/lithuanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/lithuanian.py -------------------------------------------------------------------------------- /emoatlas/antonyms/macedonian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/macedonian.py -------------------------------------------------------------------------------- /emoatlas/antonyms/norwegian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/norwegian.py -------------------------------------------------------------------------------- /emoatlas/antonyms/polish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/polish.py -------------------------------------------------------------------------------- /emoatlas/antonyms/portuguese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/portuguese.py -------------------------------------------------------------------------------- /emoatlas/antonyms/romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/romanian.py -------------------------------------------------------------------------------- /emoatlas/antonyms/russian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/russian.py -------------------------------------------------------------------------------- /emoatlas/antonyms/spanish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/antonyms/spanish.py -------------------------------------------------------------------------------- /emoatlas/baseline_tables/english_baseline.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/baseline_tables/english_baseline.dict -------------------------------------------------------------------------------- /emoatlas/baseline_tables/italian_baseline.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/baseline_tables/italian_baseline.dict -------------------------------------------------------------------------------- /emoatlas/baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/baselines.py -------------------------------------------------------------------------------- /emoatlas/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/distributions.py -------------------------------------------------------------------------------- /emoatlas/draw_formamentis_bundling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/draw_formamentis_bundling.py -------------------------------------------------------------------------------- /emoatlas/draw_formamentis_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/draw_formamentis_force.py -------------------------------------------------------------------------------- /emoatlas/draw_plutchik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/draw_plutchik.py -------------------------------------------------------------------------------- /emoatlas/dyads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/dyads.py -------------------------------------------------------------------------------- /emoatlas/emo_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/emo_scores.py -------------------------------------------------------------------------------- /emoatlas/emolib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/emolib.py -------------------------------------------------------------------------------- /emoatlas/emotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/emotions.py -------------------------------------------------------------------------------- /emoatlas/formamentis_edgelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/formamentis_edgelist.py -------------------------------------------------------------------------------- /emoatlas/langs/catalan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/catalan.json -------------------------------------------------------------------------------- /emoatlas/langs/catalan_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/catalan_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/chinese.json -------------------------------------------------------------------------------- /emoatlas/langs/chinese_idiomatic_tokens.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /emoatlas/langs/danish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/danish.json -------------------------------------------------------------------------------- /emoatlas/langs/danish_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/danish_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/danish_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/danish_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/danish_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/danish_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/dutch.json -------------------------------------------------------------------------------- /emoatlas/langs/dutch_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/dutch_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/dutch_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/dutch_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/dutch_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/dutch_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/emoji.json -------------------------------------------------------------------------------- /emoatlas/langs/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/emojis.json -------------------------------------------------------------------------------- /emoatlas/langs/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/english.json -------------------------------------------------------------------------------- /emoatlas/langs/english_idiomatic_tokens.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /emoatlas/langs/english_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/english_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/english_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /emoatlas/langs/french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/french.json -------------------------------------------------------------------------------- /emoatlas/langs/french_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/french_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/french_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/french_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/french_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/french_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/german.json -------------------------------------------------------------------------------- /emoatlas/langs/german_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/german_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/german_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/german_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/german_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/german_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/greek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/greek.json -------------------------------------------------------------------------------- /emoatlas/langs/greek_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/greek_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/italian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/italian.json -------------------------------------------------------------------------------- /emoatlas/langs/italian_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/italian_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/italian_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/italian_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/italian_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/italian_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/japanese.json -------------------------------------------------------------------------------- /emoatlas/langs/japanese_idiomatic_tokens.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /emoatlas/langs/lithuanian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/lithuanian.json -------------------------------------------------------------------------------- /emoatlas/langs/lithuanian_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/lithuanian_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/macedonian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/macedonian.json -------------------------------------------------------------------------------- /emoatlas/langs/macedonian_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/macedonian_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/norwegian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/norwegian.json -------------------------------------------------------------------------------- /emoatlas/langs/norwegian_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/norwegian_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/norwegian_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/norwegian_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/norwegian_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/norwegian_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/polish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/polish.json -------------------------------------------------------------------------------- /emoatlas/langs/polish_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/polish_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/portuguese.json -------------------------------------------------------------------------------- /emoatlas/langs/portuguese_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/portuguese_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/portuguese_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/portuguese_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/portuguese_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/portuguese_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/romanian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/romanian.json -------------------------------------------------------------------------------- /emoatlas/langs/romanian_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/romanian_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/romanian_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/romanian_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/romanian_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/romanian_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/russian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/russian.json -------------------------------------------------------------------------------- /emoatlas/langs/russian_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/russian_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/russian_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/russian_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/russian_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/russian_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/spanish.json -------------------------------------------------------------------------------- /emoatlas/langs/spanish_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/spanish_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/langs/spanish_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/spanish_stem.json -------------------------------------------------------------------------------- /emoatlas/langs/spanish_stem_idiomatic_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/langs/spanish_stem_idiomatic_tokens.json -------------------------------------------------------------------------------- /emoatlas/language_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/language_dependencies.py -------------------------------------------------------------------------------- /emoatlas/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/resources.py -------------------------------------------------------------------------------- /emoatlas/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emoatlas/test/test_basetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/test/test_basetest.py -------------------------------------------------------------------------------- /emoatlas/textloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/textloader.py -------------------------------------------------------------------------------- /emoatlas/valence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emoatlas/valence/catalan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/catalan.py -------------------------------------------------------------------------------- /emoatlas/valence/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/chinese.py -------------------------------------------------------------------------------- /emoatlas/valence/danish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/danish.py -------------------------------------------------------------------------------- /emoatlas/valence/dutch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/dutch.py -------------------------------------------------------------------------------- /emoatlas/valence/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/english.py -------------------------------------------------------------------------------- /emoatlas/valence/french.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/french.py -------------------------------------------------------------------------------- /emoatlas/valence/german.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/german.py -------------------------------------------------------------------------------- /emoatlas/valence/greek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/greek.py -------------------------------------------------------------------------------- /emoatlas/valence/italian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/italian.py -------------------------------------------------------------------------------- /emoatlas/valence/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/japanese.py -------------------------------------------------------------------------------- /emoatlas/valence/lithuanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/lithuanian.py -------------------------------------------------------------------------------- /emoatlas/valence/macedonian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/macedonian.py -------------------------------------------------------------------------------- /emoatlas/valence/norwegian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/norwegian.py -------------------------------------------------------------------------------- /emoatlas/valence/polish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/polish.py -------------------------------------------------------------------------------- /emoatlas/valence/portuguese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/portuguese.py -------------------------------------------------------------------------------- /emoatlas/valence/romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/romanian.py -------------------------------------------------------------------------------- /emoatlas/valence/russian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/russian.py -------------------------------------------------------------------------------- /emoatlas/valence/spanish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/emoatlas/valence/spanish.py -------------------------------------------------------------------------------- /fig1_1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/fig1_1500.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_texts/bob_dylan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/bob_dylan.json -------------------------------------------------------------------------------- /sample_texts/bob_dylan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/bob_dylan.txt -------------------------------------------------------------------------------- /sample_texts/canadian_const.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/canadian_const.rst -------------------------------------------------------------------------------- /sample_texts/costituzione.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/costituzione.txt -------------------------------------------------------------------------------- /sample_texts/costituzione_cleaned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/costituzione_cleaned.txt -------------------------------------------------------------------------------- /sample_texts/french_current.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/french_current.txt -------------------------------------------------------------------------------- /sample_texts/french_rev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/french_rev.txt -------------------------------------------------------------------------------- /sample_texts/sample_article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/sample_texts/sample_article.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsosemeraro/emoatlas/HEAD/setup.cfg --------------------------------------------------------------------------------