LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements.txt
setup.cfg
setup.py
clayrs/__init__.py
clayrs.egg-info/PKG-INFO
clayrs.egg-info/SOURCES.txt
clayrs.egg-info/dependency_links.txt
clayrs.egg-info/requires.txt
clayrs.egg-info/top_level.txt
clayrs/content_analyzer/__init__.py
clayrs/content_analyzer/config.py
clayrs/content_analyzer/content_analyzer_main.py
clayrs/content_analyzer/exceptions.py
clayrs/content_analyzer/exogenous_properties_retrieval.py
clayrs/content_analyzer/raw_information_source.py
clayrs/content_analyzer/content_representation/__init__.py
clayrs/content_analyzer/content_representation/content.py
clayrs/content_analyzer/content_representation/representation_container.py
clayrs/content_analyzer/embeddings/__init__.py
clayrs/content_analyzer/embeddings/embedding_source.py
clayrs/content_analyzer/embeddings/embedding_learner/__init__.py
clayrs/content_analyzer/embeddings/embedding_learner/doc2vec.py
clayrs/content_analyzer/embeddings/embedding_learner/embedding_learner.py
clayrs/content_analyzer/embeddings/embedding_learner/fasttext.py
clayrs/content_analyzer/embeddings/embedding_learner/latent_semantic_analysis.py
clayrs/content_analyzer/embeddings/embedding_learner/lda.py
clayrs/content_analyzer/embeddings/embedding_learner/random_indexing.py
clayrs/content_analyzer/embeddings/embedding_learner/word2vec.py
clayrs/content_analyzer/embeddings/embedding_loader/__init__.py
clayrs/content_analyzer/embeddings/embedding_loader/embedding_loader.py
clayrs/content_analyzer/embeddings/embedding_loader/gensim.py
clayrs/content_analyzer/embeddings/embedding_loader/sbert.py
clayrs/content_analyzer/embeddings/embedding_loader/transformer.py
clayrs/content_analyzer/embeddings/embedding_loader/vector_strategy.py
clayrs/content_analyzer/field_content_production_techniques/__init__.py
clayrs/content_analyzer/field_content_production_techniques/field_content_production_technique.py
clayrs/content_analyzer/field_content_production_techniques/synset_document_frequency.py
clayrs/content_analyzer/field_content_production_techniques/tf_idf.py
clayrs/content_analyzer/field_content_production_techniques/embedding_technique/__init__.py
clayrs/content_analyzer/field_content_production_techniques/embedding_technique/combining_technique.py
clayrs/content_analyzer/field_content_production_techniques/embedding_technique/embedding_technique.py
clayrs/content_analyzer/information_processor/__init__.py
clayrs/content_analyzer/information_processor/ekphrasis.py
clayrs/content_analyzer/information_processor/information_processor.py
clayrs/content_analyzer/information_processor/nltk.py
clayrs/content_analyzer/information_processor/spacy.py
clayrs/content_analyzer/memory_interfaces/__init__.py
clayrs/content_analyzer/memory_interfaces/memory_interfaces.py
clayrs/content_analyzer/memory_interfaces/text_interface.py
clayrs/content_analyzer/ratings_manager/__init__.py
clayrs/content_analyzer/ratings_manager/ratings.py
clayrs/content_analyzer/ratings_manager/score_processor.py
clayrs/content_analyzer/ratings_manager/sentiment_analysis.py
clayrs/evaluation/__init__.py
clayrs/evaluation/eval_model.py
clayrs/evaluation/exceptions.py
clayrs/evaluation/statistical_test.py
clayrs/evaluation/utils.py
clayrs/evaluation/eval_pipeline_modules/__init__.py
clayrs/evaluation/eval_pipeline_modules/metric_evaluator.py
clayrs/evaluation/metrics/__init__.py
clayrs/evaluation/metrics/classification_metrics.py
clayrs/evaluation/metrics/error_metrics.py
clayrs/evaluation/metrics/fairness_metrics.py
clayrs/evaluation/metrics/metrics.py
clayrs/evaluation/metrics/plot_metrics.py
clayrs/evaluation/metrics/ranking_metrics.py
clayrs/recsys/__init__.py
clayrs/recsys/algorithm.py
clayrs/recsys/methodology.py
clayrs/recsys/partitioning.py
clayrs/recsys/recsys.py
clayrs/recsys/content_based_algorithm/__init__.py
clayrs/recsys/content_based_algorithm/content_based_algorithm.py
clayrs/recsys/content_based_algorithm/contents_loader.py
clayrs/recsys/content_based_algorithm/exceptions.py
clayrs/recsys/content_based_algorithm/centroid_vector/__init__.py
clayrs/recsys/content_based_algorithm/centroid_vector/centroid_vector.py
clayrs/recsys/content_based_algorithm/centroid_vector/similarities.py
clayrs/recsys/content_based_algorithm/classifier/__init__.py
clayrs/recsys/content_based_algorithm/classifier/classifier_recommender.py
clayrs/recsys/content_based_algorithm/classifier/classifiers.py
clayrs/recsys/content_based_algorithm/index_query/__init__.py
clayrs/recsys/content_based_algorithm/index_query/index_query.py
clayrs/recsys/content_based_algorithm/regressor/__init__.py
clayrs/recsys/content_based_algorithm/regressor/linear_predictor.py
clayrs/recsys/content_based_algorithm/regressor/regressors.py
clayrs/recsys/graph_based_algorithm/__init__.py
clayrs/recsys/graph_based_algorithm/graph_based_algorithm.py
clayrs/recsys/graph_based_algorithm/page_rank/__init__.py
clayrs/recsys/graph_based_algorithm/page_rank/nx_page_rank.py
clayrs/recsys/graph_based_algorithm/page_rank/page_rank.py
clayrs/recsys/graphs/__init__.py
clayrs/recsys/graphs/graph.py
clayrs/recsys/graphs/graph_metrics.py
clayrs/recsys/graphs/feature_selection/__init__.py
clayrs/recsys/graphs/feature_selection/exceptions.py
clayrs/recsys/graphs/feature_selection/feature_selection_alg.py
clayrs/recsys/graphs/feature_selection/feature_selection_fn.py
clayrs/recsys/graphs/nx_implementation/__init__.py
clayrs/recsys/graphs/nx_implementation/nx_bipartite_graphs.py
clayrs/recsys/graphs/nx_implementation/nx_full_graphs.py
clayrs/recsys/graphs/nx_implementation/nx_tripartite_graphs.py
clayrs/utils/__init__.py
clayrs/utils/automatic_methods.py
clayrs/utils/check_tokenization.py
clayrs/utils/class_utils.py
clayrs/utils/const.py
clayrs/utils/context_managers.py
clayrs/utils/custom_logger.py
clayrs/utils/id_merger.py
clayrs/utils/load_content.py
clayrs/utils/report.py
clayrs/utils/save_content.py
test/__init__.py
test/content_analyzer/__init__.py
test/content_analyzer/test_config.py
test/content_analyzer/test_content_analyzer_main.py
test/content_analyzer/test_lod_properties_retrieval.py
test/content_analyzer/test_raw_information_source.py
test/content_analyzer/content_representation/__init__.py
test/content_analyzer/content_representation/test_content.py
test/content_analyzer/content_representation/test_representation_container.py
test/content_analyzer/embeddings/__init__.py
test/content_analyzer/embeddings/test_embedding_source.py
test/content_analyzer/embeddings/embedding_learner/__init__.py
test/content_analyzer/embeddings/embedding_learner/test_doc2vec.py
test/content_analyzer/embeddings/embedding_learner/test_embedding_learner.py
test/content_analyzer/embeddings/embedding_learner/test_fasttext.py
test/content_analyzer/embeddings/embedding_learner/test_latent_semantic_analysis.py
test/content_analyzer/embeddings/embedding_learner/test_lda.py
test/content_analyzer/embeddings/embedding_learner/test_random_indexing.py
test/content_analyzer/embeddings/embedding_learner/test_word2vec.py
test/content_analyzer/embeddings/embedding_loader/__init__.py
test/content_analyzer/embeddings/embedding_loader/test_gensim_loader.py
test/content_analyzer/embeddings/embedding_loader/test_sbert.py
test/content_analyzer/embeddings/embedding_loader/test_transformer.py
test/content_analyzer/field_content_production_techniques/__init__.py
test/content_analyzer/field_content_production_techniques/test_field_content_production_technique.py
test/content_analyzer/field_content_production_techniques/test_synset_document_frequency.py
test/content_analyzer/field_content_production_techniques/test_tf_idf.py
test/content_analyzer/field_content_production_techniques/embedding_technique/__init__.py
test/content_analyzer/field_content_production_techniques/embedding_technique/test_combining_technique.py
test/content_analyzer/field_content_production_techniques/embedding_technique/test_embedding_technique.py
test/content_analyzer/information_processor/__init__.py
test/content_analyzer/information_processor/test_ekphrasis.py
test/content_analyzer/information_processor/test_nlp.py
test/content_analyzer/information_processor/test_spacy.py
test/content_analyzer/memory_interfaces/__init__.py
test/content_analyzer/memory_interfaces/test_text_interface.py
test/content_analyzer/ratings_manager/__init__.py
test/content_analyzer/ratings_manager/test_rating_processor.py
test/content_analyzer/ratings_manager/test_ratings.py
test/content_analyzer/ratings_manager/test_sentiment_analysis.py
test/evaluation/__init__.py
test/evaluation/test_eval_model.py
test/evaluation/test_statistical_tests.py
test/evaluation/test_utils.py
test/evaluation/eval_pipeline_modules/__init__.py
test/evaluation/eval_pipeline_modules/test_metric_evaluator.py
test/evaluation/metrics/__init__.py
test/evaluation/metrics/test_classification_metrics.py
test/evaluation/metrics/test_error_metrics.py
test/evaluation/metrics/test_fairness_metrics.py
test/evaluation/metrics/test_plot_metrics.py
test/evaluation/metrics/test_ranking_metrics.py
test/recsys/__init__.py
test/recsys/test_methodology.py
test/recsys/test_partitioning.py
test/recsys/test_recsys.py
test/recsys/content_based_algorithm/__init__.py
test/recsys/content_based_algorithm/test_content_based_algorithm.py
test/recsys/content_based_algorithm/test_contents_loader.py
test/recsys/content_based_algorithm/centroid_vector/__init__.py
test/recsys/content_based_algorithm/centroid_vector/test_centroid_vector.py
test/recsys/content_based_algorithm/centroid_vector/test_similarities.py
test/recsys/content_based_algorithm/classifier/__init__.py
test/recsys/content_based_algorithm/classifier/test_classifier.py
test/recsys/content_based_algorithm/index_query/__init__.py
test/recsys/content_based_algorithm/index_query/test_index_query.py
test/recsys/content_based_algorithm/regressor/__init__.py
test/recsys/content_based_algorithm/regressor/test_regression.py
test/recsys/graph_based_algorithm/__init__.py
test/recsys/graph_based_algorithm/test_graph_based_algorithm.py
test/recsys/graph_based_algorithm/page_rank/__init__.py
test/recsys/graph_based_algorithm/page_rank/test_nx_page_rank.py
test/recsys/graphs/__init__.py
test/recsys/graphs/test_graph.py
test/recsys/graphs/feature_selection/__init__.py
test/recsys/graphs/feature_selection/test_feature_selection.py
test/recsys/graphs/feature_selection/test_feature_selection_alg.py
test/recsys/graphs/test_networkx_implementation/__init__.py
test/recsys/graphs/test_networkx_implementation/test_nx_bipartite_graphs.py
test/recsys/graphs/test_networkx_implementation/test_nx_full_graphs.py
test/recsys/graphs/test_networkx_implementation/test_nx_tripartite_graphs.py
test/utils/__init__.py
test/utils/test_automatic_methods.py
test/utils/test_check_tokenization.py
test/utils/test_class_utils.py
test/utils/test_context_managers.py
test/utils/test_id_merger.py
test/utils/test_load_content.py
test/utils/test_report.py