gitextract_05q4s6rh/ ├── .github/ │ └── workflows/ │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── README.md ├── concise_concepts/ │ ├── __init__.py │ ├── conceptualizer/ │ │ ├── Conceptualizer.py │ │ └── __init__.py │ └── examples/ │ ├── __init__.py │ ├── data.py │ ├── example_gensim_custom_model.py │ ├── example_gensim_custom_path.py │ ├── example_gensim_default.py │ └── example_spacy.py ├── pyproject.toml ├── setup.cfg └── tests/ ├── __init__.py └── test_model_import.py