├── CITATION.bib ├── LICENSE ├── README.md ├── SemanticML ├── __init__.py ├── main.py └── utils.py ├── config └── config.json ├── requirements.txt └── setup.py /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/CITATION.bib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/README.md -------------------------------------------------------------------------------- /SemanticML/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SemanticML/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/SemanticML/main.py -------------------------------------------------------------------------------- /SemanticML/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/SemanticML/utils.py -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/config/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yarroudh/SemanticML/HEAD/setup.py --------------------------------------------------------------------------------