├── LICENSE ├── README.md ├── __init__.py ├── configure.py ├── data ├── corpus │ ├── cnoun.txt │ ├── cnoun_org.txt │ ├── stopword.txt │ ├── stopword_org.txt │ ├── synonym.txt │ └── synonym_org.txt ├── font │ └── NanumSquareB.otf └── image │ ├── wordcloud_mask_type_01.png │ └── wordcloud_mask_type_02.png ├── handler ├── FileHandler.py ├── MessageHandler.py ├── QueueHandler.py └── __init__.py ├── install.ipynb ├── machine_learning ├── Classification.py ├── Clustering.py ├── Regression.py └── __init__.py ├── model ├── ner │ ├── entity_to_index │ ├── index_to_entity │ ├── index_to_token │ ├── token_to_index │ └── tokenizer └── sentiment │ └── tokenizer ├── nlp ├── MorphologicalAnalyzer.py ├── NamedEntityRecognizer.py ├── Processing.py ├── SyntaxAnalyzer.py └── __init__.py ├── teanaps_setup.py ├── text_analysis ├── CoWordCalculator.py ├── DocumentClustering.py ├── DocumentSummarizer.py ├── KeywordExtractor.py ├── SentimentAnalysis.py ├── SimCalculator.py ├── TfidfCalculator.py ├── TopicClustering.py └── __init__.py └── visualization ├── GraphVisualizer.py ├── TextVisualizer.py └── __init__.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/configure.py -------------------------------------------------------------------------------- /data/corpus/cnoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/corpus/cnoun.txt -------------------------------------------------------------------------------- /data/corpus/cnoun_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/corpus/cnoun_org.txt -------------------------------------------------------------------------------- /data/corpus/stopword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/corpus/stopword.txt -------------------------------------------------------------------------------- /data/corpus/stopword_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/corpus/stopword_org.txt -------------------------------------------------------------------------------- /data/corpus/synonym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/corpus/synonym.txt -------------------------------------------------------------------------------- /data/corpus/synonym_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/corpus/synonym_org.txt -------------------------------------------------------------------------------- /data/font/NanumSquareB.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/font/NanumSquareB.otf -------------------------------------------------------------------------------- /data/image/wordcloud_mask_type_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/image/wordcloud_mask_type_01.png -------------------------------------------------------------------------------- /data/image/wordcloud_mask_type_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/data/image/wordcloud_mask_type_02.png -------------------------------------------------------------------------------- /handler/FileHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/handler/FileHandler.py -------------------------------------------------------------------------------- /handler/MessageHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/handler/MessageHandler.py -------------------------------------------------------------------------------- /handler/QueueHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/handler/QueueHandler.py -------------------------------------------------------------------------------- /handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/handler/__init__.py -------------------------------------------------------------------------------- /install.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/install.ipynb -------------------------------------------------------------------------------- /machine_learning/Classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/machine_learning/Classification.py -------------------------------------------------------------------------------- /machine_learning/Clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/machine_learning/Clustering.py -------------------------------------------------------------------------------- /machine_learning/Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/machine_learning/Regression.py -------------------------------------------------------------------------------- /machine_learning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/machine_learning/__init__.py -------------------------------------------------------------------------------- /model/ner/entity_to_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/model/ner/entity_to_index -------------------------------------------------------------------------------- /model/ner/index_to_entity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/model/ner/index_to_entity -------------------------------------------------------------------------------- /model/ner/index_to_token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/model/ner/index_to_token -------------------------------------------------------------------------------- /model/ner/token_to_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/model/ner/token_to_index -------------------------------------------------------------------------------- /model/ner/tokenizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/model/ner/tokenizer -------------------------------------------------------------------------------- /model/sentiment/tokenizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/model/sentiment/tokenizer -------------------------------------------------------------------------------- /nlp/MorphologicalAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/nlp/MorphologicalAnalyzer.py -------------------------------------------------------------------------------- /nlp/NamedEntityRecognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/nlp/NamedEntityRecognizer.py -------------------------------------------------------------------------------- /nlp/Processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/nlp/Processing.py -------------------------------------------------------------------------------- /nlp/SyntaxAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/nlp/SyntaxAnalyzer.py -------------------------------------------------------------------------------- /nlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/nlp/__init__.py -------------------------------------------------------------------------------- /teanaps_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/teanaps_setup.py -------------------------------------------------------------------------------- /text_analysis/CoWordCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/CoWordCalculator.py -------------------------------------------------------------------------------- /text_analysis/DocumentClustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/DocumentClustering.py -------------------------------------------------------------------------------- /text_analysis/DocumentSummarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/DocumentSummarizer.py -------------------------------------------------------------------------------- /text_analysis/KeywordExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/KeywordExtractor.py -------------------------------------------------------------------------------- /text_analysis/SentimentAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/SentimentAnalysis.py -------------------------------------------------------------------------------- /text_analysis/SimCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/SimCalculator.py -------------------------------------------------------------------------------- /text_analysis/TfidfCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/TfidfCalculator.py -------------------------------------------------------------------------------- /text_analysis/TopicClustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/TopicClustering.py -------------------------------------------------------------------------------- /text_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/text_analysis/__init__.py -------------------------------------------------------------------------------- /visualization/GraphVisualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/visualization/GraphVisualizer.py -------------------------------------------------------------------------------- /visualization/TextVisualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/visualization/TextVisualizer.py -------------------------------------------------------------------------------- /visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fingeredman/teanaps/HEAD/visualization/__init__.py --------------------------------------------------------------------------------