├── .gitignore ├── README.md ├── Socar_Memo_API_Server ├── .gitignore ├── Classification_API │ ├── common │ │ └── preprocess.py │ └── model │ │ ├── classification.py │ │ ├── inference.py │ │ └── transformer.py ├── Crawling_API │ ├── common │ │ └── extraction.py │ └── model │ │ ├── crawling.py │ │ ├── google.py │ │ └── naver.py ├── README.md ├── Vocabulary_API │ ├── common │ │ ├── Bigram │ │ │ ├── control │ │ │ │ └── bigram_vocab.py │ │ │ └── model │ │ │ │ └── bigram.py │ │ ├── db.py │ │ └── downloader.py │ └── model │ │ ├── foreign_vocab.py │ │ ├── unknown_word.py │ │ ├── vocab_tree.py │ │ └── vocabulary.py ├── api.py └── data │ ├── Inference │ ├── label_to_num.pkl │ ├── num_to_label.pkl │ ├── num_to_word.pkl │ └── word_to_num.pkl │ ├── car_name.txt │ ├── combos_4000.txt │ ├── kkma_nouns.txt │ ├── labels │ └── labels_21179.txt │ ├── models │ ├── checkpoint │ ├── weights.data-00000-of-00001 │ └── weights.index │ ├── nouns.txt │ ├── nouns_3084.txt │ ├── okt_nouns.txt │ ├── split_list.txt │ ├── spm_txt │ ├── labeling.model │ └── labeling.vocab │ ├── tokenization_dict.pickle │ └── tstation_center.txt ├── Socar_Memo_Web_Server ├── .gitignore ├── README.md ├── app.py ├── index.html ├── requirements.txt ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── css │ │ └── styles.css │ ├── images │ │ ├── car_repairing.jpeg │ │ └── profile_img.png │ └── js │ │ └── script.js └── templates │ └── home.html ├── classification ├── classification_BERT_base.ipynb ├── classification_BERT_custom_tokenizer.ipynb ├── classification_transformer.ipynb └── classification_transformer_multi.ipynb ├── data ├── desc_token_labeled(upsampled).json ├── desc_token_labeled.json ├── desc_token_unique_labeled(upsampled).json ├── desc_token_unique_labeled.json ├── extracted_7101_0_7101.pickle ├── extracted_nouns_7101_0_7101.pickle └── tstation_center.txt ├── preprocessing └── memo 전처리.ipynb └── tokenizer ├── Tokenize_google_crawling.ipynb └── data ├── kkma_nouns.txt ├── okt_nouns.txt └── split_list.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/README.md -------------------------------------------------------------------------------- /Socar_Memo_API_Server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/.gitignore -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Classification_API/common/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Classification_API/common/preprocess.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Classification_API/model/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Classification_API/model/classification.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Classification_API/model/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Classification_API/model/inference.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Classification_API/model/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Classification_API/model/transformer.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Crawling_API/common/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Crawling_API/common/extraction.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Crawling_API/model/crawling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Crawling_API/model/crawling.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Crawling_API/model/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Crawling_API/model/google.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Crawling_API/model/naver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Crawling_API/model/naver.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/README.md -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/common/Bigram/control/bigram_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/common/Bigram/control/bigram_vocab.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/common/Bigram/model/bigram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/common/Bigram/model/bigram.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/common/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/common/db.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/common/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/common/downloader.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/model/foreign_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/model/foreign_vocab.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/model/unknown_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/model/unknown_word.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/model/vocab_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/model/vocab_tree.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/Vocabulary_API/model/vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/Vocabulary_API/model/vocabulary.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/api.py -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/Inference/label_to_num.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/Inference/label_to_num.pkl -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/Inference/num_to_label.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/Inference/num_to_label.pkl -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/Inference/num_to_word.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/Inference/num_to_word.pkl -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/Inference/word_to_num.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/Inference/word_to_num.pkl -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/car_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/car_name.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/combos_4000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/combos_4000.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/kkma_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/kkma_nouns.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/labels/labels_21179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/labels/labels_21179.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/models/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/models/checkpoint -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/models/weights.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/models/weights.data-00000-of-00001 -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/models/weights.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/models/weights.index -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/nouns.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/nouns_3084.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/nouns_3084.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/okt_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/okt_nouns.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/split_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/split_list.txt -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/spm_txt/labeling.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/spm_txt/labeling.model -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/spm_txt/labeling.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/spm_txt/labeling.vocab -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/tokenization_dict.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/tokenization_dict.pickle -------------------------------------------------------------------------------- /Socar_Memo_API_Server/data/tstation_center.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_API_Server/data/tstation_center.txt -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/.gitignore -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/README.md -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/app.py -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/index.html -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/requirements.txt -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/css/styles.css -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/images/car_repairing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/images/car_repairing.jpeg -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/images/profile_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/images/profile_img.png -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/static/js/script.js -------------------------------------------------------------------------------- /Socar_Memo_Web_Server/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/Socar_Memo_Web_Server/templates/home.html -------------------------------------------------------------------------------- /classification/classification_BERT_base.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/classification/classification_BERT_base.ipynb -------------------------------------------------------------------------------- /classification/classification_BERT_custom_tokenizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/classification/classification_BERT_custom_tokenizer.ipynb -------------------------------------------------------------------------------- /classification/classification_transformer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/classification/classification_transformer.ipynb -------------------------------------------------------------------------------- /classification/classification_transformer_multi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/classification/classification_transformer_multi.ipynb -------------------------------------------------------------------------------- /data/desc_token_labeled(upsampled).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/desc_token_labeled(upsampled).json -------------------------------------------------------------------------------- /data/desc_token_labeled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/desc_token_labeled.json -------------------------------------------------------------------------------- /data/desc_token_unique_labeled(upsampled).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/desc_token_unique_labeled(upsampled).json -------------------------------------------------------------------------------- /data/desc_token_unique_labeled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/desc_token_unique_labeled.json -------------------------------------------------------------------------------- /data/extracted_7101_0_7101.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/extracted_7101_0_7101.pickle -------------------------------------------------------------------------------- /data/extracted_nouns_7101_0_7101.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/extracted_nouns_7101_0_7101.pickle -------------------------------------------------------------------------------- /data/tstation_center.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/data/tstation_center.txt -------------------------------------------------------------------------------- /preprocessing/memo 전처리.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/preprocessing/memo 전처리.ipynb -------------------------------------------------------------------------------- /tokenizer/Tokenize_google_crawling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/tokenizer/Tokenize_google_crawling.ipynb -------------------------------------------------------------------------------- /tokenizer/data/kkma_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/tokenizer/data/kkma_nouns.txt -------------------------------------------------------------------------------- /tokenizer/data/okt_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/tokenizer/data/okt_nouns.txt -------------------------------------------------------------------------------- /tokenizer/data/split_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-hwistle/AIFFELxSOCAR_MemoProject/HEAD/tokenizer/data/split_list.txt --------------------------------------------------------------------------------