Skip to content

Latest commit

 

History

History
98 lines (97 loc) · 3.28 KB

info.md

File metadata and controls

98 lines (97 loc) · 3.28 KB

tree -I "pycache|.pyc|.pyo" -L 4 --prune -P ".py|.txt|*.json" . ├── init.py ├── data │ └── scisummnet_release1.1__20190413 │ ├── Dataset_Documentation.txt │ └── log.txt ├── outputs │ ├── checkpoints │ │ └── pipeline_state.json │ └── embeddings │ └── metadata.json ├── requirements.txt ├── run.py ├── scripts │ └── validate_dependencies.py ├── setup.py ├── src │ ├── init.py │ ├── cli.py │ ├── cluster_manager.py │ ├── clustering │ │ ├── init.py │ │ ├── attention_clustering.py │ │ ├── cluster_explainer.py │ │ ├── cluster_manager.py │ │ ├── clustering_utils.py │ │ ├── dynamic_cluster_manager.py │ │ ├── dynamic_clusterer.py │ │ ├── graph_clusterer.py │ │ ├── hybrid_cluster_manager.py │ │ └── streaming_manager.py │ ├── dashboard │ │ └── app.py │ ├── data │ │ └── data_loader.py │ ├── data_exploration.py │ ├── data_loader │ │ └── flexible_loader.py │ ├── data_loader.py │ ├── data_preparation.py │ ├── data_validator.py │ ├── embedding_generator.py │ ├── evaluation │ │ ├── init.py │ │ ├── cluster_evaluator.py │ │ ├── eval_pipeline.py │ │ ├── metrics.py │ │ └── pipeline_evaluator.py │ ├── main.py │ ├── main_with_training.py │ ├── personalization │ │ └── user_config.py │ ├── preprocessing │ │ └── domain_agnostic_preprocessor.py │ ├── preprocessor.py │ ├── summarization │ │ ├── init.py │ │ ├── adaptive_style.py │ │ ├── adaptive_summarizer.py │ │ ├── enhanced_summarizer.py │ │ ├── hybrid_summarizer.py │ │ ├── model_trainer.py │ │ └── summarizer.py │ ├── utils │ │ ├── init.py │ │ ├── checkpoint_manager.py │ │ ├── cluster_selector.py │ │ ├── logging_config.py │ │ ├── logging_utils.py │ │ ├── metrics_calculator.py │ │ ├── metrics_utils.py │ │ ├── model_utils.py │ │ └── style_selector.py │ └── visualization │ ├── init.py │ ├── cluster_visualizer.py │ └── embedding_visualizer.py ├── synsearch.egg-info │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt └── tests ├── init.py ├── test_data_loader.py ├── test_data_pipeline.py ├── test_data_validator.py ├── test_dynamic_clustering.py ├── test_embedding_generator.py ├── test_embedding_visualizer.py ├── test_enhanced_pipeline.py ├── test_evaluation_metrics.py ├── test_integration.py ├── test_preprocessor.py └── test_summarizer.py

20 directories, 75 files