├── .github └── workflows │ ├── automatic_build.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── DEVELOPER_GUIDES.md ├── LICENSE ├── README.md ├── VERSION ├── actions_requirements.txt ├── automatic_build.py ├── docs ├── README_archive.md ├── amr.md ├── archive │ ├── idea_v0.2.md │ ├── todo │ │ ├── new_words_form.txt │ │ ├── tokenize_data.txt │ │ └── vi_corpus_v1_todo.conllu │ └── vietnamese │ │ ├── cli.py │ │ ├── task.py │ │ └── templates │ │ ├── ADD_SENTENCE.tpl │ │ └── PROPOSE_TASK.tpl ├── corpus_analysis │ ├── bktreebank_analysis.md │ └── conllu_analysis.md ├── dependency_parsing-bkt.md ├── dependency_parsing-vtb.md ├── dependency_parsing.md ├── guidelines │ ├── README.md │ ├── dependency_parsing │ │ ├── aux.md │ │ ├── clf.md │ │ └── obj.md │ ├── errors_code │ │ └── text-corpus │ │ │ └── README.md │ ├── examples │ │ └── 02.md │ ├── gl01-tokeniation_and_word_segmentation.md │ ├── gl01-tokenization-vietnamese.md │ ├── gl01-vietnamese_word_segmentation.md │ ├── gl02-nominals.md │ ├── images │ │ ├── ex_02.png │ │ ├── ex_03.png │ │ └── ex_04.png │ ├── pos_tag.md │ └── pos_tag │ │ ├── ADJ.md │ │ ├── ADP.md │ │ ├── ADV.md │ │ ├── AUX.md │ │ ├── CCONJ.md │ │ ├── DET.md │ │ ├── NOUN.md │ │ ├── NUM.md │ │ ├── PRON.md │ │ ├── PROPN.md │ │ ├── SCONJ.md │ │ └── VERB.md ├── idea.md ├── images │ └── underthesea_resources.png ├── lemma.md ├── linguistics │ ├── README.md │ ├── gioi_thieu-dac_diem_ngon_ngu.md │ └── gioi_thieu.md ├── methods_tools.md ├── nlp │ ├── constituency_parsing.md │ └── dependency_parsing.md ├── pos_tag.md ├── templates │ └── README.md └── vietnamese │ ├── README.md │ ├── cph-cau.md │ ├── cph-cau_cam_than.md │ ├── cph-cau_cau_khien.md │ ├── cph-cau_don.md │ ├── cph-cau_ghep.md │ ├── cph-cau_nghi_van.md │ ├── cph-cau_tran_thuat.md │ ├── hth-dai_tu_tieng_viet.md │ ├── hth-danh_tu_tieng-viet.md │ ├── hth-dong_tu_tieng_viet.md │ ├── hth-phu_tu_tieng_viet.md │ └── hth-tinh_tu_tieng_viet.md ├── new_file.txt ├── release.py ├── requirements.txt ├── resources ├── CP_Vietnamese-UNC │ ├── .gitignore │ ├── CHANGELOG.md │ ├── DATA_FORMAT.md │ ├── README.md │ ├── corpus │ │ └── CP_Vietnamese-UNC │ │ │ ├── news_business_001.txt │ │ │ ├── news_business_002.txt │ │ │ ├── news_business_003.txt │ │ │ ├── news_business_004.txt │ │ │ ├── news_business_005.txt │ │ │ ├── news_business_006.txt │ │ │ ├── news_business_007.txt │ │ │ ├── news_business_008.txt │ │ │ ├── news_business_009.txt │ │ │ ├── news_business_010.txt │ │ │ ├── news_business_011.txt │ │ │ ├── news_business_012.txt │ │ │ ├── news_business_013.txt │ │ │ ├── news_business_014.txt │ │ │ ├── news_business_015.txt │ │ │ ├── news_business_016.txt │ │ │ ├── news_business_017.txt │ │ │ ├── news_business_018.txt │ │ │ ├── news_business_019.txt │ │ │ ├── news_business_020.txt │ │ │ ├── news_education_001.txt │ │ │ ├── news_education_002.txt │ │ │ ├── news_education_003.txt │ │ │ ├── news_education_004.txt │ │ │ ├── news_education_005.txt │ │ │ ├── news_education_006.txt │ │ │ ├── news_education_007.txt │ │ │ ├── news_education_008.txt │ │ │ ├── news_education_009.txt │ │ │ ├── news_education_010.txt │ │ │ ├── news_education_011.txt │ │ │ ├── news_education_012.txt │ │ │ ├── news_education_013.txt │ │ │ ├── news_education_014.txt │ │ │ ├── news_education_015.txt │ │ │ ├── news_education_016.txt │ │ │ ├── news_education_017.txt │ │ │ ├── news_education_018.txt │ │ │ ├── news_education_019.txt │ │ │ ├── news_education_020.txt │ │ │ ├── news_entertainment_001.txt │ │ │ ├── news_entertainment_002.txt │ │ │ ├── news_entertainment_003.txt │ │ │ ├── news_entertainment_004.txt │ │ │ ├── news_entertainment_005.txt │ │ │ ├── news_entertainment_006.txt │ │ │ ├── news_entertainment_007.txt │ │ │ ├── news_entertainment_008.txt │ │ │ ├── news_entertainment_009.txt │ │ │ ├── news_entertainment_010.txt │ │ │ ├── news_entertainment_011.txt │ │ │ ├── news_entertainment_012.txt │ │ │ ├── news_entertainment_013.txt │ │ │ ├── news_entertainment_014.txt │ │ │ ├── news_entertainment_015.txt │ │ │ ├── news_entertainment_016.txt │ │ │ ├── news_entertainment_017.txt │ │ │ ├── news_entertainment_018.txt │ │ │ ├── news_entertainment_019.txt │ │ │ ├── news_entertainment_020.txt │ │ │ ├── news_health_001.txt │ │ │ ├── news_health_002.txt │ │ │ ├── news_health_003.txt │ │ │ ├── news_health_004.txt │ │ │ ├── news_health_005.txt │ │ │ ├── news_health_006.txt │ │ │ ├── news_health_007.txt │ │ │ ├── news_health_008.txt │ │ │ ├── news_health_009.txt │ │ │ ├── news_health_010.txt │ │ │ ├── news_health_011.txt │ │ │ ├── news_health_012.txt │ │ │ ├── news_health_013.txt │ │ │ ├── news_health_014.txt │ │ │ ├── news_health_015.txt │ │ │ ├── news_health_016.txt │ │ │ ├── news_health_017.txt │ │ │ ├── news_health_018.txt │ │ │ ├── news_health_019.txt │ │ │ ├── news_health_020.txt │ │ │ ├── news_science_001.txt │ │ │ ├── news_science_002.txt │ │ │ ├── news_science_003.txt │ │ │ ├── news_science_004.txt │ │ │ ├── news_science_005.txt │ │ │ ├── news_science_006.txt │ │ │ ├── news_science_007.txt │ │ │ ├── news_science_008.txt │ │ │ ├── news_science_009.txt │ │ │ ├── news_science_010.txt │ │ │ ├── news_science_011.txt │ │ │ ├── news_science_012.txt │ │ │ ├── news_science_013.txt │ │ │ ├── news_science_014.txt │ │ │ ├── news_science_015.txt │ │ │ ├── news_science_016.txt │ │ │ ├── news_science_017.txt │ │ │ ├── news_science_018.txt │ │ │ ├── news_science_019.txt │ │ │ ├── news_science_020.txt │ │ │ ├── news_society_001.txt │ │ │ ├── news_society_002.txt │ │ │ ├── news_society_003.txt │ │ │ ├── news_society_004.txt │ │ │ ├── news_society_005.txt │ │ │ ├── news_society_006.txt │ │ │ ├── news_society_007.txt │ │ │ ├── news_society_008.txt │ │ │ ├── news_society_009.txt │ │ │ ├── news_society_010.txt │ │ │ ├── news_society_011.txt │ │ │ ├── news_society_012.txt │ │ │ ├── news_society_013.txt │ │ │ ├── news_society_014.txt │ │ │ ├── news_society_015.txt │ │ │ ├── news_society_016.txt │ │ │ ├── news_society_017.txt │ │ │ ├── news_society_018.txt │ │ │ ├── news_society_019.txt │ │ │ ├── news_society_020.txt │ │ │ ├── news_sport_001.txt │ │ │ ├── news_sport_002.txt │ │ │ ├── news_sport_003.txt │ │ │ ├── news_sport_004.txt │ │ │ ├── news_sport_005.txt │ │ │ ├── news_sport_006.txt │ │ │ ├── news_sport_007.txt │ │ │ ├── news_sport_008.txt │ │ │ ├── news_sport_009.txt │ │ │ ├── news_sport_010.txt │ │ │ ├── news_sport_011.txt │ │ │ ├── news_sport_012.txt │ │ │ ├── news_sport_013.txt │ │ │ ├── news_sport_014.txt │ │ │ ├── news_sport_015.txt │ │ │ ├── news_sport_016.txt │ │ │ ├── news_sport_017.txt │ │ │ ├── news_sport_018.txt │ │ │ ├── news_sport_019.txt │ │ │ ├── news_sport_020.txt │ │ │ ├── news_tech_001.txt │ │ │ ├── news_tech_002.txt │ │ │ ├── news_tech_003.txt │ │ │ ├── news_tech_004.txt │ │ │ ├── news_tech_005.txt │ │ │ ├── news_tech_006.txt │ │ │ ├── news_tech_007.txt │ │ │ ├── news_tech_008.txt │ │ │ ├── news_tech_009.txt │ │ │ ├── news_tech_010.txt │ │ │ ├── news_tech_011.txt │ │ │ ├── news_tech_012.txt │ │ │ ├── news_tech_013.txt │ │ │ ├── news_tech_014.txt │ │ │ ├── news_tech_015.txt │ │ │ ├── news_tech_016.txt │ │ │ ├── news_tech_017.txt │ │ │ ├── news_tech_018.txt │ │ │ ├── news_tech_019.txt │ │ │ ├── news_tech_020.txt │ │ │ ├── news_travel_001.txt │ │ │ ├── news_travel_002.txt │ │ │ ├── news_travel_003.txt │ │ │ ├── news_travel_004.txt │ │ │ ├── news_travel_005.txt │ │ │ ├── news_travel_006.txt │ │ │ ├── news_travel_007.txt │ │ │ ├── news_travel_008.txt │ │ │ ├── news_travel_009.txt │ │ │ ├── news_travel_010.txt │ │ │ ├── news_travel_011.txt │ │ │ ├── news_travel_012.txt │ │ │ ├── news_travel_013.txt │ │ │ ├── news_travel_014.txt │ │ │ ├── news_travel_015.txt │ │ │ ├── news_travel_016.txt │ │ │ ├── news_travel_017.txt │ │ │ ├── news_travel_018.txt │ │ │ ├── news_travel_019.txt │ │ │ ├── news_travel_020.txt │ │ │ ├── news_world_001.txt │ │ │ ├── news_world_002.txt │ │ │ ├── news_world_003.txt │ │ │ ├── news_world_004.txt │ │ │ ├── news_world_005.txt │ │ │ ├── news_world_006.txt │ │ │ ├── news_world_007.txt │ │ │ ├── news_world_008.txt │ │ │ ├── news_world_009.txt │ │ │ ├── news_world_010.txt │ │ │ ├── news_world_011.txt │ │ │ ├── news_world_012.txt │ │ │ ├── news_world_013.txt │ │ │ ├── news_world_014.txt │ │ │ ├── news_world_015.txt │ │ │ ├── news_world_016.txt │ │ │ ├── news_world_017.txt │ │ │ ├── news_world_018.txt │ │ │ ├── news_world_019.txt │ │ │ └── news_world_020.txt │ ├── datasets │ │ └── CP_Vietnamese-UNC │ │ │ ├── news_business_001.txt │ │ │ ├── news_business_002.txt │ │ │ ├── news_business_003.txt │ │ │ ├── news_business_004.txt │ │ │ ├── news_business_005.txt │ │ │ ├── news_business_006.txt │ │ │ ├── news_business_007.txt │ │ │ ├── news_business_008.txt │ │ │ ├── news_business_009.txt │ │ │ ├── news_business_010.txt │ │ │ ├── news_business_011.txt │ │ │ ├── news_business_012.txt │ │ │ ├── news_business_013.txt │ │ │ ├── news_business_014.txt │ │ │ ├── news_business_015.txt │ │ │ ├── news_business_016.txt │ │ │ ├── news_business_017.txt │ │ │ ├── news_business_018.txt │ │ │ ├── news_business_019.txt │ │ │ ├── news_business_020.txt │ │ │ ├── news_business_021.txt │ │ │ ├── news_business_022.txt │ │ │ ├── news_business_023.txt │ │ │ ├── news_business_024.txt │ │ │ ├── news_business_025.txt │ │ │ ├── news_business_026.txt │ │ │ ├── news_business_027.txt │ │ │ ├── news_business_028.txt │ │ │ ├── news_business_029.txt │ │ │ ├── news_business_030.txt │ │ │ ├── news_business_031.txt │ │ │ ├── news_business_032.txt │ │ │ ├── news_business_033.txt │ │ │ ├── news_business_034.txt │ │ │ ├── news_business_035.txt │ │ │ ├── news_business_036.txt │ │ │ ├── news_business_037.txt │ │ │ ├── news_business_038.txt │ │ │ ├── news_business_039.txt │ │ │ ├── news_business_040.txt │ │ │ ├── news_business_041.txt │ │ │ ├── news_business_042.txt │ │ │ ├── news_business_043.txt │ │ │ ├── news_business_044.txt │ │ │ ├── news_business_045.txt │ │ │ ├── news_business_046.txt │ │ │ ├── news_business_047.txt │ │ │ ├── news_business_048.txt │ │ │ ├── news_business_049.txt │ │ │ ├── news_business_050.txt │ │ │ ├── news_business_051.txt │ │ │ ├── news_business_052.txt │ │ │ ├── news_business_053.txt │ │ │ ├── news_business_054.txt │ │ │ ├── news_business_055.txt │ │ │ ├── news_business_056.txt │ │ │ ├── news_business_057.txt │ │ │ ├── news_business_058.txt │ │ │ ├── news_business_059.txt │ │ │ ├── news_business_060.txt │ │ │ ├── news_business_061.txt │ │ │ ├── news_business_062.txt │ │ │ ├── news_business_063.txt │ │ │ ├── news_business_064.txt │ │ │ ├── news_business_065.txt │ │ │ ├── news_business_066.txt │ │ │ ├── news_business_067.txt │ │ │ ├── news_business_068.txt │ │ │ ├── news_business_069.txt │ │ │ ├── news_business_070.txt │ │ │ ├── news_business_071.txt │ │ │ ├── news_business_072.txt │ │ │ ├── news_business_073.txt │ │ │ ├── news_business_074.txt │ │ │ ├── news_business_075.txt │ │ │ ├── news_business_076.txt │ │ │ ├── news_business_077.txt │ │ │ ├── news_business_078.txt │ │ │ ├── news_business_079.txt │ │ │ ├── news_business_080.txt │ │ │ ├── news_business_081.txt │ │ │ ├── news_business_082.txt │ │ │ ├── news_business_083.txt │ │ │ ├── news_business_084.txt │ │ │ ├── news_business_085.txt │ │ │ ├── news_business_086.txt │ │ │ ├── news_business_087.txt │ │ │ ├── news_business_088.txt │ │ │ ├── news_business_089.txt │ │ │ ├── news_business_090.txt │ │ │ ├── news_business_091.txt │ │ │ ├── news_business_092.txt │ │ │ ├── news_business_093.txt │ │ │ ├── news_business_094.txt │ │ │ ├── news_business_095.txt │ │ │ ├── news_business_096.txt │ │ │ ├── news_business_097.txt │ │ │ ├── news_business_098.txt │ │ │ ├── news_business_099.txt │ │ │ ├── news_business_100.txt │ │ │ ├── news_business_101.txt │ │ │ ├── news_business_102.txt │ │ │ ├── news_business_103.txt │ │ │ ├── news_business_104.txt │ │ │ ├── news_business_105.txt │ │ │ ├── news_business_106.txt │ │ │ ├── news_business_107.txt │ │ │ ├── news_business_108.txt │ │ │ ├── news_business_109.txt │ │ │ ├── news_business_110.txt │ │ │ ├── news_business_111.txt │ │ │ ├── news_business_112.txt │ │ │ ├── news_business_113.txt │ │ │ ├── news_business_114.txt │ │ │ ├── news_business_115.txt │ │ │ ├── news_business_116.txt │ │ │ ├── news_business_117.txt │ │ │ ├── news_business_118.txt │ │ │ ├── news_business_119.txt │ │ │ ├── news_business_120.txt │ │ │ ├── news_business_121.txt │ │ │ ├── news_business_122.txt │ │ │ ├── news_business_123.txt │ │ │ ├── news_business_124.txt │ │ │ ├── news_business_125.txt │ │ │ ├── news_business_126.txt │ │ │ ├── news_business_127.txt │ │ │ ├── news_business_128.txt │ │ │ ├── news_business_129.txt │ │ │ ├── news_business_130.txt │ │ │ ├── news_business_131.txt │ │ │ ├── news_business_132.txt │ │ │ ├── news_business_133.txt │ │ │ ├── news_business_134.txt │ │ │ ├── news_business_135.txt │ │ │ ├── news_business_136.txt │ │ │ ├── news_business_137.txt │ │ │ ├── news_business_138.txt │ │ │ ├── news_business_139.txt │ │ │ ├── news_business_140.txt │ │ │ ├── news_business_141.txt │ │ │ ├── news_business_142.txt │ │ │ ├── news_business_143.txt │ │ │ ├── news_business_144.txt │ │ │ ├── news_business_145.txt │ │ │ ├── news_business_146.txt │ │ │ ├── news_business_147.txt │ │ │ ├── news_business_148.txt │ │ │ ├── news_business_149.txt │ │ │ ├── news_business_150.txt │ │ │ ├── news_business_151.txt │ │ │ ├── news_business_152.txt │ │ │ ├── news_business_153.txt │ │ │ ├── news_business_154.txt │ │ │ ├── news_business_155.txt │ │ │ ├── news_business_156.txt │ │ │ ├── news_business_157.txt │ │ │ ├── news_business_158.txt │ │ │ ├── news_business_159.txt │ │ │ ├── news_business_160.txt │ │ │ ├── news_business_161.txt │ │ │ ├── news_business_162.txt │ │ │ ├── news_business_163.txt │ │ │ ├── news_business_164.txt │ │ │ ├── news_business_165.txt │ │ │ ├── news_business_166.txt │ │ │ ├── news_business_167.txt │ │ │ ├── news_business_168.txt │ │ │ ├── news_business_169.txt │ │ │ ├── news_business_170.txt │ │ │ ├── news_business_171.txt │ │ │ ├── news_business_172.txt │ │ │ ├── news_business_173.txt │ │ │ ├── news_business_174.txt │ │ │ ├── news_business_175.txt │ │ │ ├── news_business_176.txt │ │ │ ├── news_business_177.txt │ │ │ ├── news_business_178.txt │ │ │ ├── news_business_179.txt │ │ │ ├── news_business_180.txt │ │ │ ├── news_business_181.txt │ │ │ ├── news_business_182.txt │ │ │ ├── news_business_183.txt │ │ │ ├── news_business_184.txt │ │ │ ├── news_business_185.txt │ │ │ ├── news_business_186.txt │ │ │ ├── news_business_187.txt │ │ │ ├── news_business_188.txt │ │ │ ├── news_business_189.txt │ │ │ ├── news_business_190.txt │ │ │ ├── news_business_191.txt │ │ │ ├── news_business_192.txt │ │ │ ├── news_business_193.txt │ │ │ ├── news_business_194.txt │ │ │ ├── news_business_195.txt │ │ │ ├── news_business_196.txt │ │ │ ├── news_business_197.txt │ │ │ ├── news_business_198.txt │ │ │ ├── news_business_199.txt │ │ │ ├── news_business_200.txt │ │ │ ├── news_business_201.txt │ │ │ ├── news_business_202.txt │ │ │ ├── news_business_203.txt │ │ │ ├── news_business_204.txt │ │ │ ├── news_business_205.txt │ │ │ ├── news_business_206.txt │ │ │ ├── news_business_207.txt │ │ │ ├── news_business_208.txt │ │ │ ├── news_business_209.txt │ │ │ ├── news_business_210.txt │ │ │ ├── news_business_211.txt │ │ │ ├── news_business_212.txt │ │ │ ├── news_business_213.txt │ │ │ ├── news_business_214.txt │ │ │ ├── news_business_215.txt │ │ │ ├── news_business_216.txt │ │ │ ├── news_business_217.txt │ │ │ ├── news_business_218.txt │ │ │ ├── news_business_219.txt │ │ │ ├── news_business_220.txt │ │ │ ├── news_business_221.txt │ │ │ ├── news_business_222.txt │ │ │ ├── news_business_223.txt │ │ │ ├── news_business_224.txt │ │ │ ├── news_business_225.txt │ │ │ ├── news_business_226.txt │ │ │ ├── news_business_227.txt │ │ │ ├── news_business_228.txt │ │ │ ├── news_business_229.txt │ │ │ ├── news_business_230.txt │ │ │ ├── news_business_231.txt │ │ │ ├── news_business_232.txt │ │ │ ├── news_business_233.txt │ │ │ ├── news_business_234.txt │ │ │ ├── news_business_235.txt │ │ │ ├── news_business_236.txt │ │ │ ├── news_business_237.txt │ │ │ ├── news_business_238.txt │ │ │ ├── news_business_239.txt │ │ │ ├── news_business_240.txt │ │ │ ├── news_business_241.txt │ │ │ ├── news_business_242.txt │ │ │ ├── news_business_243.txt │ │ │ ├── news_business_244.txt │ │ │ ├── news_business_245.txt │ │ │ ├── news_business_246.txt │ │ │ ├── news_business_247.txt │ │ │ ├── news_business_248.txt │ │ │ ├── news_business_249.txt │ │ │ ├── news_business_250.txt │ │ │ ├── news_business_251.txt │ │ │ ├── news_business_252.txt │ │ │ ├── news_business_253.txt │ │ │ ├── news_education_001.txt │ │ │ ├── news_education_002.txt │ │ │ ├── news_education_003.txt │ │ │ ├── news_education_004.txt │ │ │ ├── news_education_005.txt │ │ │ ├── news_education_006.txt │ │ │ ├── news_education_007.txt │ │ │ ├── news_education_008.txt │ │ │ ├── news_education_009.txt │ │ │ ├── news_education_010.txt │ │ │ ├── news_education_011.txt │ │ │ ├── news_education_012.txt │ │ │ ├── news_education_013.txt │ │ │ ├── news_education_014.txt │ │ │ ├── news_education_015.txt │ │ │ ├── news_education_016.txt │ │ │ ├── news_education_017.txt │ │ │ ├── news_education_018.txt │ │ │ ├── news_education_019.txt │ │ │ ├── news_education_020.txt │ │ │ ├── news_education_021.txt │ │ │ ├── news_education_022.txt │ │ │ ├── news_education_023.txt │ │ │ ├── news_education_024.txt │ │ │ ├── news_education_025.txt │ │ │ ├── news_education_026.txt │ │ │ ├── news_education_027.txt │ │ │ ├── news_education_028.txt │ │ │ ├── news_education_029.txt │ │ │ ├── news_education_030.txt │ │ │ ├── news_education_031.txt │ │ │ ├── news_education_032.txt │ │ │ ├── news_education_033.txt │ │ │ ├── news_education_034.txt │ │ │ ├── news_education_035.txt │ │ │ ├── news_education_036.txt │ │ │ ├── news_education_037.txt │ │ │ ├── news_education_038.txt │ │ │ ├── news_education_039.txt │ │ │ ├── news_education_040.txt │ │ │ ├── news_education_041.txt │ │ │ ├── news_education_042.txt │ │ │ ├── news_education_043.txt │ │ │ ├── news_education_044.txt │ │ │ ├── news_education_045.txt │ │ │ ├── news_education_046.txt │ │ │ ├── news_education_047.txt │ │ │ ├── news_education_048.txt │ │ │ ├── news_education_049.txt │ │ │ ├── news_education_050.txt │ │ │ ├── news_education_051.txt │ │ │ ├── news_education_052.txt │ │ │ ├── news_education_053.txt │ │ │ ├── news_education_054.txt │ │ │ ├── news_education_055.txt │ │ │ ├── news_education_056.txt │ │ │ ├── news_education_057.txt │ │ │ ├── news_education_058.txt │ │ │ ├── news_education_059.txt │ │ │ ├── news_education_060.txt │ │ │ ├── news_education_061.txt │ │ │ ├── news_education_062.txt │ │ │ ├── news_education_063.txt │ │ │ ├── news_education_064.txt │ │ │ ├── news_education_065.txt │ │ │ ├── news_education_066.txt │ │ │ ├── news_education_067.txt │ │ │ ├── news_education_068.txt │ │ │ ├── news_education_069.txt │ │ │ ├── news_education_070.txt │ │ │ ├── news_education_071.txt │ │ │ ├── news_education_072.txt │ │ │ ├── news_education_073.txt │ │ │ ├── news_education_074.txt │ │ │ ├── news_education_075.txt │ │ │ ├── news_education_076.txt │ │ │ ├── news_education_077.txt │ │ │ ├── news_education_078.txt │ │ │ ├── news_education_079.txt │ │ │ ├── news_education_080.txt │ │ │ ├── news_education_081.txt │ │ │ ├── news_education_082.txt │ │ │ ├── news_education_083.txt │ │ │ ├── news_education_084.txt │ │ │ ├── news_education_085.txt │ │ │ ├── news_education_086.txt │ │ │ ├── news_education_087.txt │ │ │ ├── news_education_088.txt │ │ │ ├── news_education_089.txt │ │ │ ├── news_education_090.txt │ │ │ ├── news_education_091.txt │ │ │ ├── news_education_092.txt │ │ │ ├── news_education_093.txt │ │ │ ├── news_education_094.txt │ │ │ ├── news_education_095.txt │ │ │ ├── news_education_096.txt │ │ │ ├── news_education_097.txt │ │ │ ├── news_education_098.txt │ │ │ ├── news_education_099.txt │ │ │ ├── news_education_100.txt │ │ │ ├── news_education_101.txt │ │ │ ├── news_education_102.txt │ │ │ ├── news_education_103.txt │ │ │ ├── news_education_104.txt │ │ │ ├── news_education_105.txt │ │ │ ├── news_education_106.txt │ │ │ ├── news_education_107.txt │ │ │ ├── news_education_108.txt │ │ │ ├── news_education_109.txt │ │ │ ├── news_education_110.txt │ │ │ ├── news_education_111.txt │ │ │ ├── news_education_112.txt │ │ │ ├── news_education_113.txt │ │ │ ├── news_education_114.txt │ │ │ ├── news_education_115.txt │ │ │ ├── news_education_116.txt │ │ │ ├── news_education_117.txt │ │ │ ├── news_education_118.txt │ │ │ ├── news_education_119.txt │ │ │ ├── news_education_120.txt │ │ │ ├── news_education_121.txt │ │ │ ├── news_education_122.txt │ │ │ ├── news_education_123.txt │ │ │ ├── news_education_124.txt │ │ │ ├── news_education_125.txt │ │ │ ├── news_education_126.txt │ │ │ ├── news_education_127.txt │ │ │ ├── news_education_128.txt │ │ │ ├── news_education_129.txt │ │ │ ├── news_education_130.txt │ │ │ ├── news_education_131.txt │ │ │ ├── news_education_132.txt │ │ │ ├── news_education_133.txt │ │ │ ├── news_education_134.txt │ │ │ ├── news_education_135.txt │ │ │ ├── news_education_136.txt │ │ │ ├── news_education_137.txt │ │ │ ├── news_education_138.txt │ │ │ ├── news_education_139.txt │ │ │ ├── news_education_140.txt │ │ │ ├── news_education_141.txt │ │ │ ├── news_education_142.txt │ │ │ ├── news_education_143.txt │ │ │ ├── news_education_144.txt │ │ │ ├── news_education_145.txt │ │ │ ├── news_education_146.txt │ │ │ ├── news_education_147.txt │ │ │ ├── news_education_148.txt │ │ │ ├── news_education_149.txt │ │ │ ├── news_education_150.txt │ │ │ ├── news_education_151.txt │ │ │ ├── news_education_152.txt │ │ │ ├── news_education_153.txt │ │ │ ├── news_education_154.txt │ │ │ ├── news_education_155.txt │ │ │ ├── news_education_156.txt │ │ │ ├── news_education_157.txt │ │ │ ├── news_education_158.txt │ │ │ ├── news_education_159.txt │ │ │ ├── news_education_160.txt │ │ │ ├── news_education_161.txt │ │ │ ├── news_education_162.txt │ │ │ ├── news_education_163.txt │ │ │ ├── news_education_164.txt │ │ │ ├── news_education_165.txt │ │ │ ├── news_education_166.txt │ │ │ ├── news_education_167.txt │ │ │ ├── news_education_168.txt │ │ │ ├── news_education_169.txt │ │ │ ├── news_education_170.txt │ │ │ ├── news_education_171.txt │ │ │ ├── news_education_172.txt │ │ │ ├── news_education_173.txt │ │ │ ├── news_education_174.txt │ │ │ ├── news_education_175.txt │ │ │ ├── news_education_176.txt │ │ │ ├── news_education_177.txt │ │ │ ├── news_education_178.txt │ │ │ ├── news_education_179.txt │ │ │ ├── news_education_180.txt │ │ │ ├── news_education_181.txt │ │ │ ├── news_education_182.txt │ │ │ ├── news_education_183.txt │ │ │ ├── news_education_184.txt │ │ │ ├── news_education_185.txt │ │ │ ├── news_education_186.txt │ │ │ ├── news_education_187.txt │ │ │ ├── news_education_188.txt │ │ │ ├── news_education_189.txt │ │ │ ├── news_education_190.txt │ │ │ ├── news_education_191.txt │ │ │ ├── news_education_192.txt │ │ │ ├── news_education_193.txt │ │ │ ├── news_education_194.txt │ │ │ ├── news_education_195.txt │ │ │ ├── news_education_196.txt │ │ │ ├── news_education_197.txt │ │ │ ├── news_education_198.txt │ │ │ ├── news_education_199.txt │ │ │ ├── news_education_200.txt │ │ │ ├── news_education_201.txt │ │ │ ├── news_education_202.txt │ │ │ ├── news_education_203.txt │ │ │ ├── news_education_204.txt │ │ │ ├── news_education_205.txt │ │ │ ├── news_education_206.txt │ │ │ ├── news_education_207.txt │ │ │ ├── news_education_208.txt │ │ │ ├── news_education_209.txt │ │ │ ├── news_education_210.txt │ │ │ ├── news_education_211.txt │ │ │ ├── news_education_212.txt │ │ │ ├── news_education_213.txt │ │ │ ├── news_education_214.txt │ │ │ ├── news_education_215.txt │ │ │ ├── news_education_216.txt │ │ │ ├── news_education_217.txt │ │ │ ├── news_education_218.txt │ │ │ ├── news_education_219.txt │ │ │ ├── news_education_220.txt │ │ │ ├── news_education_221.txt │ │ │ ├── news_education_222.txt │ │ │ ├── news_education_223.txt │ │ │ ├── news_education_224.txt │ │ │ ├── news_education_225.txt │ │ │ ├── news_education_226.txt │ │ │ ├── news_education_227.txt │ │ │ ├── news_education_228.txt │ │ │ ├── news_education_229.txt │ │ │ ├── news_education_230.txt │ │ │ ├── news_education_231.txt │ │ │ ├── news_education_232.txt │ │ │ ├── news_education_233.txt │ │ │ ├── news_education_234.txt │ │ │ ├── news_education_235.txt │ │ │ ├── news_education_236.txt │ │ │ ├── news_education_237.txt │ │ │ ├── news_education_238.txt │ │ │ ├── news_education_239.txt │ │ │ ├── news_education_240.txt │ │ │ ├── news_education_241.txt │ │ │ ├── news_education_242.txt │ │ │ ├── news_education_243.txt │ │ │ ├── news_education_244.txt │ │ │ ├── news_education_245.txt │ │ │ ├── news_education_246.txt │ │ │ ├── news_education_247.txt │ │ │ ├── news_education_248.txt │ │ │ ├── news_education_249.txt │ │ │ ├── news_education_250.txt │ │ │ ├── news_education_251.txt │ │ │ ├── news_education_252.txt │ │ │ ├── news_education_253.txt │ │ │ ├── news_education_254.txt │ │ │ ├── news_education_255.txt │ │ │ ├── news_education_256.txt │ │ │ ├── news_education_257.txt │ │ │ ├── news_education_258.txt │ │ │ ├── news_education_259.txt │ │ │ ├── news_education_260.txt │ │ │ ├── news_education_261.txt │ │ │ ├── news_education_262.txt │ │ │ ├── news_education_263.txt │ │ │ ├── news_education_264.txt │ │ │ ├── news_education_265.txt │ │ │ ├── news_education_266.txt │ │ │ ├── news_education_267.txt │ │ │ ├── news_education_268.txt │ │ │ ├── news_education_269.txt │ │ │ ├── news_education_270.txt │ │ │ ├── news_education_271.txt │ │ │ ├── news_education_272.txt │ │ │ ├── news_entertainment_001.txt │ │ │ ├── news_entertainment_002.txt │ │ │ ├── news_entertainment_003.txt │ │ │ ├── news_entertainment_004.txt │ │ │ ├── news_entertainment_005.txt │ │ │ ├── news_entertainment_006.txt │ │ │ ├── news_entertainment_007.txt │ │ │ ├── news_entertainment_008.txt │ │ │ ├── news_entertainment_009.txt │ │ │ ├── news_entertainment_010.txt │ │ │ ├── news_entertainment_011.txt │ │ │ ├── news_entertainment_012.txt │ │ │ ├── news_entertainment_013.txt │ │ │ ├── news_entertainment_014.txt │ │ │ ├── news_entertainment_015.txt │ │ │ ├── news_entertainment_016.txt │ │ │ ├── news_entertainment_017.txt │ │ │ ├── news_entertainment_018.txt │ │ │ ├── news_entertainment_019.txt │ │ │ ├── news_entertainment_020.txt │ │ │ ├── news_entertainment_021.txt │ │ │ ├── news_entertainment_022.txt │ │ │ ├── news_entertainment_023.txt │ │ │ ├── news_entertainment_024.txt │ │ │ ├── news_entertainment_025.txt │ │ │ ├── news_entertainment_026.txt │ │ │ ├── news_entertainment_027.txt │ │ │ ├── news_entertainment_028.txt │ │ │ ├── news_entertainment_029.txt │ │ │ ├── news_entertainment_030.txt │ │ │ ├── news_entertainment_031.txt │ │ │ ├── news_entertainment_032.txt │ │ │ ├── news_entertainment_033.txt │ │ │ ├── news_entertainment_034.txt │ │ │ ├── news_entertainment_035.txt │ │ │ ├── news_entertainment_036.txt │ │ │ ├── news_entertainment_037.txt │ │ │ ├── news_entertainment_038.txt │ │ │ ├── news_entertainment_039.txt │ │ │ ├── news_entertainment_040.txt │ │ │ ├── news_entertainment_041.txt │ │ │ ├── news_entertainment_042.txt │ │ │ ├── news_entertainment_043.txt │ │ │ ├── news_entertainment_044.txt │ │ │ ├── news_entertainment_045.txt │ │ │ ├── news_entertainment_046.txt │ │ │ ├── news_entertainment_047.txt │ │ │ ├── news_entertainment_048.txt │ │ │ ├── news_entertainment_049.txt │ │ │ ├── news_entertainment_050.txt │ │ │ ├── news_entertainment_051.txt │ │ │ ├── news_entertainment_052.txt │ │ │ ├── news_entertainment_053.txt │ │ │ ├── news_entertainment_054.txt │ │ │ ├── news_entertainment_055.txt │ │ │ ├── news_entertainment_056.txt │ │ │ ├── news_entertainment_057.txt │ │ │ ├── news_entertainment_058.txt │ │ │ ├── news_entertainment_059.txt │ │ │ ├── news_entertainment_060.txt │ │ │ ├── news_entertainment_061.txt │ │ │ ├── news_entertainment_062.txt │ │ │ ├── news_entertainment_063.txt │ │ │ ├── news_entertainment_064.txt │ │ │ ├── news_entertainment_065.txt │ │ │ ├── news_entertainment_066.txt │ │ │ ├── news_entertainment_067.txt │ │ │ ├── news_entertainment_068.txt │ │ │ ├── news_entertainment_069.txt │ │ │ ├── news_entertainment_070.txt │ │ │ ├── news_entertainment_071.txt │ │ │ ├── news_entertainment_072.txt │ │ │ ├── news_entertainment_073.txt │ │ │ ├── news_entertainment_074.txt │ │ │ ├── news_entertainment_075.txt │ │ │ ├── news_entertainment_076.txt │ │ │ ├── news_entertainment_077.txt │ │ │ ├── news_entertainment_078.txt │ │ │ ├── news_entertainment_079.txt │ │ │ ├── news_entertainment_080.txt │ │ │ ├── news_entertainment_081.txt │ │ │ ├── news_entertainment_082.txt │ │ │ ├── news_entertainment_083.txt │ │ │ ├── news_entertainment_084.txt │ │ │ ├── news_entertainment_085.txt │ │ │ ├── news_entertainment_086.txt │ │ │ ├── news_entertainment_087.txt │ │ │ ├── news_entertainment_088.txt │ │ │ ├── news_entertainment_089.txt │ │ │ ├── news_entertainment_090.txt │ │ │ ├── news_entertainment_091.txt │ │ │ ├── news_entertainment_092.txt │ │ │ ├── news_entertainment_093.txt │ │ │ ├── news_entertainment_094.txt │ │ │ ├── news_entertainment_095.txt │ │ │ ├── news_entertainment_096.txt │ │ │ ├── news_entertainment_097.txt │ │ │ ├── news_entertainment_098.txt │ │ │ ├── news_entertainment_099.txt │ │ │ ├── news_entertainment_100.txt │ │ │ ├── news_entertainment_101.txt │ │ │ ├── news_entertainment_102.txt │ │ │ ├── news_entertainment_103.txt │ │ │ ├── news_entertainment_104.txt │ │ │ ├── news_entertainment_105.txt │ │ │ ├── news_entertainment_106.txt │ │ │ ├── news_entertainment_107.txt │ │ │ ├── news_entertainment_108.txt │ │ │ ├── news_entertainment_109.txt │ │ │ ├── news_entertainment_110.txt │ │ │ ├── news_entertainment_111.txt │ │ │ ├── news_entertainment_112.txt │ │ │ ├── news_entertainment_113.txt │ │ │ ├── news_entertainment_114.txt │ │ │ ├── news_entertainment_115.txt │ │ │ ├── news_entertainment_116.txt │ │ │ ├── news_entertainment_117.txt │ │ │ ├── news_entertainment_118.txt │ │ │ ├── news_entertainment_119.txt │ │ │ ├── news_entertainment_120.txt │ │ │ ├── news_entertainment_121.txt │ │ │ ├── news_entertainment_122.txt │ │ │ ├── news_entertainment_123.txt │ │ │ ├── news_entertainment_124.txt │ │ │ ├── news_entertainment_125.txt │ │ │ ├── news_entertainment_126.txt │ │ │ ├── news_entertainment_127.txt │ │ │ ├── news_entertainment_128.txt │ │ │ ├── news_entertainment_129.txt │ │ │ ├── news_entertainment_130.txt │ │ │ ├── news_entertainment_131.txt │ │ │ ├── news_entertainment_132.txt │ │ │ ├── news_entertainment_133.txt │ │ │ ├── news_entertainment_134.txt │ │ │ ├── news_entertainment_135.txt │ │ │ ├── news_entertainment_136.txt │ │ │ ├── news_entertainment_137.txt │ │ │ ├── news_entertainment_138.txt │ │ │ ├── news_entertainment_139.txt │ │ │ ├── news_entertainment_140.txt │ │ │ ├── news_entertainment_141.txt │ │ │ ├── news_entertainment_142.txt │ │ │ ├── news_entertainment_143.txt │ │ │ ├── news_entertainment_144.txt │ │ │ ├── news_entertainment_145.txt │ │ │ ├── news_entertainment_146.txt │ │ │ ├── news_entertainment_147.txt │ │ │ ├── news_entertainment_148.txt │ │ │ ├── news_entertainment_149.txt │ │ │ ├── news_entertainment_150.txt │ │ │ ├── news_entertainment_151.txt │ │ │ ├── news_entertainment_152.txt │ │ │ ├── news_entertainment_153.txt │ │ │ ├── news_entertainment_154.txt │ │ │ ├── news_entertainment_155.txt │ │ │ ├── news_entertainment_156.txt │ │ │ ├── news_entertainment_157.txt │ │ │ ├── news_entertainment_158.txt │ │ │ ├── news_entertainment_159.txt │ │ │ ├── news_entertainment_160.txt │ │ │ ├── news_entertainment_161.txt │ │ │ ├── news_entertainment_162.txt │ │ │ ├── news_entertainment_163.txt │ │ │ ├── news_entertainment_164.txt │ │ │ ├── news_entertainment_165.txt │ │ │ ├── news_entertainment_166.txt │ │ │ ├── news_entertainment_167.txt │ │ │ ├── news_entertainment_168.txt │ │ │ ├── news_entertainment_169.txt │ │ │ ├── news_entertainment_170.txt │ │ │ ├── news_entertainment_171.txt │ │ │ ├── news_entertainment_172.txt │ │ │ ├── news_entertainment_173.txt │ │ │ ├── news_entertainment_174.txt │ │ │ ├── news_entertainment_175.txt │ │ │ ├── news_entertainment_176.txt │ │ │ ├── news_entertainment_177.txt │ │ │ ├── news_entertainment_178.txt │ │ │ ├── news_entertainment_179.txt │ │ │ ├── news_entertainment_180.txt │ │ │ ├── news_entertainment_181.txt │ │ │ ├── news_entertainment_182.txt │ │ │ ├── news_entertainment_183.txt │ │ │ ├── news_entertainment_184.txt │ │ │ ├── news_entertainment_185.txt │ │ │ ├── news_entertainment_186.txt │ │ │ ├── news_entertainment_187.txt │ │ │ ├── news_entertainment_188.txt │ │ │ ├── news_entertainment_189.txt │ │ │ ├── news_entertainment_190.txt │ │ │ ├── news_entertainment_191.txt │ │ │ ├── news_entertainment_192.txt │ │ │ ├── news_entertainment_193.txt │ │ │ ├── news_entertainment_194.txt │ │ │ ├── news_entertainment_195.txt │ │ │ ├── news_entertainment_196.txt │ │ │ ├── news_entertainment_197.txt │ │ │ ├── news_entertainment_198.txt │ │ │ ├── news_entertainment_199.txt │ │ │ ├── news_entertainment_200.txt │ │ │ ├── news_entertainment_201.txt │ │ │ ├── news_entertainment_202.txt │ │ │ ├── news_entertainment_203.txt │ │ │ ├── news_entertainment_204.txt │ │ │ ├── news_entertainment_205.txt │ │ │ ├── news_entertainment_206.txt │ │ │ ├── news_entertainment_207.txt │ │ │ ├── news_entertainment_208.txt │ │ │ ├── news_entertainment_209.txt │ │ │ ├── news_entertainment_210.txt │ │ │ ├── news_entertainment_211.txt │ │ │ ├── news_entertainment_212.txt │ │ │ ├── news_entertainment_213.txt │ │ │ ├── news_entertainment_214.txt │ │ │ ├── news_entertainment_215.txt │ │ │ ├── news_entertainment_216.txt │ │ │ ├── news_entertainment_217.txt │ │ │ ├── news_entertainment_218.txt │ │ │ ├── news_entertainment_219.txt │ │ │ ├── news_entertainment_220.txt │ │ │ ├── news_entertainment_221.txt │ │ │ ├── news_entertainment_222.txt │ │ │ ├── news_entertainment_223.txt │ │ │ ├── news_entertainment_224.txt │ │ │ ├── news_entertainment_225.txt │ │ │ ├── news_entertainment_226.txt │ │ │ ├── news_entertainment_227.txt │ │ │ ├── news_entertainment_228.txt │ │ │ ├── news_entertainment_229.txt │ │ │ ├── news_entertainment_230.txt │ │ │ ├── news_entertainment_231.txt │ │ │ ├── news_entertainment_232.txt │ │ │ ├── news_entertainment_233.txt │ │ │ ├── news_entertainment_234.txt │ │ │ ├── news_entertainment_235.txt │ │ │ ├── news_entertainment_236.txt │ │ │ ├── news_entertainment_237.txt │ │ │ ├── news_entertainment_238.txt │ │ │ ├── news_entertainment_239.txt │ │ │ ├── news_entertainment_240.txt │ │ │ ├── news_entertainment_241.txt │ │ │ ├── news_entertainment_242.txt │ │ │ ├── news_entertainment_243.txt │ │ │ ├── news_entertainment_244.txt │ │ │ ├── news_entertainment_245.txt │ │ │ ├── news_entertainment_246.txt │ │ │ ├── news_entertainment_247.txt │ │ │ ├── news_entertainment_248.txt │ │ │ ├── news_entertainment_249.txt │ │ │ ├── news_entertainment_250.txt │ │ │ ├── news_entertainment_251.txt │ │ │ ├── news_entertainment_252.txt │ │ │ ├── news_entertainment_253.txt │ │ │ ├── news_entertainment_254.txt │ │ │ ├── news_entertainment_255.txt │ │ │ ├── news_entertainment_256.txt │ │ │ ├── news_entertainment_257.txt │ │ │ ├── news_entertainment_258.txt │ │ │ ├── news_entertainment_259.txt │ │ │ ├── news_entertainment_260.txt │ │ │ ├── news_entertainment_261.txt │ │ │ ├── news_entertainment_262.txt │ │ │ ├── news_entertainment_263.txt │ │ │ ├── news_entertainment_264.txt │ │ │ ├── news_entertainment_265.txt │ │ │ ├── news_entertainment_266.txt │ │ │ ├── news_health_001.txt │ │ │ ├── news_health_002.txt │ │ │ ├── news_health_003.txt │ │ │ ├── news_health_004.txt │ │ │ ├── news_health_005.txt │ │ │ ├── news_health_006.txt │ │ │ ├── news_health_007.txt │ │ │ ├── news_health_008.txt │ │ │ ├── news_health_009.txt │ │ │ ├── news_health_010.txt │ │ │ ├── news_health_011.txt │ │ │ ├── news_health_012.txt │ │ │ ├── news_health_013.txt │ │ │ ├── news_health_014.txt │ │ │ ├── news_health_015.txt │ │ │ ├── news_health_016.txt │ │ │ ├── news_health_017.txt │ │ │ ├── news_health_018.txt │ │ │ ├── news_health_019.txt │ │ │ ├── news_health_020.txt │ │ │ ├── news_health_021.txt │ │ │ ├── news_health_022.txt │ │ │ ├── news_health_023.txt │ │ │ ├── news_health_024.txt │ │ │ ├── news_health_025.txt │ │ │ ├── news_health_026.txt │ │ │ ├── news_health_027.txt │ │ │ ├── news_health_028.txt │ │ │ ├── news_health_029.txt │ │ │ ├── news_health_030.txt │ │ │ ├── news_health_031.txt │ │ │ ├── news_health_032.txt │ │ │ ├── news_health_033.txt │ │ │ ├── news_health_034.txt │ │ │ ├── news_health_035.txt │ │ │ ├── news_health_036.txt │ │ │ ├── news_health_037.txt │ │ │ ├── news_health_038.txt │ │ │ ├── news_health_039.txt │ │ │ ├── news_health_040.txt │ │ │ ├── news_health_041.txt │ │ │ ├── news_health_042.txt │ │ │ ├── news_health_043.txt │ │ │ ├── news_health_044.txt │ │ │ ├── news_health_045.txt │ │ │ ├── news_health_046.txt │ │ │ ├── news_health_047.txt │ │ │ ├── news_health_048.txt │ │ │ ├── news_health_049.txt │ │ │ ├── news_health_050.txt │ │ │ ├── news_health_051.txt │ │ │ ├── news_health_052.txt │ │ │ ├── news_health_053.txt │ │ │ ├── news_health_054.txt │ │ │ ├── news_health_055.txt │ │ │ ├── news_health_056.txt │ │ │ ├── news_health_057.txt │ │ │ ├── news_health_058.txt │ │ │ ├── news_health_059.txt │ │ │ ├── news_health_060.txt │ │ │ ├── news_health_061.txt │ │ │ ├── news_health_062.txt │ │ │ ├── news_health_063.txt │ │ │ ├── news_health_064.txt │ │ │ ├── news_health_065.txt │ │ │ ├── news_health_066.txt │ │ │ ├── news_health_067.txt │ │ │ ├── news_health_068.txt │ │ │ ├── news_health_069.txt │ │ │ ├── news_health_070.txt │ │ │ ├── news_health_071.txt │ │ │ ├── news_health_072.txt │ │ │ ├── news_health_073.txt │ │ │ ├── news_health_074.txt │ │ │ ├── news_health_075.txt │ │ │ ├── news_health_076.txt │ │ │ ├── news_health_077.txt │ │ │ ├── news_health_078.txt │ │ │ ├── news_health_079.txt │ │ │ ├── news_health_080.txt │ │ │ ├── news_health_081.txt │ │ │ ├── news_health_082.txt │ │ │ ├── news_health_083.txt │ │ │ ├── news_health_084.txt │ │ │ ├── news_health_085.txt │ │ │ ├── news_health_086.txt │ │ │ ├── news_health_087.txt │ │ │ ├── news_health_088.txt │ │ │ ├── news_health_089.txt │ │ │ ├── news_health_090.txt │ │ │ ├── news_health_091.txt │ │ │ ├── news_health_092.txt │ │ │ ├── news_health_093.txt │ │ │ ├── news_health_094.txt │ │ │ ├── news_health_095.txt │ │ │ ├── news_health_096.txt │ │ │ ├── news_health_097.txt │ │ │ ├── news_health_098.txt │ │ │ ├── news_health_099.txt │ │ │ ├── news_health_100.txt │ │ │ ├── news_health_101.txt │ │ │ ├── news_health_102.txt │ │ │ ├── news_health_103.txt │ │ │ ├── news_health_104.txt │ │ │ ├── news_health_105.txt │ │ │ ├── news_health_106.txt │ │ │ ├── news_health_107.txt │ │ │ ├── news_health_108.txt │ │ │ ├── news_health_109.txt │ │ │ ├── news_health_110.txt │ │ │ ├── news_health_111.txt │ │ │ ├── news_health_112.txt │ │ │ ├── news_health_113.txt │ │ │ ├── news_health_114.txt │ │ │ ├── news_health_115.txt │ │ │ ├── news_health_116.txt │ │ │ ├── news_health_117.txt │ │ │ ├── news_health_118.txt │ │ │ ├── news_health_119.txt │ │ │ ├── news_health_120.txt │ │ │ ├── news_health_121.txt │ │ │ ├── news_health_122.txt │ │ │ ├── news_health_123.txt │ │ │ ├── news_health_124.txt │ │ │ ├── news_health_125.txt │ │ │ ├── news_health_126.txt │ │ │ ├── news_health_127.txt │ │ │ ├── news_health_128.txt │ │ │ ├── news_health_129.txt │ │ │ ├── news_health_130.txt │ │ │ ├── news_health_131.txt │ │ │ ├── news_health_132.txt │ │ │ ├── news_health_133.txt │ │ │ ├── news_health_134.txt │ │ │ ├── news_health_135.txt │ │ │ ├── news_health_136.txt │ │ │ ├── news_health_137.txt │ │ │ ├── news_health_138.txt │ │ │ ├── news_health_139.txt │ │ │ ├── news_health_140.txt │ │ │ ├── news_health_141.txt │ │ │ ├── news_health_142.txt │ │ │ ├── news_health_143.txt │ │ │ ├── news_health_144.txt │ │ │ ├── news_health_145.txt │ │ │ ├── news_health_146.txt │ │ │ ├── news_health_147.txt │ │ │ ├── news_health_148.txt │ │ │ ├── news_health_149.txt │ │ │ ├── news_health_150.txt │ │ │ ├── news_health_151.txt │ │ │ ├── news_health_152.txt │ │ │ ├── news_health_153.txt │ │ │ ├── news_health_154.txt │ │ │ ├── news_health_155.txt │ │ │ ├── news_health_156.txt │ │ │ ├── news_health_157.txt │ │ │ ├── news_health_158.txt │ │ │ ├── news_health_159.txt │ │ │ ├── news_health_160.txt │ │ │ ├── news_health_161.txt │ │ │ ├── news_health_162.txt │ │ │ ├── news_health_163.txt │ │ │ ├── news_health_164.txt │ │ │ ├── news_health_165.txt │ │ │ ├── news_health_166.txt │ │ │ ├── news_health_167.txt │ │ │ ├── news_health_168.txt │ │ │ ├── news_health_169.txt │ │ │ ├── news_health_170.txt │ │ │ ├── news_health_171.txt │ │ │ ├── news_health_172.txt │ │ │ ├── news_health_173.txt │ │ │ ├── news_health_174.txt │ │ │ ├── news_health_175.txt │ │ │ ├── news_health_176.txt │ │ │ ├── news_health_177.txt │ │ │ ├── news_health_178.txt │ │ │ ├── news_health_179.txt │ │ │ ├── news_health_180.txt │ │ │ ├── news_health_181.txt │ │ │ ├── news_health_182.txt │ │ │ ├── news_health_183.txt │ │ │ ├── news_health_184.txt │ │ │ ├── news_health_185.txt │ │ │ ├── news_health_186.txt │ │ │ ├── news_health_187.txt │ │ │ ├── news_health_188.txt │ │ │ ├── news_health_189.txt │ │ │ ├── news_health_190.txt │ │ │ ├── news_health_191.txt │ │ │ ├── news_health_192.txt │ │ │ ├── news_health_193.txt │ │ │ ├── news_health_194.txt │ │ │ ├── news_health_195.txt │ │ │ ├── news_health_196.txt │ │ │ ├── news_health_197.txt │ │ │ ├── news_health_198.txt │ │ │ ├── news_health_199.txt │ │ │ ├── news_health_200.txt │ │ │ ├── news_health_201.txt │ │ │ ├── news_health_202.txt │ │ │ ├── news_health_203.txt │ │ │ ├── news_health_204.txt │ │ │ ├── news_health_205.txt │ │ │ ├── news_health_206.txt │ │ │ ├── news_health_207.txt │ │ │ ├── news_health_208.txt │ │ │ ├── news_health_209.txt │ │ │ ├── news_health_210.txt │ │ │ ├── news_health_211.txt │ │ │ ├── news_health_212.txt │ │ │ ├── news_health_213.txt │ │ │ ├── news_health_214.txt │ │ │ ├── news_health_215.txt │ │ │ ├── news_health_216.txt │ │ │ ├── news_health_217.txt │ │ │ ├── news_health_218.txt │ │ │ ├── news_health_219.txt │ │ │ ├── news_health_220.txt │ │ │ ├── news_health_221.txt │ │ │ ├── news_health_222.txt │ │ │ ├── news_health_223.txt │ │ │ ├── news_health_224.txt │ │ │ ├── news_health_225.txt │ │ │ ├── news_health_226.txt │ │ │ ├── news_health_227.txt │ │ │ ├── news_health_228.txt │ │ │ ├── news_health_229.txt │ │ │ ├── news_health_230.txt │ │ │ ├── news_health_231.txt │ │ │ ├── news_health_232.txt │ │ │ ├── news_health_233.txt │ │ │ ├── news_health_234.txt │ │ │ ├── news_health_235.txt │ │ │ ├── news_health_236.txt │ │ │ ├── news_health_237.txt │ │ │ ├── news_health_238.txt │ │ │ ├── news_health_239.txt │ │ │ ├── news_health_240.txt │ │ │ ├── news_health_241.txt │ │ │ ├── news_health_242.txt │ │ │ ├── news_health_243.txt │ │ │ ├── news_health_244.txt │ │ │ ├── news_health_245.txt │ │ │ ├── news_health_246.txt │ │ │ ├── news_health_247.txt │ │ │ ├── news_health_248.txt │ │ │ ├── news_health_249.txt │ │ │ ├── news_health_250.txt │ │ │ ├── news_health_251.txt │ │ │ ├── news_health_252.txt │ │ │ ├── news_health_253.txt │ │ │ ├── news_health_254.txt │ │ │ ├── news_health_255.txt │ │ │ ├── news_health_256.txt │ │ │ ├── news_health_257.txt │ │ │ ├── news_health_258.txt │ │ │ ├── news_health_259.txt │ │ │ ├── news_health_260.txt │ │ │ ├── news_health_261.txt │ │ │ ├── news_health_262.txt │ │ │ ├── news_health_263.txt │ │ │ ├── news_health_264.txt │ │ │ ├── news_health_265.txt │ │ │ ├── news_health_266.txt │ │ │ ├── news_health_267.txt │ │ │ ├── news_health_268.txt │ │ │ ├── news_health_269.txt │ │ │ ├── news_science_001.txt │ │ │ ├── news_science_002.txt │ │ │ ├── news_science_003.txt │ │ │ ├── news_science_004.txt │ │ │ ├── news_science_005.txt │ │ │ ├── news_science_006.txt │ │ │ ├── news_science_007.txt │ │ │ ├── news_science_008.txt │ │ │ ├── news_science_009.txt │ │ │ ├── news_science_010.txt │ │ │ ├── news_science_011.txt │ │ │ ├── news_science_012.txt │ │ │ ├── news_science_013.txt │ │ │ ├── news_science_014.txt │ │ │ ├── news_science_015.txt │ │ │ ├── news_science_016.txt │ │ │ ├── news_science_017.txt │ │ │ ├── news_science_018.txt │ │ │ ├── news_science_019.txt │ │ │ ├── news_science_020.txt │ │ │ ├── news_science_021.txt │ │ │ ├── news_science_022.txt │ │ │ ├── news_science_023.txt │ │ │ ├── news_science_024.txt │ │ │ ├── news_science_025.txt │ │ │ ├── news_science_026.txt │ │ │ ├── news_science_027.txt │ │ │ ├── news_science_028.txt │ │ │ ├── news_science_029.txt │ │ │ ├── news_science_030.txt │ │ │ ├── news_science_031.txt │ │ │ ├── news_science_032.txt │ │ │ ├── news_science_033.txt │ │ │ ├── news_science_034.txt │ │ │ ├── news_science_035.txt │ │ │ ├── news_science_036.txt │ │ │ ├── news_science_037.txt │ │ │ ├── news_science_038.txt │ │ │ ├── news_science_039.txt │ │ │ ├── news_science_040.txt │ │ │ ├── news_science_041.txt │ │ │ ├── news_science_042.txt │ │ │ ├── news_science_043.txt │ │ │ ├── news_science_044.txt │ │ │ ├── news_science_045.txt │ │ │ ├── news_science_046.txt │ │ │ ├── news_science_047.txt │ │ │ ├── news_science_048.txt │ │ │ ├── news_science_049.txt │ │ │ ├── news_science_050.txt │ │ │ ├── news_science_051.txt │ │ │ ├── news_science_052.txt │ │ │ ├── news_science_053.txt │ │ │ ├── news_science_054.txt │ │ │ ├── news_science_055.txt │ │ │ ├── news_science_056.txt │ │ │ ├── news_science_057.txt │ │ │ ├── news_science_058.txt │ │ │ ├── news_science_059.txt │ │ │ ├── news_science_060.txt │ │ │ ├── news_science_061.txt │ │ │ ├── news_science_062.txt │ │ │ ├── news_science_063.txt │ │ │ ├── news_science_064.txt │ │ │ ├── news_science_065.txt │ │ │ ├── news_science_066.txt │ │ │ ├── news_science_067.txt │ │ │ ├── news_science_068.txt │ │ │ ├── news_science_069.txt │ │ │ ├── news_science_070.txt │ │ │ ├── news_science_071.txt │ │ │ ├── news_science_072.txt │ │ │ ├── news_science_073.txt │ │ │ ├── news_science_074.txt │ │ │ ├── news_science_075.txt │ │ │ ├── news_science_076.txt │ │ │ ├── news_science_077.txt │ │ │ ├── news_science_078.txt │ │ │ ├── news_science_079.txt │ │ │ ├── news_science_080.txt │ │ │ ├── news_science_081.txt │ │ │ ├── news_science_082.txt │ │ │ ├── news_science_083.txt │ │ │ ├── news_science_084.txt │ │ │ ├── news_science_085.txt │ │ │ ├── news_science_086.txt │ │ │ ├── news_science_087.txt │ │ │ ├── news_science_088.txt │ │ │ ├── news_science_089.txt │ │ │ ├── news_science_090.txt │ │ │ ├── news_science_091.txt │ │ │ ├── news_science_092.txt │ │ │ ├── news_science_093.txt │ │ │ ├── news_science_094.txt │ │ │ ├── news_science_095.txt │ │ │ ├── news_science_096.txt │ │ │ ├── news_science_097.txt │ │ │ ├── news_science_098.txt │ │ │ ├── news_science_099.txt │ │ │ ├── news_science_100.txt │ │ │ ├── news_science_101.txt │ │ │ ├── news_science_102.txt │ │ │ ├── news_science_103.txt │ │ │ ├── news_science_104.txt │ │ │ ├── news_science_105.txt │ │ │ ├── news_science_106.txt │ │ │ ├── news_science_107.txt │ │ │ ├── news_science_108.txt │ │ │ ├── news_science_109.txt │ │ │ ├── news_science_110.txt │ │ │ ├── news_science_111.txt │ │ │ ├── news_science_112.txt │ │ │ ├── news_science_113.txt │ │ │ ├── news_science_114.txt │ │ │ ├── news_science_115.txt │ │ │ ├── news_science_116.txt │ │ │ ├── news_science_117.txt │ │ │ ├── news_science_118.txt │ │ │ ├── news_science_119.txt │ │ │ ├── news_science_120.txt │ │ │ ├── news_science_121.txt │ │ │ ├── news_science_122.txt │ │ │ ├── news_science_123.txt │ │ │ ├── news_science_124.txt │ │ │ ├── news_science_125.txt │ │ │ ├── news_science_126.txt │ │ │ ├── news_science_127.txt │ │ │ ├── news_science_128.txt │ │ │ ├── news_science_129.txt │ │ │ ├── news_science_130.txt │ │ │ ├── news_science_131.txt │ │ │ ├── news_science_132.txt │ │ │ ├── news_science_133.txt │ │ │ ├── news_science_134.txt │ │ │ ├── news_science_135.txt │ │ │ ├── news_science_136.txt │ │ │ ├── news_science_137.txt │ │ │ ├── news_science_138.txt │ │ │ ├── news_science_139.txt │ │ │ ├── news_science_140.txt │ │ │ ├── news_science_141.txt │ │ │ ├── news_science_142.txt │ │ │ ├── news_science_143.txt │ │ │ ├── news_science_144.txt │ │ │ ├── news_science_145.txt │ │ │ ├── news_science_146.txt │ │ │ ├── news_science_147.txt │ │ │ ├── news_science_148.txt │ │ │ ├── news_science_149.txt │ │ │ ├── news_science_150.txt │ │ │ ├── news_science_151.txt │ │ │ ├── news_science_152.txt │ │ │ ├── news_science_153.txt │ │ │ ├── news_science_154.txt │ │ │ ├── news_science_155.txt │ │ │ ├── news_science_156.txt │ │ │ ├── news_science_157.txt │ │ │ ├── news_science_158.txt │ │ │ ├── news_science_159.txt │ │ │ ├── news_science_160.txt │ │ │ ├── news_science_161.txt │ │ │ ├── news_science_162.txt │ │ │ ├── news_science_163.txt │ │ │ ├── news_science_164.txt │ │ │ ├── news_science_165.txt │ │ │ ├── news_science_166.txt │ │ │ ├── news_science_167.txt │ │ │ ├── news_science_168.txt │ │ │ ├── news_science_169.txt │ │ │ ├── news_science_170.txt │ │ │ ├── news_science_171.txt │ │ │ ├── news_science_172.txt │ │ │ ├── news_science_173.txt │ │ │ ├── news_science_174.txt │ │ │ ├── news_science_175.txt │ │ │ ├── news_science_176.txt │ │ │ ├── news_science_177.txt │ │ │ ├── news_science_178.txt │ │ │ ├── news_science_179.txt │ │ │ ├── news_science_180.txt │ │ │ ├── news_science_181.txt │ │ │ ├── news_science_182.txt │ │ │ ├── news_science_183.txt │ │ │ ├── news_science_184.txt │ │ │ ├── news_science_185.txt │ │ │ ├── news_science_186.txt │ │ │ ├── news_science_187.txt │ │ │ ├── news_science_188.txt │ │ │ ├── news_science_189.txt │ │ │ ├── news_science_190.txt │ │ │ ├── news_science_191.txt │ │ │ ├── news_science_192.txt │ │ │ ├── news_science_193.txt │ │ │ ├── news_science_194.txt │ │ │ ├── news_science_195.txt │ │ │ ├── news_science_196.txt │ │ │ ├── news_science_197.txt │ │ │ ├── news_science_198.txt │ │ │ ├── news_science_199.txt │ │ │ ├── news_science_200.txt │ │ │ ├── news_science_201.txt │ │ │ ├── news_science_202.txt │ │ │ ├── news_science_203.txt │ │ │ ├── news_science_204.txt │ │ │ ├── news_science_205.txt │ │ │ ├── news_science_206.txt │ │ │ ├── news_science_207.txt │ │ │ ├── news_science_208.txt │ │ │ ├── news_science_209.txt │ │ │ ├── news_science_210.txt │ │ │ ├── news_science_211.txt │ │ │ ├── news_science_212.txt │ │ │ ├── news_science_213.txt │ │ │ ├── news_science_214.txt │ │ │ ├── news_science_215.txt │ │ │ ├── news_science_216.txt │ │ │ ├── news_science_217.txt │ │ │ ├── news_science_218.txt │ │ │ ├── news_science_219.txt │ │ │ ├── news_science_220.txt │ │ │ ├── news_science_221.txt │ │ │ ├── news_science_222.txt │ │ │ ├── news_science_223.txt │ │ │ ├── news_science_224.txt │ │ │ ├── news_science_225.txt │ │ │ ├── news_science_226.txt │ │ │ ├── news_science_227.txt │ │ │ ├── news_science_228.txt │ │ │ ├── news_science_229.txt │ │ │ ├── news_science_230.txt │ │ │ ├── news_science_231.txt │ │ │ ├── news_science_232.txt │ │ │ ├── news_science_233.txt │ │ │ ├── news_science_234.txt │ │ │ ├── news_science_235.txt │ │ │ ├── news_science_236.txt │ │ │ ├── news_science_237.txt │ │ │ ├── news_science_238.txt │ │ │ ├── news_science_239.txt │ │ │ ├── news_science_240.txt │ │ │ ├── news_science_241.txt │ │ │ ├── news_science_242.txt │ │ │ ├── news_science_243.txt │ │ │ ├── news_science_244.txt │ │ │ ├── news_science_245.txt │ │ │ ├── news_science_246.txt │ │ │ ├── news_science_247.txt │ │ │ ├── news_science_248.txt │ │ │ ├── news_science_249.txt │ │ │ ├── news_science_250.txt │ │ │ ├── news_science_251.txt │ │ │ ├── news_science_252.txt │ │ │ ├── news_science_253.txt │ │ │ ├── news_science_254.txt │ │ │ ├── news_science_255.txt │ │ │ ├── news_science_256.txt │ │ │ ├── news_science_257.txt │ │ │ ├── news_science_258.txt │ │ │ ├── news_science_259.txt │ │ │ ├── news_science_260.txt │ │ │ ├── news_science_261.txt │ │ │ ├── news_science_262.txt │ │ │ ├── news_science_263.txt │ │ │ ├── news_science_264.txt │ │ │ ├── news_science_265.txt │ │ │ ├── news_science_266.txt │ │ │ ├── news_science_267.txt │ │ │ ├── news_society_001.txt │ │ │ ├── news_society_002.txt │ │ │ ├── news_society_003.txt │ │ │ ├── news_society_004.txt │ │ │ ├── news_society_005.txt │ │ │ ├── news_society_006.txt │ │ │ ├── news_society_007.txt │ │ │ ├── news_society_008.txt │ │ │ ├── news_society_009.txt │ │ │ ├── news_society_010.txt │ │ │ ├── news_society_011.txt │ │ │ ├── news_society_012.txt │ │ │ ├── news_society_013.txt │ │ │ ├── news_society_014.txt │ │ │ ├── news_society_015.txt │ │ │ ├── news_society_016.txt │ │ │ ├── news_society_017.txt │ │ │ ├── news_society_018.txt │ │ │ ├── news_society_019.txt │ │ │ ├── news_society_020.txt │ │ │ ├── news_society_021.txt │ │ │ ├── news_society_022.txt │ │ │ ├── news_society_023.txt │ │ │ ├── news_society_024.txt │ │ │ ├── news_society_025.txt │ │ │ ├── news_society_026.txt │ │ │ ├── news_society_027.txt │ │ │ ├── news_society_028.txt │ │ │ ├── news_society_029.txt │ │ │ ├── news_society_030.txt │ │ │ ├── news_society_031.txt │ │ │ ├── news_society_032.txt │ │ │ ├── news_society_033.txt │ │ │ ├── news_society_034.txt │ │ │ ├── news_society_035.txt │ │ │ ├── news_society_036.txt │ │ │ ├── news_society_037.txt │ │ │ ├── news_society_038.txt │ │ │ ├── news_society_039.txt │ │ │ ├── news_society_040.txt │ │ │ ├── news_society_041.txt │ │ │ ├── news_society_042.txt │ │ │ ├── news_society_043.txt │ │ │ ├── news_society_044.txt │ │ │ ├── news_society_045.txt │ │ │ ├── news_society_046.txt │ │ │ ├── news_society_047.txt │ │ │ ├── news_society_048.txt │ │ │ ├── news_society_049.txt │ │ │ ├── news_society_050.txt │ │ │ ├── news_society_051.txt │ │ │ ├── news_society_052.txt │ │ │ ├── news_society_053.txt │ │ │ ├── news_society_054.txt │ │ │ ├── news_society_055.txt │ │ │ ├── news_society_056.txt │ │ │ ├── news_society_057.txt │ │ │ ├── news_society_058.txt │ │ │ ├── news_society_059.txt │ │ │ ├── news_society_060.txt │ │ │ ├── news_society_061.txt │ │ │ ├── news_society_062.txt │ │ │ ├── news_society_063.txt │ │ │ ├── news_society_064.txt │ │ │ ├── news_society_065.txt │ │ │ ├── news_society_066.txt │ │ │ ├── news_society_067.txt │ │ │ ├── news_society_068.txt │ │ │ ├── news_society_069.txt │ │ │ ├── news_society_070.txt │ │ │ ├── news_society_071.txt │ │ │ ├── news_society_072.txt │ │ │ ├── news_society_073.txt │ │ │ ├── news_society_074.txt │ │ │ ├── news_society_075.txt │ │ │ ├── news_society_076.txt │ │ │ ├── news_society_077.txt │ │ │ ├── news_society_078.txt │ │ │ ├── news_society_079.txt │ │ │ ├── news_society_080.txt │ │ │ ├── news_society_081.txt │ │ │ ├── news_society_082.txt │ │ │ ├── news_society_083.txt │ │ │ ├── news_society_084.txt │ │ │ ├── news_society_085.txt │ │ │ ├── news_society_086.txt │ │ │ ├── news_society_087.txt │ │ │ ├── news_society_088.txt │ │ │ ├── news_society_089.txt │ │ │ ├── news_society_090.txt │ │ │ ├── news_society_091.txt │ │ │ ├── news_society_092.txt │ │ │ ├── news_society_093.txt │ │ │ ├── news_society_094.txt │ │ │ ├── news_society_095.txt │ │ │ ├── news_society_096.txt │ │ │ ├── news_society_097.txt │ │ │ ├── news_society_098.txt │ │ │ ├── news_society_099.txt │ │ │ ├── news_society_100.txt │ │ │ ├── news_society_101.txt │ │ │ ├── news_society_102.txt │ │ │ ├── news_society_103.txt │ │ │ ├── news_society_104.txt │ │ │ ├── news_society_105.txt │ │ │ ├── news_society_106.txt │ │ │ ├── news_society_107.txt │ │ │ ├── news_society_108.txt │ │ │ ├── news_society_109.txt │ │ │ ├── news_society_110.txt │ │ │ ├── news_society_111.txt │ │ │ ├── news_society_112.txt │ │ │ ├── news_society_113.txt │ │ │ ├── news_society_114.txt │ │ │ ├── news_society_115.txt │ │ │ ├── news_society_116.txt │ │ │ ├── news_society_117.txt │ │ │ ├── news_society_118.txt │ │ │ ├── news_society_119.txt │ │ │ ├── news_society_120.txt │ │ │ ├── news_society_121.txt │ │ │ ├── news_society_122.txt │ │ │ ├── news_society_123.txt │ │ │ ├── news_society_124.txt │ │ │ ├── news_society_125.txt │ │ │ ├── news_society_126.txt │ │ │ ├── news_society_127.txt │ │ │ ├── news_society_128.txt │ │ │ ├── news_society_129.txt │ │ │ ├── news_society_130.txt │ │ │ ├── news_society_131.txt │ │ │ ├── news_society_132.txt │ │ │ ├── news_society_133.txt │ │ │ ├── news_society_134.txt │ │ │ ├── news_society_135.txt │ │ │ ├── news_society_136.txt │ │ │ ├── news_society_137.txt │ │ │ ├── news_society_138.txt │ │ │ ├── news_society_139.txt │ │ │ ├── news_society_140.txt │ │ │ ├── news_society_141.txt │ │ │ ├── news_society_142.txt │ │ │ ├── news_society_143.txt │ │ │ ├── news_society_144.txt │ │ │ ├── news_society_145.txt │ │ │ ├── news_society_146.txt │ │ │ ├── news_society_147.txt │ │ │ ├── news_society_148.txt │ │ │ ├── news_society_149.txt │ │ │ ├── news_society_150.txt │ │ │ ├── news_society_151.txt │ │ │ ├── news_society_152.txt │ │ │ ├── news_society_153.txt │ │ │ ├── news_society_154.txt │ │ │ ├── news_society_155.txt │ │ │ ├── news_society_156.txt │ │ │ ├── news_society_157.txt │ │ │ ├── news_society_158.txt │ │ │ ├── news_society_159.txt │ │ │ ├── news_society_160.txt │ │ │ ├── news_society_161.txt │ │ │ ├── news_society_162.txt │ │ │ ├── news_society_163.txt │ │ │ ├── news_society_164.txt │ │ │ ├── news_society_165.txt │ │ │ ├── news_society_166.txt │ │ │ ├── news_society_167.txt │ │ │ ├── news_society_168.txt │ │ │ ├── news_society_169.txt │ │ │ ├── news_society_170.txt │ │ │ ├── news_society_171.txt │ │ │ ├── news_society_172.txt │ │ │ ├── news_society_173.txt │ │ │ ├── news_society_174.txt │ │ │ ├── news_society_175.txt │ │ │ ├── news_society_176.txt │ │ │ ├── news_society_177.txt │ │ │ ├── news_society_178.txt │ │ │ ├── news_society_179.txt │ │ │ ├── news_society_180.txt │ │ │ ├── news_society_181.txt │ │ │ ├── news_society_182.txt │ │ │ ├── news_society_183.txt │ │ │ ├── news_society_184.txt │ │ │ ├── news_society_185.txt │ │ │ ├── news_society_186.txt │ │ │ ├── news_society_187.txt │ │ │ ├── news_society_188.txt │ │ │ ├── news_society_189.txt │ │ │ ├── news_society_190.txt │ │ │ ├── news_society_191.txt │ │ │ ├── news_society_192.txt │ │ │ ├── news_society_193.txt │ │ │ ├── news_society_194.txt │ │ │ ├── news_society_195.txt │ │ │ ├── news_society_196.txt │ │ │ ├── news_society_197.txt │ │ │ ├── news_society_198.txt │ │ │ ├── news_society_199.txt │ │ │ ├── news_society_200.txt │ │ │ ├── news_society_201.txt │ │ │ ├── news_society_202.txt │ │ │ ├── news_society_203.txt │ │ │ ├── news_society_204.txt │ │ │ ├── news_society_205.txt │ │ │ ├── news_society_206.txt │ │ │ ├── news_society_207.txt │ │ │ ├── news_society_208.txt │ │ │ ├── news_society_209.txt │ │ │ ├── news_society_210.txt │ │ │ ├── news_society_211.txt │ │ │ ├── news_society_212.txt │ │ │ ├── news_society_213.txt │ │ │ ├── news_society_214.txt │ │ │ ├── news_society_215.txt │ │ │ ├── news_society_216.txt │ │ │ ├── news_society_217.txt │ │ │ ├── news_society_218.txt │ │ │ ├── news_society_219.txt │ │ │ ├── news_society_220.txt │ │ │ ├── news_society_221.txt │ │ │ ├── news_society_222.txt │ │ │ ├── news_society_223.txt │ │ │ ├── news_society_224.txt │ │ │ ├── news_society_225.txt │ │ │ ├── news_society_226.txt │ │ │ ├── news_society_227.txt │ │ │ ├── news_society_228.txt │ │ │ ├── news_society_229.txt │ │ │ ├── news_society_230.txt │ │ │ ├── news_society_231.txt │ │ │ ├── news_society_232.txt │ │ │ ├── news_society_233.txt │ │ │ ├── news_society_234.txt │ │ │ ├── news_society_235.txt │ │ │ ├── news_society_236.txt │ │ │ ├── news_society_237.txt │ │ │ ├── news_society_238.txt │ │ │ ├── news_society_239.txt │ │ │ ├── news_society_240.txt │ │ │ ├── news_society_241.txt │ │ │ ├── news_society_242.txt │ │ │ ├── news_society_243.txt │ │ │ ├── news_society_244.txt │ │ │ ├── news_society_245.txt │ │ │ ├── news_society_246.txt │ │ │ ├── news_society_247.txt │ │ │ ├── news_society_248.txt │ │ │ ├── news_society_249.txt │ │ │ ├── news_society_250.txt │ │ │ ├── news_society_251.txt │ │ │ ├── news_society_252.txt │ │ │ ├── news_society_253.txt │ │ │ ├── news_society_254.txt │ │ │ ├── news_society_255.txt │ │ │ ├── news_society_256.txt │ │ │ ├── news_society_257.txt │ │ │ ├── news_society_258.txt │ │ │ ├── news_society_259.txt │ │ │ ├── news_society_260.txt │ │ │ ├── news_society_261.txt │ │ │ ├── news_society_262.txt │ │ │ ├── news_society_263.txt │ │ │ ├── news_society_264.txt │ │ │ ├── news_society_265.txt │ │ │ ├── news_society_266.txt │ │ │ ├── news_society_267.txt │ │ │ ├── news_society_268.txt │ │ │ ├── news_society_269.txt │ │ │ ├── news_society_270.txt │ │ │ ├── news_society_271.txt │ │ │ ├── news_sport_001.txt │ │ │ ├── news_sport_002.txt │ │ │ ├── news_sport_003.txt │ │ │ ├── news_sport_004.txt │ │ │ ├── news_sport_005.txt │ │ │ ├── news_sport_006.txt │ │ │ ├── news_sport_007.txt │ │ │ ├── news_sport_008.txt │ │ │ ├── news_sport_009.txt │ │ │ ├── news_sport_010.txt │ │ │ ├── news_sport_011.txt │ │ │ ├── news_sport_012.txt │ │ │ ├── news_sport_013.txt │ │ │ ├── news_sport_014.txt │ │ │ ├── news_sport_015.txt │ │ │ ├── news_sport_016.txt │ │ │ ├── news_sport_017.txt │ │ │ ├── news_sport_018.txt │ │ │ ├── news_sport_019.txt │ │ │ ├── news_sport_020.txt │ │ │ ├── news_sport_021.txt │ │ │ ├── news_sport_022.txt │ │ │ ├── news_sport_023.txt │ │ │ ├── news_sport_024.txt │ │ │ ├── news_sport_025.txt │ │ │ ├── news_sport_026.txt │ │ │ ├── news_sport_027.txt │ │ │ ├── news_sport_028.txt │ │ │ ├── news_sport_029.txt │ │ │ ├── news_sport_030.txt │ │ │ ├── news_sport_031.txt │ │ │ ├── news_sport_032.txt │ │ │ ├── news_sport_033.txt │ │ │ ├── news_sport_034.txt │ │ │ ├── news_sport_035.txt │ │ │ ├── news_sport_036.txt │ │ │ ├── news_sport_037.txt │ │ │ ├── news_sport_038.txt │ │ │ ├── news_sport_039.txt │ │ │ ├── news_sport_040.txt │ │ │ ├── news_sport_041.txt │ │ │ ├── news_sport_042.txt │ │ │ ├── news_sport_043.txt │ │ │ ├── news_sport_044.txt │ │ │ ├── news_sport_045.txt │ │ │ ├── news_sport_046.txt │ │ │ ├── news_sport_047.txt │ │ │ ├── news_sport_048.txt │ │ │ ├── news_sport_049.txt │ │ │ ├── news_sport_050.txt │ │ │ ├── news_sport_051.txt │ │ │ ├── news_sport_052.txt │ │ │ ├── news_sport_053.txt │ │ │ ├── news_sport_054.txt │ │ │ ├── news_sport_055.txt │ │ │ ├── news_sport_056.txt │ │ │ ├── news_sport_057.txt │ │ │ ├── news_sport_058.txt │ │ │ ├── news_sport_059.txt │ │ │ ├── news_sport_060.txt │ │ │ ├── news_sport_061.txt │ │ │ ├── news_sport_062.txt │ │ │ ├── news_sport_063.txt │ │ │ ├── news_sport_064.txt │ │ │ ├── news_sport_065.txt │ │ │ ├── news_sport_066.txt │ │ │ ├── news_sport_067.txt │ │ │ ├── news_sport_068.txt │ │ │ ├── news_sport_069.txt │ │ │ ├── news_sport_070.txt │ │ │ ├── news_sport_071.txt │ │ │ ├── news_sport_072.txt │ │ │ ├── news_sport_073.txt │ │ │ ├── news_sport_074.txt │ │ │ ├── news_sport_075.txt │ │ │ ├── news_sport_076.txt │ │ │ ├── news_sport_077.txt │ │ │ ├── news_sport_078.txt │ │ │ ├── news_sport_079.txt │ │ │ ├── news_sport_080.txt │ │ │ ├── news_sport_081.txt │ │ │ ├── news_sport_082.txt │ │ │ ├── news_sport_083.txt │ │ │ ├── news_sport_084.txt │ │ │ ├── news_sport_085.txt │ │ │ ├── news_sport_086.txt │ │ │ ├── news_sport_087.txt │ │ │ ├── news_sport_088.txt │ │ │ ├── news_sport_089.txt │ │ │ ├── news_sport_090.txt │ │ │ ├── news_sport_091.txt │ │ │ ├── news_sport_092.txt │ │ │ ├── news_sport_093.txt │ │ │ ├── news_sport_094.txt │ │ │ ├── news_sport_095.txt │ │ │ ├── news_sport_096.txt │ │ │ ├── news_sport_097.txt │ │ │ ├── news_sport_098.txt │ │ │ ├── news_sport_099.txt │ │ │ ├── news_sport_100.txt │ │ │ ├── news_sport_101.txt │ │ │ ├── news_sport_102.txt │ │ │ ├── news_sport_103.txt │ │ │ ├── news_sport_104.txt │ │ │ ├── news_sport_105.txt │ │ │ ├── news_sport_106.txt │ │ │ ├── news_sport_107.txt │ │ │ ├── news_sport_108.txt │ │ │ ├── news_sport_109.txt │ │ │ ├── news_sport_110.txt │ │ │ ├── news_sport_111.txt │ │ │ ├── news_sport_112.txt │ │ │ ├── news_sport_113.txt │ │ │ ├── news_sport_114.txt │ │ │ ├── news_sport_115.txt │ │ │ ├── news_sport_116.txt │ │ │ ├── news_sport_117.txt │ │ │ ├── news_sport_118.txt │ │ │ ├── news_sport_119.txt │ │ │ ├── news_sport_120.txt │ │ │ ├── news_sport_121.txt │ │ │ ├── news_sport_122.txt │ │ │ ├── news_sport_123.txt │ │ │ ├── news_sport_124.txt │ │ │ ├── news_sport_125.txt │ │ │ ├── news_sport_126.txt │ │ │ ├── news_sport_127.txt │ │ │ ├── news_sport_128.txt │ │ │ ├── news_sport_129.txt │ │ │ ├── news_sport_130.txt │ │ │ ├── news_sport_131.txt │ │ │ ├── news_sport_132.txt │ │ │ ├── news_sport_133.txt │ │ │ ├── news_sport_134.txt │ │ │ ├── news_sport_135.txt │ │ │ ├── news_sport_136.txt │ │ │ ├── news_sport_137.txt │ │ │ ├── news_sport_138.txt │ │ │ ├── news_sport_139.txt │ │ │ ├── news_sport_140.txt │ │ │ ├── news_sport_141.txt │ │ │ ├── news_sport_142.txt │ │ │ ├── news_sport_143.txt │ │ │ ├── news_sport_144.txt │ │ │ ├── news_sport_145.txt │ │ │ ├── news_sport_146.txt │ │ │ ├── news_sport_147.txt │ │ │ ├── news_sport_148.txt │ │ │ ├── news_sport_149.txt │ │ │ ├── news_sport_150.txt │ │ │ ├── news_sport_151.txt │ │ │ ├── news_sport_152.txt │ │ │ ├── news_sport_153.txt │ │ │ ├── news_sport_154.txt │ │ │ ├── news_sport_155.txt │ │ │ ├── news_sport_156.txt │ │ │ ├── news_sport_157.txt │ │ │ ├── news_sport_158.txt │ │ │ ├── news_sport_159.txt │ │ │ ├── news_sport_160.txt │ │ │ ├── news_sport_161.txt │ │ │ ├── news_sport_162.txt │ │ │ ├── news_sport_163.txt │ │ │ ├── news_sport_164.txt │ │ │ ├── news_sport_165.txt │ │ │ ├── news_sport_166.txt │ │ │ ├── news_sport_167.txt │ │ │ ├── news_sport_168.txt │ │ │ ├── news_sport_169.txt │ │ │ ├── news_sport_170.txt │ │ │ ├── news_sport_171.txt │ │ │ ├── news_sport_172.txt │ │ │ ├── news_sport_173.txt │ │ │ ├── news_sport_174.txt │ │ │ ├── news_sport_175.txt │ │ │ ├── news_sport_176.txt │ │ │ ├── news_sport_177.txt │ │ │ ├── news_sport_178.txt │ │ │ ├── news_sport_179.txt │ │ │ ├── news_sport_180.txt │ │ │ ├── news_sport_181.txt │ │ │ ├── news_sport_182.txt │ │ │ ├── news_sport_183.txt │ │ │ ├── news_sport_184.txt │ │ │ ├── news_sport_185.txt │ │ │ ├── news_sport_186.txt │ │ │ ├── news_sport_187.txt │ │ │ ├── news_sport_188.txt │ │ │ ├── news_sport_189.txt │ │ │ ├── news_sport_190.txt │ │ │ ├── news_sport_191.txt │ │ │ ├── news_sport_192.txt │ │ │ ├── news_sport_193.txt │ │ │ ├── news_sport_194.txt │ │ │ ├── news_sport_195.txt │ │ │ ├── news_sport_196.txt │ │ │ ├── news_sport_197.txt │ │ │ ├── news_sport_198.txt │ │ │ ├── news_sport_199.txt │ │ │ ├── news_sport_200.txt │ │ │ ├── news_sport_201.txt │ │ │ ├── news_sport_202.txt │ │ │ ├── news_sport_203.txt │ │ │ ├── news_sport_204.txt │ │ │ ├── news_sport_205.txt │ │ │ ├── news_sport_206.txt │ │ │ ├── news_sport_207.txt │ │ │ ├── news_sport_208.txt │ │ │ ├── news_sport_209.txt │ │ │ ├── news_sport_210.txt │ │ │ ├── news_sport_211.txt │ │ │ ├── news_sport_212.txt │ │ │ ├── news_sport_213.txt │ │ │ ├── news_sport_214.txt │ │ │ ├── news_sport_215.txt │ │ │ ├── news_sport_216.txt │ │ │ ├── news_sport_217.txt │ │ │ ├── news_sport_218.txt │ │ │ ├── news_sport_219.txt │ │ │ ├── news_sport_220.txt │ │ │ ├── news_sport_221.txt │ │ │ ├── news_sport_222.txt │ │ │ ├── news_sport_223.txt │ │ │ ├── news_sport_224.txt │ │ │ ├── news_sport_225.txt │ │ │ ├── news_sport_226.txt │ │ │ ├── news_sport_227.txt │ │ │ ├── news_sport_228.txt │ │ │ ├── news_sport_229.txt │ │ │ ├── news_sport_230.txt │ │ │ ├── news_sport_231.txt │ │ │ ├── news_sport_232.txt │ │ │ ├── news_sport_233.txt │ │ │ ├── news_sport_234.txt │ │ │ ├── news_sport_235.txt │ │ │ ├── news_sport_236.txt │ │ │ ├── news_sport_237.txt │ │ │ ├── news_sport_238.txt │ │ │ ├── news_sport_239.txt │ │ │ ├── news_sport_240.txt │ │ │ ├── news_sport_241.txt │ │ │ ├── news_sport_242.txt │ │ │ ├── news_sport_243.txt │ │ │ ├── news_sport_244.txt │ │ │ ├── news_sport_245.txt │ │ │ ├── news_sport_246.txt │ │ │ ├── news_sport_247.txt │ │ │ ├── news_sport_248.txt │ │ │ ├── news_sport_249.txt │ │ │ ├── news_sport_250.txt │ │ │ ├── news_sport_251.txt │ │ │ ├── news_sport_252.txt │ │ │ ├── news_sport_253.txt │ │ │ ├── news_sport_254.txt │ │ │ ├── news_sport_255.txt │ │ │ ├── news_sport_256.txt │ │ │ ├── news_sport_257.txt │ │ │ ├── news_sport_258.txt │ │ │ ├── news_sport_259.txt │ │ │ ├── news_sport_260.txt │ │ │ ├── news_sport_261.txt │ │ │ ├── news_sport_262.txt │ │ │ ├── news_sport_263.txt │ │ │ ├── news_sport_264.txt │ │ │ ├── news_sport_265.txt │ │ │ ├── news_sport_266.txt │ │ │ ├── news_sport_267.txt │ │ │ ├── news_tech_001.txt │ │ │ ├── news_tech_002.txt │ │ │ ├── news_tech_003.txt │ │ │ ├── news_tech_004.txt │ │ │ ├── news_tech_005.txt │ │ │ ├── news_tech_006.txt │ │ │ ├── news_tech_007.txt │ │ │ ├── news_tech_008.txt │ │ │ ├── news_tech_009.txt │ │ │ ├── news_tech_010.txt │ │ │ ├── news_tech_011.txt │ │ │ ├── news_tech_012.txt │ │ │ ├── news_tech_013.txt │ │ │ ├── news_tech_014.txt │ │ │ ├── news_tech_015.txt │ │ │ ├── news_tech_016.txt │ │ │ ├── news_tech_017.txt │ │ │ ├── news_tech_018.txt │ │ │ ├── news_tech_019.txt │ │ │ ├── news_tech_020.txt │ │ │ ├── news_tech_021.txt │ │ │ ├── news_tech_022.txt │ │ │ ├── news_tech_023.txt │ │ │ ├── news_tech_024.txt │ │ │ ├── news_tech_025.txt │ │ │ ├── news_tech_026.txt │ │ │ ├── news_tech_027.txt │ │ │ ├── news_tech_028.txt │ │ │ ├── news_tech_029.txt │ │ │ ├── news_tech_030.txt │ │ │ ├── news_tech_031.txt │ │ │ ├── news_tech_032.txt │ │ │ ├── news_tech_033.txt │ │ │ ├── news_tech_034.txt │ │ │ ├── news_tech_035.txt │ │ │ ├── news_tech_036.txt │ │ │ ├── news_tech_037.txt │ │ │ ├── news_tech_038.txt │ │ │ ├── news_tech_039.txt │ │ │ ├── news_tech_040.txt │ │ │ ├── news_tech_041.txt │ │ │ ├── news_tech_042.txt │ │ │ ├── news_tech_043.txt │ │ │ ├── news_tech_044.txt │ │ │ ├── news_tech_045.txt │ │ │ ├── news_tech_046.txt │ │ │ ├── news_tech_047.txt │ │ │ ├── news_tech_048.txt │ │ │ ├── news_tech_049.txt │ │ │ ├── news_tech_050.txt │ │ │ ├── news_tech_051.txt │ │ │ ├── news_tech_052.txt │ │ │ ├── news_tech_053.txt │ │ │ ├── news_tech_054.txt │ │ │ ├── news_tech_055.txt │ │ │ ├── news_tech_056.txt │ │ │ ├── news_tech_057.txt │ │ │ ├── news_tech_058.txt │ │ │ ├── news_tech_059.txt │ │ │ ├── news_tech_060.txt │ │ │ ├── news_tech_061.txt │ │ │ ├── news_tech_062.txt │ │ │ ├── news_tech_063.txt │ │ │ ├── news_tech_064.txt │ │ │ ├── news_tech_065.txt │ │ │ ├── news_tech_066.txt │ │ │ ├── news_tech_067.txt │ │ │ ├── news_tech_068.txt │ │ │ ├── news_tech_069.txt │ │ │ ├── news_tech_070.txt │ │ │ ├── news_tech_071.txt │ │ │ ├── news_tech_072.txt │ │ │ ├── news_tech_073.txt │ │ │ ├── news_tech_074.txt │ │ │ ├── news_tech_075.txt │ │ │ ├── news_tech_076.txt │ │ │ ├── news_tech_077.txt │ │ │ ├── news_tech_078.txt │ │ │ ├── news_tech_079.txt │ │ │ ├── news_tech_080.txt │ │ │ ├── news_tech_081.txt │ │ │ ├── news_tech_082.txt │ │ │ ├── news_tech_083.txt │ │ │ ├── news_tech_084.txt │ │ │ ├── news_tech_085.txt │ │ │ ├── news_tech_086.txt │ │ │ ├── news_tech_087.txt │ │ │ ├── news_tech_088.txt │ │ │ ├── news_tech_089.txt │ │ │ ├── news_tech_090.txt │ │ │ ├── news_tech_091.txt │ │ │ ├── news_tech_092.txt │ │ │ ├── news_tech_093.txt │ │ │ ├── news_tech_094.txt │ │ │ ├── news_tech_095.txt │ │ │ ├── news_tech_096.txt │ │ │ ├── news_tech_097.txt │ │ │ ├── news_tech_098.txt │ │ │ ├── news_tech_099.txt │ │ │ ├── news_tech_100.txt │ │ │ ├── news_tech_101.txt │ │ │ ├── news_tech_102.txt │ │ │ ├── news_tech_103.txt │ │ │ ├── news_tech_104.txt │ │ │ ├── news_tech_105.txt │ │ │ ├── news_tech_106.txt │ │ │ ├── news_tech_107.txt │ │ │ ├── news_tech_108.txt │ │ │ ├── news_tech_109.txt │ │ │ ├── news_tech_110.txt │ │ │ ├── news_tech_111.txt │ │ │ ├── news_tech_112.txt │ │ │ ├── news_tech_113.txt │ │ │ ├── news_tech_114.txt │ │ │ ├── news_tech_115.txt │ │ │ ├── news_tech_116.txt │ │ │ ├── news_tech_117.txt │ │ │ ├── news_tech_118.txt │ │ │ ├── news_tech_119.txt │ │ │ ├── news_tech_120.txt │ │ │ ├── news_tech_121.txt │ │ │ ├── news_tech_122.txt │ │ │ ├── news_tech_123.txt │ │ │ ├── news_tech_124.txt │ │ │ ├── news_tech_125.txt │ │ │ ├── news_tech_126.txt │ │ │ ├── news_tech_127.txt │ │ │ ├── news_tech_128.txt │ │ │ ├── news_tech_129.txt │ │ │ ├── news_tech_130.txt │ │ │ ├── news_tech_131.txt │ │ │ ├── news_tech_132.txt │ │ │ ├── news_tech_133.txt │ │ │ ├── news_tech_134.txt │ │ │ ├── news_tech_135.txt │ │ │ ├── news_tech_136.txt │ │ │ ├── news_tech_137.txt │ │ │ ├── news_tech_138.txt │ │ │ ├── news_tech_139.txt │ │ │ ├── news_tech_140.txt │ │ │ ├── news_tech_141.txt │ │ │ ├── news_tech_142.txt │ │ │ ├── news_tech_143.txt │ │ │ ├── news_tech_144.txt │ │ │ ├── news_tech_145.txt │ │ │ ├── news_tech_146.txt │ │ │ ├── news_tech_147.txt │ │ │ ├── news_tech_148.txt │ │ │ ├── news_tech_149.txt │ │ │ ├── news_tech_150.txt │ │ │ ├── news_tech_151.txt │ │ │ ├── news_tech_152.txt │ │ │ ├── news_tech_153.txt │ │ │ ├── news_tech_154.txt │ │ │ ├── news_tech_155.txt │ │ │ ├── news_tech_156.txt │ │ │ ├── news_tech_157.txt │ │ │ ├── news_tech_158.txt │ │ │ ├── news_tech_159.txt │ │ │ ├── news_tech_160.txt │ │ │ ├── news_tech_161.txt │ │ │ ├── news_tech_162.txt │ │ │ ├── news_tech_163.txt │ │ │ ├── news_tech_164.txt │ │ │ ├── news_tech_165.txt │ │ │ ├── news_tech_166.txt │ │ │ ├── news_tech_167.txt │ │ │ ├── news_tech_168.txt │ │ │ ├── news_tech_169.txt │ │ │ ├── news_tech_170.txt │ │ │ ├── news_tech_171.txt │ │ │ ├── news_tech_172.txt │ │ │ ├── news_tech_173.txt │ │ │ ├── news_tech_174.txt │ │ │ ├── news_tech_175.txt │ │ │ ├── news_tech_176.txt │ │ │ ├── news_tech_177.txt │ │ │ ├── news_tech_178.txt │ │ │ ├── news_tech_179.txt │ │ │ ├── news_tech_180.txt │ │ │ ├── news_tech_181.txt │ │ │ ├── news_tech_182.txt │ │ │ ├── news_tech_183.txt │ │ │ ├── news_tech_184.txt │ │ │ ├── news_tech_185.txt │ │ │ ├── news_tech_186.txt │ │ │ ├── news_tech_187.txt │ │ │ ├── news_tech_188.txt │ │ │ ├── news_tech_189.txt │ │ │ ├── news_tech_190.txt │ │ │ ├── news_tech_191.txt │ │ │ ├── news_tech_192.txt │ │ │ ├── news_tech_193.txt │ │ │ ├── news_tech_194.txt │ │ │ ├── news_tech_195.txt │ │ │ ├── news_tech_196.txt │ │ │ ├── news_tech_197.txt │ │ │ ├── news_tech_198.txt │ │ │ ├── news_tech_199.txt │ │ │ ├── news_tech_200.txt │ │ │ ├── news_tech_201.txt │ │ │ ├── news_tech_202.txt │ │ │ ├── news_tech_203.txt │ │ │ ├── news_tech_204.txt │ │ │ ├── news_tech_205.txt │ │ │ ├── news_tech_206.txt │ │ │ ├── news_tech_207.txt │ │ │ ├── news_tech_208.txt │ │ │ ├── news_tech_209.txt │ │ │ ├── news_tech_210.txt │ │ │ ├── news_tech_211.txt │ │ │ ├── news_tech_212.txt │ │ │ ├── news_tech_213.txt │ │ │ ├── news_tech_214.txt │ │ │ ├── news_tech_215.txt │ │ │ ├── news_tech_216.txt │ │ │ ├── news_tech_217.txt │ │ │ ├── news_tech_218.txt │ │ │ ├── news_tech_219.txt │ │ │ ├── news_tech_220.txt │ │ │ ├── news_tech_221.txt │ │ │ ├── news_tech_222.txt │ │ │ ├── news_tech_223.txt │ │ │ ├── news_tech_224.txt │ │ │ ├── news_tech_225.txt │ │ │ ├── news_tech_226.txt │ │ │ ├── news_tech_227.txt │ │ │ ├── news_tech_228.txt │ │ │ ├── news_tech_229.txt │ │ │ ├── news_tech_230.txt │ │ │ ├── news_tech_231.txt │ │ │ ├── news_tech_232.txt │ │ │ ├── news_tech_233.txt │ │ │ ├── news_tech_234.txt │ │ │ ├── news_tech_235.txt │ │ │ ├── news_tech_236.txt │ │ │ ├── news_tech_237.txt │ │ │ ├── news_tech_238.txt │ │ │ ├── news_tech_239.txt │ │ │ ├── news_tech_240.txt │ │ │ ├── news_tech_241.txt │ │ │ ├── news_tech_242.txt │ │ │ ├── news_tech_243.txt │ │ │ ├── news_tech_244.txt │ │ │ ├── news_tech_245.txt │ │ │ ├── news_tech_246.txt │ │ │ ├── news_tech_247.txt │ │ │ ├── news_tech_248.txt │ │ │ ├── news_tech_249.txt │ │ │ ├── news_tech_250.txt │ │ │ ├── news_tech_251.txt │ │ │ ├── news_tech_252.txt │ │ │ ├── news_tech_253.txt │ │ │ ├── news_tech_254.txt │ │ │ ├── news_tech_255.txt │ │ │ ├── news_tech_256.txt │ │ │ ├── news_tech_257.txt │ │ │ ├── news_tech_258.txt │ │ │ ├── news_tech_259.txt │ │ │ ├── news_tech_260.txt │ │ │ ├── news_tech_261.txt │ │ │ ├── news_tech_262.txt │ │ │ ├── news_tech_263.txt │ │ │ ├── news_tech_264.txt │ │ │ ├── news_tech_265.txt │ │ │ ├── news_tech_266.txt │ │ │ ├── news_tech_267.txt │ │ │ ├── news_tech_268.txt │ │ │ ├── news_tech_269.txt │ │ │ ├── news_travel_001.txt │ │ │ ├── news_travel_002.txt │ │ │ ├── news_travel_003.txt │ │ │ ├── news_travel_004.txt │ │ │ ├── news_travel_005.txt │ │ │ ├── news_travel_006.txt │ │ │ ├── news_travel_007.txt │ │ │ ├── news_travel_008.txt │ │ │ ├── news_travel_009.txt │ │ │ ├── news_travel_010.txt │ │ │ ├── news_travel_011.txt │ │ │ ├── news_travel_012.txt │ │ │ ├── news_travel_013.txt │ │ │ ├── news_travel_014.txt │ │ │ ├── news_travel_015.txt │ │ │ ├── news_travel_016.txt │ │ │ ├── news_travel_017.txt │ │ │ ├── news_travel_018.txt │ │ │ ├── news_travel_019.txt │ │ │ ├── news_travel_020.txt │ │ │ ├── news_travel_021.txt │ │ │ ├── news_travel_022.txt │ │ │ ├── news_travel_023.txt │ │ │ ├── news_travel_024.txt │ │ │ ├── news_travel_025.txt │ │ │ ├── news_travel_026.txt │ │ │ ├── news_travel_027.txt │ │ │ ├── news_travel_028.txt │ │ │ ├── news_travel_029.txt │ │ │ ├── news_travel_030.txt │ │ │ ├── news_travel_031.txt │ │ │ ├── news_travel_032.txt │ │ │ ├── news_travel_033.txt │ │ │ ├── news_travel_034.txt │ │ │ ├── news_travel_035.txt │ │ │ ├── news_travel_036.txt │ │ │ ├── news_travel_037.txt │ │ │ ├── news_travel_038.txt │ │ │ ├── news_travel_039.txt │ │ │ ├── news_travel_040.txt │ │ │ ├── news_travel_041.txt │ │ │ ├── news_travel_042.txt │ │ │ ├── news_travel_043.txt │ │ │ ├── news_travel_044.txt │ │ │ ├── news_travel_045.txt │ │ │ ├── news_travel_046.txt │ │ │ ├── news_travel_047.txt │ │ │ ├── news_travel_048.txt │ │ │ ├── news_travel_049.txt │ │ │ ├── news_travel_050.txt │ │ │ ├── news_travel_051.txt │ │ │ ├── news_travel_052.txt │ │ │ ├── news_travel_053.txt │ │ │ ├── news_travel_054.txt │ │ │ ├── news_travel_055.txt │ │ │ ├── news_travel_056.txt │ │ │ ├── news_travel_057.txt │ │ │ ├── news_travel_058.txt │ │ │ ├── news_travel_059.txt │ │ │ ├── news_travel_060.txt │ │ │ ├── news_travel_061.txt │ │ │ ├── news_travel_062.txt │ │ │ ├── news_travel_063.txt │ │ │ ├── news_travel_064.txt │ │ │ ├── news_travel_065.txt │ │ │ ├── news_travel_066.txt │ │ │ ├── news_travel_067.txt │ │ │ ├── news_travel_068.txt │ │ │ ├── news_travel_069.txt │ │ │ ├── news_travel_070.txt │ │ │ ├── news_travel_071.txt │ │ │ ├── news_travel_072.txt │ │ │ ├── news_travel_073.txt │ │ │ ├── news_travel_074.txt │ │ │ ├── news_travel_075.txt │ │ │ ├── news_travel_076.txt │ │ │ ├── news_travel_077.txt │ │ │ ├── news_travel_078.txt │ │ │ ├── news_travel_079.txt │ │ │ ├── news_travel_080.txt │ │ │ ├── news_travel_081.txt │ │ │ ├── news_travel_082.txt │ │ │ ├── news_travel_083.txt │ │ │ ├── news_travel_084.txt │ │ │ ├── news_travel_085.txt │ │ │ ├── news_travel_086.txt │ │ │ ├── news_travel_087.txt │ │ │ ├── news_travel_088.txt │ │ │ ├── news_travel_089.txt │ │ │ ├── news_travel_090.txt │ │ │ ├── news_travel_091.txt │ │ │ ├── news_travel_092.txt │ │ │ ├── news_travel_093.txt │ │ │ ├── news_travel_094.txt │ │ │ ├── news_travel_095.txt │ │ │ ├── news_travel_096.txt │ │ │ ├── news_travel_097.txt │ │ │ ├── news_travel_098.txt │ │ │ ├── news_travel_099.txt │ │ │ ├── news_travel_100.txt │ │ │ ├── news_travel_101.txt │ │ │ ├── news_travel_102.txt │ │ │ ├── news_travel_103.txt │ │ │ ├── news_travel_104.txt │ │ │ ├── news_travel_105.txt │ │ │ ├── news_travel_106.txt │ │ │ ├── news_travel_107.txt │ │ │ ├── news_travel_108.txt │ │ │ ├── news_travel_109.txt │ │ │ ├── news_travel_110.txt │ │ │ ├── news_travel_111.txt │ │ │ ├── news_travel_112.txt │ │ │ ├── news_travel_113.txt │ │ │ ├── news_travel_114.txt │ │ │ ├── news_travel_115.txt │ │ │ ├── news_travel_116.txt │ │ │ ├── news_travel_117.txt │ │ │ ├── news_travel_118.txt │ │ │ ├── news_travel_119.txt │ │ │ ├── news_travel_120.txt │ │ │ ├── news_travel_121.txt │ │ │ ├── news_travel_122.txt │ │ │ ├── news_travel_123.txt │ │ │ ├── news_travel_124.txt │ │ │ ├── news_travel_125.txt │ │ │ ├── news_travel_126.txt │ │ │ ├── news_travel_127.txt │ │ │ ├── news_travel_128.txt │ │ │ ├── news_travel_129.txt │ │ │ ├── news_travel_130.txt │ │ │ ├── news_travel_131.txt │ │ │ ├── news_travel_132.txt │ │ │ ├── news_travel_133.txt │ │ │ ├── news_travel_134.txt │ │ │ ├── news_travel_135.txt │ │ │ ├── news_travel_136.txt │ │ │ ├── news_travel_137.txt │ │ │ ├── news_travel_138.txt │ │ │ ├── news_travel_139.txt │ │ │ ├── news_travel_140.txt │ │ │ ├── news_travel_141.txt │ │ │ ├── news_travel_142.txt │ │ │ ├── news_travel_143.txt │ │ │ ├── news_travel_144.txt │ │ │ ├── news_travel_145.txt │ │ │ ├── news_travel_146.txt │ │ │ ├── news_travel_147.txt │ │ │ ├── news_travel_148.txt │ │ │ ├── news_travel_149.txt │ │ │ ├── news_travel_150.txt │ │ │ ├── news_travel_151.txt │ │ │ ├── news_travel_152.txt │ │ │ ├── news_travel_153.txt │ │ │ ├── news_travel_154.txt │ │ │ ├── news_travel_155.txt │ │ │ ├── news_travel_156.txt │ │ │ ├── news_travel_157.txt │ │ │ ├── news_travel_158.txt │ │ │ ├── news_travel_159.txt │ │ │ ├── news_travel_160.txt │ │ │ ├── news_travel_161.txt │ │ │ ├── news_travel_162.txt │ │ │ ├── news_travel_163.txt │ │ │ ├── news_travel_164.txt │ │ │ ├── news_travel_165.txt │ │ │ ├── news_travel_166.txt │ │ │ ├── news_travel_167.txt │ │ │ ├── news_travel_168.txt │ │ │ ├── news_travel_169.txt │ │ │ ├── news_travel_170.txt │ │ │ ├── news_travel_171.txt │ │ │ ├── news_travel_172.txt │ │ │ ├── news_travel_173.txt │ │ │ ├── news_travel_174.txt │ │ │ ├── news_travel_175.txt │ │ │ ├── news_travel_176.txt │ │ │ ├── news_travel_177.txt │ │ │ ├── news_travel_178.txt │ │ │ ├── news_travel_179.txt │ │ │ ├── news_travel_180.txt │ │ │ ├── news_travel_181.txt │ │ │ ├── news_travel_182.txt │ │ │ ├── news_travel_183.txt │ │ │ ├── news_travel_184.txt │ │ │ ├── news_travel_185.txt │ │ │ ├── news_travel_186.txt │ │ │ ├── news_travel_187.txt │ │ │ ├── news_travel_188.txt │ │ │ ├── news_travel_189.txt │ │ │ ├── news_travel_190.txt │ │ │ ├── news_travel_191.txt │ │ │ ├── news_travel_192.txt │ │ │ ├── news_travel_193.txt │ │ │ ├── news_travel_194.txt │ │ │ ├── news_travel_195.txt │ │ │ ├── news_travel_196.txt │ │ │ ├── news_travel_197.txt │ │ │ ├── news_travel_198.txt │ │ │ ├── news_travel_199.txt │ │ │ ├── news_travel_200.txt │ │ │ ├── news_travel_201.txt │ │ │ ├── news_travel_202.txt │ │ │ ├── news_travel_203.txt │ │ │ ├── news_travel_204.txt │ │ │ ├── news_travel_205.txt │ │ │ ├── news_travel_206.txt │ │ │ ├── news_travel_207.txt │ │ │ ├── news_travel_208.txt │ │ │ ├── news_travel_209.txt │ │ │ ├── news_travel_210.txt │ │ │ ├── news_travel_211.txt │ │ │ ├── news_travel_212.txt │ │ │ ├── news_travel_213.txt │ │ │ ├── news_travel_214.txt │ │ │ ├── news_travel_215.txt │ │ │ ├── news_travel_216.txt │ │ │ ├── news_travel_217.txt │ │ │ ├── news_travel_218.txt │ │ │ ├── news_travel_219.txt │ │ │ ├── news_travel_220.txt │ │ │ ├── news_travel_221.txt │ │ │ ├── news_travel_222.txt │ │ │ ├── news_travel_223.txt │ │ │ ├── news_travel_224.txt │ │ │ ├── news_travel_225.txt │ │ │ ├── news_travel_226.txt │ │ │ ├── news_travel_227.txt │ │ │ ├── news_travel_228.txt │ │ │ ├── news_travel_229.txt │ │ │ ├── news_travel_230.txt │ │ │ ├── news_travel_231.txt │ │ │ ├── news_travel_232.txt │ │ │ ├── news_travel_233.txt │ │ │ ├── news_travel_234.txt │ │ │ ├── news_travel_235.txt │ │ │ ├── news_travel_236.txt │ │ │ ├── news_travel_237.txt │ │ │ ├── news_travel_238.txt │ │ │ ├── news_travel_239.txt │ │ │ ├── news_travel_240.txt │ │ │ ├── news_travel_241.txt │ │ │ ├── news_travel_242.txt │ │ │ ├── news_travel_243.txt │ │ │ ├── news_travel_244.txt │ │ │ ├── news_travel_245.txt │ │ │ ├── news_travel_246.txt │ │ │ ├── news_travel_247.txt │ │ │ ├── news_travel_248.txt │ │ │ ├── news_travel_249.txt │ │ │ ├── news_travel_250.txt │ │ │ ├── news_travel_251.txt │ │ │ ├── news_world_001.txt │ │ │ ├── news_world_002.txt │ │ │ ├── news_world_003.txt │ │ │ ├── news_world_004.txt │ │ │ ├── news_world_005.txt │ │ │ ├── news_world_006.txt │ │ │ ├── news_world_007.txt │ │ │ ├── news_world_008.txt │ │ │ ├── news_world_009.txt │ │ │ ├── news_world_010.txt │ │ │ ├── news_world_011.txt │ │ │ ├── news_world_012.txt │ │ │ ├── news_world_013.txt │ │ │ ├── news_world_014.txt │ │ │ ├── news_world_015.txt │ │ │ ├── news_world_016.txt │ │ │ ├── news_world_017.txt │ │ │ ├── news_world_018.txt │ │ │ ├── news_world_019.txt │ │ │ ├── news_world_020.txt │ │ │ ├── news_world_021.txt │ │ │ ├── news_world_022.txt │ │ │ ├── news_world_023.txt │ │ │ ├── news_world_024.txt │ │ │ ├── news_world_025.txt │ │ │ ├── news_world_026.txt │ │ │ ├── news_world_027.txt │ │ │ ├── news_world_028.txt │ │ │ ├── news_world_029.txt │ │ │ ├── news_world_030.txt │ │ │ ├── news_world_031.txt │ │ │ ├── news_world_032.txt │ │ │ ├── news_world_033.txt │ │ │ ├── news_world_034.txt │ │ │ ├── news_world_035.txt │ │ │ ├── news_world_036.txt │ │ │ ├── news_world_037.txt │ │ │ ├── news_world_038.txt │ │ │ ├── news_world_039.txt │ │ │ ├── news_world_040.txt │ │ │ ├── news_world_041.txt │ │ │ ├── news_world_042.txt │ │ │ ├── news_world_043.txt │ │ │ ├── news_world_044.txt │ │ │ ├── news_world_045.txt │ │ │ ├── news_world_046.txt │ │ │ ├── news_world_047.txt │ │ │ ├── news_world_048.txt │ │ │ ├── news_world_049.txt │ │ │ ├── news_world_050.txt │ │ │ ├── news_world_051.txt │ │ │ ├── news_world_052.txt │ │ │ ├── news_world_053.txt │ │ │ ├── news_world_054.txt │ │ │ ├── news_world_055.txt │ │ │ ├── news_world_056.txt │ │ │ ├── news_world_057.txt │ │ │ ├── news_world_058.txt │ │ │ ├── news_world_059.txt │ │ │ ├── news_world_060.txt │ │ │ ├── news_world_061.txt │ │ │ ├── news_world_062.txt │ │ │ ├── news_world_063.txt │ │ │ ├── news_world_064.txt │ │ │ ├── news_world_065.txt │ │ │ ├── news_world_066.txt │ │ │ ├── news_world_067.txt │ │ │ ├── news_world_068.txt │ │ │ ├── news_world_069.txt │ │ │ ├── news_world_070.txt │ │ │ ├── news_world_071.txt │ │ │ ├── news_world_072.txt │ │ │ ├── news_world_073.txt │ │ │ ├── news_world_074.txt │ │ │ ├── news_world_075.txt │ │ │ ├── news_world_076.txt │ │ │ ├── news_world_077.txt │ │ │ ├── news_world_078.txt │ │ │ ├── news_world_079.txt │ │ │ ├── news_world_080.txt │ │ │ ├── news_world_081.txt │ │ │ ├── news_world_082.txt │ │ │ ├── news_world_083.txt │ │ │ ├── news_world_084.txt │ │ │ ├── news_world_085.txt │ │ │ ├── news_world_086.txt │ │ │ ├── news_world_087.txt │ │ │ ├── news_world_088.txt │ │ │ ├── news_world_089.txt │ │ │ ├── news_world_090.txt │ │ │ ├── news_world_091.txt │ │ │ ├── news_world_092.txt │ │ │ ├── news_world_093.txt │ │ │ ├── news_world_094.txt │ │ │ ├── news_world_095.txt │ │ │ ├── news_world_096.txt │ │ │ ├── news_world_097.txt │ │ │ ├── news_world_098.txt │ │ │ ├── news_world_099.txt │ │ │ ├── news_world_100.txt │ │ │ ├── news_world_101.txt │ │ │ ├── news_world_102.txt │ │ │ ├── news_world_103.txt │ │ │ ├── news_world_104.txt │ │ │ ├── news_world_105.txt │ │ │ ├── news_world_106.txt │ │ │ ├── news_world_107.txt │ │ │ ├── news_world_108.txt │ │ │ ├── news_world_109.txt │ │ │ ├── news_world_110.txt │ │ │ ├── news_world_111.txt │ │ │ ├── news_world_112.txt │ │ │ ├── news_world_113.txt │ │ │ ├── news_world_114.txt │ │ │ ├── news_world_115.txt │ │ │ ├── news_world_116.txt │ │ │ ├── news_world_117.txt │ │ │ ├── news_world_118.txt │ │ │ ├── news_world_119.txt │ │ │ ├── news_world_120.txt │ │ │ ├── news_world_121.txt │ │ │ ├── news_world_122.txt │ │ │ ├── news_world_123.txt │ │ │ ├── news_world_124.txt │ │ │ ├── news_world_125.txt │ │ │ ├── news_world_126.txt │ │ │ ├── news_world_127.txt │ │ │ ├── news_world_128.txt │ │ │ ├── news_world_129.txt │ │ │ ├── news_world_130.txt │ │ │ ├── news_world_131.txt │ │ │ ├── news_world_132.txt │ │ │ ├── news_world_133.txt │ │ │ ├── news_world_134.txt │ │ │ ├── news_world_135.txt │ │ │ ├── news_world_136.txt │ │ │ ├── news_world_137.txt │ │ │ ├── news_world_138.txt │ │ │ ├── news_world_139.txt │ │ │ ├── news_world_140.txt │ │ │ ├── news_world_141.txt │ │ │ ├── news_world_142.txt │ │ │ ├── news_world_143.txt │ │ │ ├── news_world_144.txt │ │ │ ├── news_world_145.txt │ │ │ ├── news_world_146.txt │ │ │ ├── news_world_147.txt │ │ │ ├── news_world_148.txt │ │ │ ├── news_world_149.txt │ │ │ ├── news_world_150.txt │ │ │ ├── news_world_151.txt │ │ │ ├── news_world_152.txt │ │ │ ├── news_world_153.txt │ │ │ ├── news_world_154.txt │ │ │ ├── news_world_155.txt │ │ │ ├── news_world_156.txt │ │ │ ├── news_world_157.txt │ │ │ ├── news_world_158.txt │ │ │ ├── news_world_159.txt │ │ │ ├── news_world_160.txt │ │ │ ├── news_world_161.txt │ │ │ ├── news_world_162.txt │ │ │ ├── news_world_163.txt │ │ │ ├── news_world_164.txt │ │ │ ├── news_world_165.txt │ │ │ ├── news_world_166.txt │ │ │ ├── news_world_167.txt │ │ │ ├── news_world_168.txt │ │ │ ├── news_world_169.txt │ │ │ ├── news_world_170.txt │ │ │ ├── news_world_171.txt │ │ │ ├── news_world_172.txt │ │ │ ├── news_world_173.txt │ │ │ ├── news_world_174.txt │ │ │ ├── news_world_175.txt │ │ │ ├── news_world_176.txt │ │ │ ├── news_world_177.txt │ │ │ ├── news_world_178.txt │ │ │ ├── news_world_179.txt │ │ │ ├── news_world_180.txt │ │ │ ├── news_world_181.txt │ │ │ ├── news_world_182.txt │ │ │ ├── news_world_183.txt │ │ │ ├── news_world_184.txt │ │ │ ├── news_world_185.txt │ │ │ ├── news_world_186.txt │ │ │ ├── news_world_187.txt │ │ │ ├── news_world_188.txt │ │ │ ├── news_world_189.txt │ │ │ ├── news_world_190.txt │ │ │ ├── news_world_191.txt │ │ │ ├── news_world_192.txt │ │ │ ├── news_world_193.txt │ │ │ ├── news_world_194.txt │ │ │ ├── news_world_195.txt │ │ │ ├── news_world_196.txt │ │ │ ├── news_world_197.txt │ │ │ ├── news_world_198.txt │ │ │ ├── news_world_199.txt │ │ │ ├── news_world_200.txt │ │ │ ├── news_world_201.txt │ │ │ ├── news_world_202.txt │ │ │ ├── news_world_203.txt │ │ │ ├── news_world_204.txt │ │ │ ├── news_world_205.txt │ │ │ ├── news_world_206.txt │ │ │ ├── news_world_207.txt │ │ │ ├── news_world_208.txt │ │ │ ├── news_world_209.txt │ │ │ ├── news_world_210.txt │ │ │ ├── news_world_211.txt │ │ │ ├── news_world_212.txt │ │ │ ├── news_world_213.txt │ │ │ ├── news_world_214.txt │ │ │ ├── news_world_215.txt │ │ │ ├── news_world_216.txt │ │ │ ├── news_world_217.txt │ │ │ ├── news_world_218.txt │ │ │ ├── news_world_219.txt │ │ │ ├── news_world_220.txt │ │ │ ├── news_world_221.txt │ │ │ ├── news_world_222.txt │ │ │ ├── news_world_223.txt │ │ │ ├── news_world_224.txt │ │ │ ├── news_world_225.txt │ │ │ ├── news_world_226.txt │ │ │ ├── news_world_227.txt │ │ │ ├── news_world_228.txt │ │ │ ├── news_world_229.txt │ │ │ ├── news_world_230.txt │ │ │ ├── news_world_231.txt │ │ │ ├── news_world_232.txt │ │ │ ├── news_world_233.txt │ │ │ ├── news_world_234.txt │ │ │ ├── news_world_235.txt │ │ │ ├── news_world_236.txt │ │ │ ├── news_world_237.txt │ │ │ ├── news_world_238.txt │ │ │ ├── news_world_239.txt │ │ │ ├── news_world_240.txt │ │ │ ├── news_world_241.txt │ │ │ ├── news_world_242.txt │ │ │ ├── news_world_243.txt │ │ │ ├── news_world_244.txt │ │ │ ├── news_world_245.txt │ │ │ ├── news_world_246.txt │ │ │ ├── news_world_247.txt │ │ │ ├── news_world_248.txt │ │ │ ├── news_world_249.txt │ │ │ ├── news_world_250.txt │ │ │ ├── news_world_251.txt │ │ │ ├── news_world_252.txt │ │ │ ├── news_world_253.txt │ │ │ ├── news_world_254.txt │ │ │ ├── news_world_255.txt │ │ │ ├── news_world_256.txt │ │ │ ├── news_world_257.txt │ │ │ ├── news_world_258.txt │ │ │ ├── news_world_259.txt │ │ │ ├── news_world_260.txt │ │ │ ├── news_world_261.txt │ │ │ ├── news_world_262.txt │ │ │ ├── news_world_263.txt │ │ │ ├── news_world_264.txt │ │ │ ├── news_world_265.txt │ │ │ ├── news_world_266.txt │ │ │ ├── news_world_267.txt │ │ │ └── news_world_268.txt │ ├── metadata.yaml │ └── scripts │ │ ├── build.py │ │ ├── clean.py │ │ ├── crawl.py │ │ └── merge_corpus.py ├── CP_Vietnamese-VLC │ ├── README.md │ ├── REFERENCES.md │ ├── corpus │ │ ├── bo-luat-dan-su.txt │ │ ├── bo-luat-hang-hai.txt │ │ ├── bo-luat-hinh-su.txt │ │ ├── bo-luat-lao-dong.txt │ │ ├── bo-luat-to-tung-dan-su.txt │ │ ├── bo-luat-to-tung-hinh-su.txt │ │ ├── hien-phap.txt │ │ ├── luat-an-ninh-quoc-gia.txt │ │ ├── luat-ban-hanh-van-ban-quy-pham-phap-luat.txt │ │ ├── luat-bao-chi.txt │ │ ├── luat-bao-hiem-xa-hoi.txt │ │ ├── luat-bao-ve-cham-soc-va-giao-duc-tre-em.txt │ │ ├── luat-bao-ve-moi-truong.txt │ │ ├── luat-bao-ve-suc-khoe-nhan-dan.txt │ │ ├── luat-bao-ve-va-phat-trien-rung.txt │ │ ├── luat-bau-cu-dai-bieu-hdnd.txt │ │ ├── luat-bau-cu-dai-bieu-quoc-hoi.txt │ │ ├── luat-bien-gioi-quoc-gia.txt │ │ ├── luat-binh-dang-gioi.txt │ │ ├── luat-cac-cong-cu-chuyen-nhuong.txt │ │ ├── luat-cac-to-chuc-tin-dung.txt │ │ ├── luat-cai-cach-ruong-dat.txt │ │ ├── luat-canh-tranh.txt │ │ ├── luat-chung-khoan.txt │ │ ├── luat-chuyen-giao-cong-nghe.txt │ │ ├── luat-cong-an-nhan-dan.txt │ │ ├── luat-cong-chung.txt │ │ ├── luat-cong-doan.txt │ │ ├── luat-cong-nghe-thong-tin.txt │ │ ├── luat-cong-ty.txt │ │ ├── luat-cu-tru.txt │ │ ├── luat-dam-bao-quyen-tu-do-than-the-va-quyen-bat-kha-xam-pham-doi-voi-nha-o-do-vat-thu-tin-cua-nhan-dan.txt │ │ ├── luat-dat-dai.txt │ │ ├── luat-dau-khi.txt │ │ ├── luat-dau-thau.txt │ │ ├── luat-dau-tu-nuoc-ngoai-tai-viet-nam.txt │ │ ├── luat-dau-tu.txt │ │ ├── luat-day-nghe.txt │ │ ├── luat-de-dieu.txt │ │ ├── luat-di-san-van-hoa.txt │ │ ├── luat-dien-anh.txt │ │ ├── luat-dien-luc.txt │ │ ├── luat-doanh-nghiep-nha-nuoc.txt │ │ ├── luat-doanh-nghiep-tu-nhan.txt │ │ ├── luat-doanh-nghiep.txt │ │ ├── luat-du-lich.txt │ │ ├── luat-duoc.txt │ │ ├── luat-duong-sat.txt │ │ ├── luat-giao-dich-dien-tu.txt │ │ ├── luat-giao-duc.txt │ │ ├── luat-giao-thong-duong-bo.txt │ │ ├── luat-giao-thong-duong-thuy-noi-dia.txt │ │ ├── luat-hai-quan.txt │ │ ├── luat-hang-khong-dan-dung-viet-nam.txt │ │ ├── luat-hien-ghep-lay-mo-bo-phan-co-the-nguoi-va-hien-lay-xac.txt │ │ ├── luat-hoat-dong-giam-sat-cua-quoc-hoi-va-hoi-dong-nhan-dan.txt │ │ ├── luat-hon-nhan-va-gia-dinh.txt │ │ ├── luat-hop-tac-xa.txt │ │ ├── luat-ke-toan.txt │ │ ├── luat-khieu-nai-to-cao.txt │ │ ├── luat-khoa-hoc-va-cong-nghe.txt │ │ ├── luat-khoang-san.txt │ │ ├── luat-khuyen-khich-dau-tu-trong-nuoc.txt │ │ ├── luat-kiem-toan-nha-nuoc.txt │ │ ├── luat-kinh-doanh-bao-hiem.txt │ │ ├── luat-kinh-doanh-bat-dong-san.txt │ │ ├── luat-ky-ket-gia-nhap-va-thuc-hien-dieu-uoc-quoc-te.txt │ │ ├── luat-luat-su.txt │ │ ├── luat-mat-tran-to-quoc-viet-nam.txt │ │ ├── luat-ngan-hang-nha-nuoc.txt │ │ ├── luat-ngan-sach-nha-nuoc.txt │ │ ├── luat-nghia-vu-quan-su.txt │ │ ├── luat-nguoi-lao-dong-viet-nam-di-lam-o-nuoc-ngoai-theo-hop-dong.txt │ │ ├── luat-nha-o.txt │ │ ├── luat-pha-san.txt │ │ ├── luat-pho-cap-giao-duc-tieu-hoc.txt │ │ ├── luat-phong-chay-chua-chay.txt │ │ ├── luat-phong-chong-ma-tuy.txt │ │ ├── luat-phong-chong-nhiem-virus-gay-ra-hoi-chung-suy-giam-mien-dich-mac-phai-o-nguoi-hiv-aids.txt │ │ ├── luat-phong-chong-tham-nhung.txt │ │ ├── luat-quan-ly-thue.txt │ │ ├── luat-quoc-phong.txt │ │ ├── luat-quoc-tich-viet-nam.txt │ │ ├── luat-quy-dinh-quyen-tu-do-hoi-hop.txt │ │ ├── luat-so-huu-tri-tue.txt │ │ ├── luat-sy-quan-quan-doi-nhan-dan-viet-nam.txt │ │ ├── luat-tai-nguyen-nuoc.txt │ │ ├── luat-thanh-nien.txt │ │ ├── luat-thanh-tra.txt │ │ ├── luat-the-duc-the-thao.txt │ │ ├── luat-thi-dua-khen-thuong.txt │ │ ├── luat-thong-ke.txt │ │ ├── luat-thuc-hanh-tiet-kiem-chong-lang-phi.txt │ │ ├── luat-thue-chuyen-quyen-su-dung-dat.txt │ │ ├── luat-thue-gia-tri-gia-tang.txt │ │ ├── luat-thue-su-dung-dat-nong-nghiep.txt │ │ ├── luat-thue-thu-nhap-doanh-nghiep.txt │ │ ├── luat-thue-tieu-thu-dac-biet.txt │ │ ├── luat-thue-xuat-khau-thue-nhap-khau.txt │ │ ├── luat-thuong-mai.txt │ │ ├── luat-thuy-san.txt │ │ ├── luat-tieu-chuan-va-quy-chuan-ky-thuat.txt │ │ ├── luat-to-chuc-chinh-phu.txt │ │ ├── luat-to-chuc-hoi-dong-nhan-dan-va-uy-ban-nhan-dan.txt │ │ ├── luat-to-chuc-quoc-hoi.txt │ │ ├── luat-to-chuc-toa-an-nhan-dan.txt │ │ ├── luat-to-chuc-vien-kiem-sat-nhan-dan.txt │ │ ├── luat-tro-giup-phap-ly.txt │ │ ├── luat-xay-dung.txt │ │ └── luat-xuat-ban.txt │ ├── datasets │ │ └── CP_Vietnamese-VLC │ │ │ ├── bo-luat-dan-su.txt │ │ │ ├── bo-luat-hang-hai.txt │ │ │ ├── bo-luat-hinh-su.txt │ │ │ ├── bo-luat-lao-dong.txt │ │ │ ├── bo-luat-to-tung-dan-su.txt │ │ │ ├── bo-luat-to-tung-hinh-su.txt │ │ │ ├── hien-phap.txt │ │ │ ├── luat-an-ninh-quoc-gia.txt │ │ │ ├── luat-ban-hanh-van-ban-quy-pham-phap-luat.txt │ │ │ ├── luat-bao-chi.txt │ │ │ ├── luat-bao-hiem-xa-hoi.txt │ │ │ ├── luat-bao-ve-cham-soc-va-giao-duc-tre-em.txt │ │ │ ├── luat-bao-ve-moi-truong.txt │ │ │ ├── luat-bao-ve-suc-khoe-nhan-dan.txt │ │ │ ├── luat-bao-ve-va-phat-trien-rung.txt │ │ │ ├── luat-bau-cu-dai-bieu-hdnd.txt │ │ │ ├── luat-bau-cu-dai-bieu-quoc-hoi.txt │ │ │ ├── luat-bien-gioi-quoc-gia.txt │ │ │ ├── luat-binh-dang-gioi.txt │ │ │ ├── luat-cac-cong-cu-chuyen-nhuong.txt │ │ │ ├── luat-cac-to-chuc-tin-dung.txt │ │ │ ├── luat-cai-cach-ruong-dat.txt │ │ │ ├── luat-canh-tranh.txt │ │ │ ├── luat-chung-khoan.txt │ │ │ ├── luat-chuyen-giao-cong-nghe.txt │ │ │ ├── luat-cong-an-nhan-dan.txt │ │ │ ├── luat-cong-chung.txt │ │ │ ├── luat-cong-doan.txt │ │ │ ├── luat-cong-nghe-thong-tin.txt │ │ │ ├── luat-cong-ty.txt │ │ │ ├── luat-cu-tru.txt │ │ │ ├── luat-dam-bao-quyen-tu-do-than-the-va-quyen-bat-kha-xam-pham-doi-voi-nha-o-do-vat-thu-tin-cua-nhan-dan.txt │ │ │ ├── luat-dat-dai.txt │ │ │ ├── luat-dau-khi.txt │ │ │ ├── luat-dau-thau.txt │ │ │ ├── luat-dau-tu-nuoc-ngoai-tai-viet-nam.txt │ │ │ ├── luat-dau-tu.txt │ │ │ ├── luat-day-nghe.txt │ │ │ ├── luat-de-dieu.txt │ │ │ ├── luat-di-san-van-hoa.txt │ │ │ ├── luat-dien-anh.txt │ │ │ ├── luat-dien-luc.txt │ │ │ ├── luat-doanh-nghiep-nha-nuoc.txt │ │ │ ├── luat-doanh-nghiep-tu-nhan.txt │ │ │ ├── luat-doanh-nghiep.txt │ │ │ ├── luat-du-lich.txt │ │ │ ├── luat-duoc.txt │ │ │ ├── luat-duong-sat.txt │ │ │ ├── luat-giao-dich-dien-tu.txt │ │ │ ├── luat-giao-duc.txt │ │ │ ├── luat-giao-thong-duong-bo.txt │ │ │ ├── luat-giao-thong-duong-thuy-noi-dia.txt │ │ │ ├── luat-hai-quan.txt │ │ │ ├── luat-hang-khong-dan-dung-viet-nam.txt │ │ │ ├── luat-hien-ghep-lay-mo-bo-phan-co-the-nguoi-va-hien-lay-xac.txt │ │ │ ├── luat-hoat-dong-giam-sat-cua-quoc-hoi-va-hoi-dong-nhan-dan.txt │ │ │ ├── luat-hon-nhan-va-gia-dinh.txt │ │ │ ├── luat-hop-tac-xa.txt │ │ │ ├── luat-ke-toan.txt │ │ │ ├── luat-khieu-nai-to-cao.txt │ │ │ ├── luat-khoa-hoc-va-cong-nghe.txt │ │ │ ├── luat-khoang-san.txt │ │ │ ├── luat-khuyen-khich-dau-tu-trong-nuoc.txt │ │ │ ├── luat-kiem-toan-nha-nuoc.txt │ │ │ ├── luat-kinh-doanh-bao-hiem.txt │ │ │ ├── luat-kinh-doanh-bat-dong-san.txt │ │ │ ├── luat-ky-ket-gia-nhap-va-thuc-hien-dieu-uoc-quoc-te.txt │ │ │ ├── luat-luat-su.txt │ │ │ ├── luat-mat-tran-to-quoc-viet-nam.txt │ │ │ ├── luat-ngan-hang-nha-nuoc.txt │ │ │ ├── luat-ngan-sach-nha-nuoc.txt │ │ │ ├── luat-nghia-vu-quan-su.txt │ │ │ ├── luat-nguoi-lao-dong-viet-nam-di-lam-o-nuoc-ngoai-theo-hop-dong.txt │ │ │ ├── luat-nha-o.txt │ │ │ ├── luat-pha-san.txt │ │ │ ├── luat-pho-cap-giao-duc-tieu-hoc.txt │ │ │ ├── luat-phong-chay-chua-chay.txt │ │ │ ├── luat-phong-chong-ma-tuy.txt │ │ │ ├── luat-phong-chong-nhiem-virus-gay-ra-hoi-chung-suy-giam-mien-dich-mac-phai-o-nguoi-hiv-aids.txt │ │ │ ├── luat-phong-chong-tham-nhung.txt │ │ │ ├── luat-quan-ly-thue.txt │ │ │ ├── luat-quoc-phong.txt │ │ │ ├── luat-quoc-tich-viet-nam.txt │ │ │ ├── luat-quy-dinh-quyen-tu-do-hoi-hop.txt │ │ │ ├── luat-so-huu-tri-tue.txt │ │ │ ├── luat-sy-quan-quan-doi-nhan-dan-viet-nam.txt │ │ │ ├── luat-tai-nguyen-nuoc.txt │ │ │ ├── luat-thanh-nien.txt │ │ │ ├── luat-thanh-tra.txt │ │ │ ├── luat-the-duc-the-thao.txt │ │ │ ├── luat-thi-dua-khen-thuong.txt │ │ │ ├── luat-thong-ke.txt │ │ │ ├── luat-thuc-hanh-tiet-kiem-chong-lang-phi.txt │ │ │ ├── luat-thue-chuyen-quyen-su-dung-dat.txt │ │ │ ├── luat-thue-gia-tri-gia-tang.txt │ │ │ ├── luat-thue-su-dung-dat-nong-nghiep.txt │ │ │ ├── luat-thue-thu-nhap-doanh-nghiep.txt │ │ │ ├── luat-thue-tieu-thu-dac-biet.txt │ │ │ ├── luat-thue-xuat-khau-thue-nhap-khau.txt │ │ │ ├── luat-thuong-mai.txt │ │ │ ├── luat-thuy-san.txt │ │ │ ├── luat-tieu-chuan-va-quy-chuan-ky-thuat.txt │ │ │ ├── luat-to-chuc-chinh-phu.txt │ │ │ ├── luat-to-chuc-hoi-dong-nhan-dan-va-uy-ban-nhan-dan.txt │ │ │ ├── luat-to-chuc-quoc-hoi.txt │ │ │ ├── luat-to-chuc-toa-an-nhan-dan.txt │ │ │ ├── luat-to-chuc-vien-kiem-sat-nhan-dan.txt │ │ │ ├── luat-tro-giup-phap-ly.txt │ │ │ ├── luat-xay-dung.txt │ │ │ └── luat-xuat-ban.txt │ └── metadata.yaml ├── DI_Vietnamese-UVD │ ├── .gitignore │ ├── README.md │ ├── corpus │ │ ├── README.md │ │ ├── data.yaml │ │ ├── dictionaries │ │ │ ├── hongocduc │ │ │ │ └── words.txt │ │ │ ├── tudientv │ │ │ │ └── words.txt │ │ │ └── wiktionary │ │ │ │ └── words.txt │ │ ├── dictionary │ │ │ └── words.txt │ │ └── underthesea_v170 │ │ │ ├── underthesea_dictionary.data │ │ │ └── underthesea_dictionary.yaml │ ├── datasets │ │ ├── DI_Vietnamese-UVD │ │ │ └── UVD.bin │ │ └── DI_Vietnamese-UVD_Light │ │ │ └── UVD-light.bin │ ├── docs │ │ ├── .~lock.word_classes.csv# │ │ ├── 2008 Vu - Nghiên cứu và xây dựng từ điển tiếng Việt cho máy tính - ICT08-VLSP-SP72.pdf │ │ ├── 2009 Vu - Hướng dẫn mô tả thông tin từ vựng trong từ điển dùng cho máy tính - SP72-Baocaokythuat2009thang3.pdf │ │ ├── 2013 La - Giáo trình tiếng Việt và tiếng Việt thực hành.pdf │ │ ├── Design.drawio │ │ ├── Design.mdj │ │ ├── ERROR_CODE.md │ │ ├── README.md │ │ ├── WORD CLASSES.md │ │ └── word_classes.csv │ ├── metadata.yaml │ └── scripts │ │ ├── __init__.py │ │ ├── analyze.py │ │ ├── app.py │ │ ├── build_datasets.py │ │ ├── correct_v1.0.alpha.py │ │ ├── data.py │ │ ├── download_hnd_data.py │ │ ├── import_hnd.py │ │ ├── merge_dictionary.py │ │ ├── test_data.py │ │ ├── test_dict.py │ │ ├── test_dict.yaml │ │ ├── text_dictionary.py │ │ ├── underthesea_v170_dictionary.py │ │ ├── validate.py │ │ └── validate_with_corpus.py ├── SE_Vietnamese-UBS │ ├── README.md │ ├── corpus │ │ ├── test.txt │ │ └── train.txt │ ├── datasets │ │ ├── SE_Vietnamese-UBS │ │ │ ├── test.txt │ │ │ └── train.txt │ │ └── TC_Vietnamese-UBC │ │ │ ├── test.txt │ │ │ └── train.txt │ ├── metadata.yaml │ └── scripts │ │ └── build.py └── W_MISCELLANEOUS │ ├── README.md │ ├── datasets │ └── VLSP2020_DP_SAMPLE │ │ ├── dev.txt │ │ ├── test.txt │ │ └── train.txt │ └── metadata.yaml └── tools ├── __init__.py ├── app ├── __init__.py ├── amr.html ├── amr │ └── js │ │ ├── jquery.min.js │ │ └── script.js ├── amr_editor_simple_tbd │ ├── css │ │ └── style.css │ ├── guide.html │ └── help.html ├── conll.html ├── conll │ ├── css │ │ ├── custom.css │ │ ├── images │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── jquery-ui-redmond.css │ │ ├── main.css │ │ └── style-vis.css │ ├── custom │ │ └── search.js │ ├── js │ │ ├── annodoc.js │ │ ├── config.js │ │ ├── conllu.js │ │ ├── head.load.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.min.js │ │ ├── jquery.svg.min.js │ │ ├── jquery.svgdom.min.js │ │ ├── waypoints.min.js │ │ └── webfont.js │ ├── lib │ │ ├── brat │ │ │ ├── annotation_log.js │ │ │ ├── configuration.js │ │ │ ├── dispatcher.js │ │ │ ├── url_monitor.js │ │ │ ├── util.js │ │ │ └── visualizer.js │ │ ├── conllu.js │ │ ├── ext │ │ │ ├── head.load.min.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.svg.min.js │ │ │ ├── jquery.svgdom.min.js │ │ │ ├── waypoints.min.js │ │ │ └── webfont.js │ │ └── local │ │ │ └── config.js │ └── static │ │ └── fonts │ │ ├── Liberation_Sans-Regular.ttf │ │ └── PT_Sans-Caption-Web-Regular.ttf ├── conll_search.html ├── conll_view.html ├── corpus.py ├── data.py ├── index.html ├── server.py ├── test_search.py └── tools │ ├── 01_auto_tag.py │ ├── 02_check_new_words.py │ ├── 03_stats.py │ ├── __init__.py │ ├── build_doc.py │ └── database.py ├── archive └── data │ ├── knowledge.sqlite │ ├── news │ └── data.yaml │ └── uts_corpus_v1.conllu ├── dicitonary.py ├── extras ├── README.md ├── UD_Vietnamese-VTB │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── README.md │ ├── eval.log │ ├── stats.xml │ ├── vi_vtb-ud-dev.conllu │ ├── vi_vtb-ud-test.conllu │ └── vi_vtb-ud-train.conllu ├── __init__.py ├── docs-automation │ └── codes_and_flags.yaml ├── tools │ ├── .gitignore │ ├── Graph.pm │ ├── LICENSE.txt │ ├── Node.pm │ ├── README.md │ ├── __init__.py │ ├── check-space-after-paragraph.pl │ ├── check_files.pl │ ├── check_overlaps.pl │ ├── check_sentence_ids.pl │ ├── check_text_wosp_match.sh │ ├── collect_propn_sequences.pl │ ├── compat │ │ ├── __init__.py │ │ └── argparse.py │ ├── conll_convert_tags_to_uposf.pl │ ├── conllu-copy-basic-to-enhanced.pl │ ├── conllu-dependency-stats.pl │ ├── conllu-formconvert.py │ ├── conllu-quick-fix-id-sequence.pl │ ├── conllu-quick-fix.pl │ ├── conllu-remove-enhanced-deps.pl │ ├── conllu-sort-sentences-by-ids.pl │ ├── conllu-stats.pl │ ├── conllu-stats.py │ ├── conllu-tenfold.pl │ ├── conllu-w2t.py │ ├── conllu_align_tokens.pl │ ├── conllu_to_conllx.pl │ ├── conllu_to_text.pl │ ├── create_iso_639_3_symlinks.py │ ├── csort.pm │ ├── data │ │ ├── cpos.ud │ │ ├── deprel.abq │ │ ├── deprel.af │ │ ├── deprel.aii │ │ ├── deprel.ajp │ │ ├── deprel.akk │ │ ├── deprel.am │ │ ├── deprel.ar │ │ ├── deprel.be │ │ ├── deprel.bg │ │ ├── deprel.bho │ │ ├── deprel.bm │ │ ├── deprel.br │ │ ├── deprel.bxr │ │ ├── deprel.ca │ │ ├── deprel.ckt │ │ ├── deprel.cop │ │ ├── deprel.cs │ │ ├── deprel.cu │ │ ├── deprel.cy │ │ ├── deprel.da │ │ ├── deprel.de │ │ ├── deprel.el │ │ ├── deprel.en │ │ ├── deprel.es │ │ ├── deprel.et │ │ ├── deprel.eu │ │ ├── deprel.fa │ │ ├── deprel.fi │ │ ├── deprel.fo │ │ ├── deprel.fr │ │ ├── deprel.fro │ │ ├── deprel.ga │ │ ├── deprel.gd │ │ ├── deprel.gl │ │ ├── deprel.got │ │ ├── deprel.grc │ │ ├── deprel.gsw │ │ ├── deprel.gun │ │ ├── deprel.gv │ │ ├── deprel.he │ │ ├── deprel.hi │ │ ├── deprel.hr │ │ ├── deprel.hsb │ │ ├── deprel.hu │ │ ├── deprel.hy │ │ ├── deprel.id │ │ ├── deprel.is │ │ ├── deprel.it │ │ ├── deprel.ja │ │ ├── deprel.kk │ │ ├── deprel.kmr │ │ ├── deprel.ko │ │ ├── deprel.koi │ │ ├── deprel.kpv │ │ ├── deprel.krl │ │ ├── deprel.la │ │ ├── deprel.lt │ │ ├── deprel.lv │ │ ├── deprel.lzh │ │ ├── deprel.lzz │ │ ├── deprel.mdf │ │ ├── deprel.mr │ │ ├── deprel.mt │ │ ├── deprel.myv │ │ ├── deprel.nl │ │ ├── deprel.no │ │ ├── deprel.olo │ │ ├── deprel.orv │ │ ├── deprel.pcm │ │ ├── deprel.pl │ │ ├── deprel.pt │ │ ├── deprel.qhe │ │ ├── deprel.quz │ │ ├── deprel.ro │ │ ├── deprel.ru │ │ ├── deprel.sa │ │ ├── deprel.shopen │ │ ├── deprel.sk │ │ ├── deprel.sl │ │ ├── deprel.sme │ │ ├── deprel.sms │ │ ├── deprel.sq │ │ ├── deprel.sr │ │ ├── deprel.sv │ │ ├── deprel.swl │ │ ├── deprel.ta │ │ ├── deprel.te │ │ ├── deprel.th │ │ ├── deprel.tl │ │ ├── deprel.tr │ │ ├── deprel.ud │ │ ├── deprel.ug │ │ ├── deprel.uk │ │ ├── deprel.ur │ │ ├── deprel.vi │ │ ├── deprel.wbp │ │ ├── deprel.wo │ │ ├── deprel.yo │ │ ├── deprel.yue │ │ ├── deprel.zh │ │ ├── edeprel.ar │ │ ├── edeprel.bg │ │ ├── edeprel.cs │ │ ├── edeprel.en │ │ ├── edeprel.et │ │ ├── edeprel.fi │ │ ├── edeprel.fr │ │ ├── edeprel.it │ │ ├── edeprel.lt │ │ ├── edeprel.lv │ │ ├── edeprel.nl │ │ ├── edeprel.pl │ │ ├── edeprel.ru │ │ ├── edeprel.sk │ │ ├── edeprel.sv │ │ ├── edeprel.ta │ │ ├── edeprel.ud │ │ ├── edeprel.uk │ │ ├── feat_val.abq │ │ ├── feat_val.af │ │ ├── feat_val.akk │ │ ├── feat_val.am │ │ ├── feat_val.ar │ │ ├── feat_val.be │ │ ├── feat_val.bg │ │ ├── feat_val.bho │ │ ├── feat_val.bm │ │ ├── feat_val.br │ │ ├── feat_val.bxr │ │ ├── feat_val.ca │ │ ├── feat_val.cop │ │ ├── feat_val.cs │ │ ├── feat_val.cu │ │ ├── feat_val.cy │ │ ├── feat_val.da │ │ ├── feat_val.de │ │ ├── feat_val.el │ │ ├── feat_val.en │ │ ├── feat_val.es │ │ ├── feat_val.et │ │ ├── feat_val.eu │ │ ├── feat_val.fa │ │ ├── feat_val.fi │ │ ├── feat_val.fo │ │ ├── feat_val.fr │ │ ├── feat_val.fro │ │ ├── feat_val.ga │ │ ├── feat_val.gd │ │ ├── feat_val.gl │ │ ├── feat_val.got │ │ ├── feat_val.grc │ │ ├── feat_val.gun │ │ ├── feat_val.he │ │ ├── feat_val.hi │ │ ├── feat_val.hr │ │ ├── feat_val.hsb │ │ ├── feat_val.hu │ │ ├── feat_val.hy │ │ ├── feat_val.id │ │ ├── feat_val.is │ │ ├── feat_val.it │ │ ├── feat_val.ja │ │ ├── feat_val.kk │ │ ├── feat_val.kmr │ │ ├── feat_val.ko │ │ ├── feat_val.koi │ │ ├── feat_val.kpv │ │ ├── feat_val.krl │ │ ├── feat_val.la │ │ ├── feat_val.lt │ │ ├── feat_val.lv │ │ ├── feat_val.lzh │ │ ├── feat_val.mdf │ │ ├── feat_val.mr │ │ ├── feat_val.mt │ │ ├── feat_val.myv │ │ ├── feat_val.nl │ │ ├── feat_val.no │ │ ├── feat_val.olo │ │ ├── feat_val.orv │ │ ├── feat_val.pcm │ │ ├── feat_val.pl │ │ ├── feat_val.pt │ │ ├── feat_val.quz │ │ ├── feat_val.ro │ │ ├── feat_val.ru │ │ ├── feat_val.sa │ │ ├── feat_val.sd │ │ ├── feat_val.shopen │ │ ├── feat_val.sk │ │ ├── feat_val.sl │ │ ├── feat_val.sme │ │ ├── feat_val.sms │ │ ├── feat_val.sq │ │ ├── feat_val.sr │ │ ├── feat_val.sv │ │ ├── feat_val.swl │ │ ├── feat_val.ta │ │ ├── feat_val.th │ │ ├── feat_val.tr │ │ ├── feat_val.ud │ │ ├── feat_val.ug │ │ ├── feat_val.uk │ │ ├── feat_val.ur │ │ ├── feat_val.vi │ │ ├── feat_val.wbp │ │ ├── feat_val.wo │ │ ├── feat_val.yo │ │ ├── feat_val.yue │ │ ├── feat_val.zh │ │ ├── feats.ud │ │ ├── tokens_w_space.am │ │ ├── tokens_w_space.br │ │ ├── tokens_w_space.fi │ │ ├── tokens_w_space.fr │ │ ├── tokens_w_space.fro │ │ ├── tokens_w_space.gun │ │ ├── tokens_w_space.kk │ │ ├── tokens_w_space.kmr │ │ ├── tokens_w_space.lt │ │ ├── tokens_w_space.lv │ │ ├── tokens_w_space.myv │ │ ├── tokens_w_space.orv │ │ ├── tokens_w_space.pl │ │ ├── tokens_w_space.shopen │ │ ├── tokens_w_space.sms │ │ ├── tokens_w_space.sv │ │ ├── tokens_w_space.ud │ │ └── tokens_w_space.vi │ ├── enhanced_collapse_empty_nodes.pl │ ├── enhanced_graph_properties.pl │ ├── evaluate_treebank.pl │ ├── example-data │ │ ├── long-token-to-text-correct.txt │ │ ├── long-token-to-text-wrong.txt │ │ ├── long-token-to-text.conllu │ │ └── tanl.conll │ ├── file_util.py │ ├── find_duplicate_sentences.pl │ ├── fix-space-after-paragraph.pl │ ├── fix_format_of_deps.pl │ ├── generate_comparison_of_treebanks.pl │ ├── generate_treebank_hub.pl │ ├── iwpt20_xud_eval.py │ ├── klcpos3.pl │ ├── mergept.pl │ ├── mwtoken-stats.pl │ ├── normalize_unicode.pl │ ├── overlap.py │ ├── package_st_data.sh │ ├── package_ud_release.sh │ ├── remove_duplicate_sentences.pl │ ├── remove_sense_suffixes_from_lemmas.pl │ ├── restore_conllu_lines.pl │ ├── runtests.sh │ ├── save_evaluation_logs.sh │ ├── survey_deprel_subtypes.pl │ ├── survey_enhancements.pl │ ├── survey_features.pl │ ├── test-cases │ │ ├── nonvalid │ │ │ ├── ambiguous-feature.conllu │ │ │ ├── cyclic-deps.conllu │ │ │ ├── deprel-not-empty-in-empty.conllu │ │ │ ├── dos-newlines.conllu │ │ │ ├── duplicate-feature.conllu │ │ │ ├── duplicate-id.conllu │ │ │ ├── duplicate-layered-feature.conllu │ │ │ ├── duplicate-value.conllu │ │ │ ├── empty-field.conllu │ │ │ ├── empty-head.conllu │ │ │ ├── empty-node-without-dependent.conllu │ │ │ ├── empty-sentence.conllu │ │ │ ├── extra-empty-line.conllu │ │ │ ├── extra-field.conllu │ │ │ ├── head-0-deprel-not-root.conllu │ │ │ ├── head-not-0-deprel-root.conllu │ │ │ ├── head-not-empty-in-empty.conllu │ │ │ ├── id-starting-from-2.conllu │ │ │ ├── id-with-extra-0.conllu │ │ │ ├── invalid-deps-id.conllu │ │ │ ├── invalid-deps-order.conllu │ │ │ ├── invalid-deps-syntax.conllu │ │ │ ├── invalid-head.conllu │ │ │ ├── invalid-range-format.conllu │ │ │ ├── invalid-range.conllu │ │ │ ├── lowercase-feature-in-empty.conllu │ │ │ ├── lowercase-feature-value-in-empty.conllu │ │ │ ├── lowercase-feature.conllu │ │ │ ├── lowercase-postag-in-empty.conllu │ │ │ ├── lowercase-postag.conllu │ │ │ ├── lowercase-value.conllu │ │ │ ├── malformed_deps.conllu │ │ │ ├── misindexed-empty-node.conllu │ │ │ ├── misordered-feature.conllu │ │ │ ├── misordered-layered-feature.conllu │ │ │ ├── misordered-multiword.conllu │ │ │ ├── misplaced-comment-end.conllu │ │ │ ├── misplaced-comment-mid.conllu │ │ │ ├── missing-final-line.conllu │ │ │ ├── missing-space-after.conllu │ │ │ ├── multiple-sent_id.conllu │ │ │ ├── multiword-with-pos.conllu │ │ │ ├── no-sent_id.conllu │ │ │ ├── non-proj.conllu │ │ │ ├── nonsequential-empty-node-id.conllu │ │ │ ├── nonsequential-id.conllu │ │ │ ├── overlapping-multiword.conllu │ │ │ ├── self-cycle-deps.conllu │ │ │ ├── self-cycle-head.conllu │ │ │ ├── space-in-field.conllu │ │ │ ├── tanl-broken.conllu │ │ │ ├── token_with_cols_filled.conllu │ │ │ ├── trailing-tab.conllu │ │ │ ├── uppercase-deprel.conllu │ │ │ ├── uppercase-deps-deprel.conllu │ │ │ └── whitespace_nonv.conllu │ │ └── valid │ │ │ ├── empty-file.conllu │ │ │ ├── empty-nodes.conllu │ │ │ ├── id_test_part1.conllu │ │ │ ├── id_test_part2.conllu │ │ │ ├── layered-features.conllu │ │ │ ├── maximal-empty-node.conllu │ │ │ ├── minimal-empty-node.conllu │ │ │ ├── multiple-features.conllu │ │ │ ├── tanl.conllu │ │ │ └── whitespace.conllu │ ├── text_without_spaces.pl │ ├── udlib.pm │ ├── v2-conversion │ │ ├── README.md │ │ ├── __init__.py │ │ ├── convert.py │ │ ├── depgraph_utils.py │ │ ├── nmod_obl_adjudication.py │ │ ├── processors_en.py │ │ └── processors_universal.py │ ├── validate-python2-obsolete.py │ ├── validate.py │ ├── validate_all.sh │ └── validate_repo_metadata.py └── ud_analyze │ ├── __init__.py │ ├── lemmas_detail.html.template │ ├── lemmas_index.html.template │ └── make_lemma_doc.py ├── news.py ├── tmp └── .gitignore └── utils.py /.github/workflows/automatic_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/.github/workflows/automatic_build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *egg-info 3 | build 4 | dist 5 | __pycache__ 6 | .DS_Store 7 | .vscode 8 | tmp 9 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/DEVELOPER_GUIDES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.3.x -------------------------------------------------------------------------------- /actions_requirements.txt: -------------------------------------------------------------------------------- 1 | PyGitHub 2 | Pyyaml -------------------------------------------------------------------------------- /automatic_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/automatic_build.py -------------------------------------------------------------------------------- /docs/README_archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/README_archive.md -------------------------------------------------------------------------------- /docs/amr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/amr.md -------------------------------------------------------------------------------- /docs/archive/idea_v0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/idea_v0.2.md -------------------------------------------------------------------------------- /docs/archive/todo/new_words_form.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/todo/new_words_form.txt -------------------------------------------------------------------------------- /docs/archive/todo/tokenize_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/todo/tokenize_data.txt -------------------------------------------------------------------------------- /docs/archive/todo/vi_corpus_v1_todo.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/todo/vi_corpus_v1_todo.conllu -------------------------------------------------------------------------------- /docs/archive/vietnamese/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/vietnamese/cli.py -------------------------------------------------------------------------------- /docs/archive/vietnamese/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/vietnamese/task.py -------------------------------------------------------------------------------- /docs/archive/vietnamese/templates/ADD_SENTENCE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/vietnamese/templates/ADD_SENTENCE.tpl -------------------------------------------------------------------------------- /docs/archive/vietnamese/templates/PROPOSE_TASK.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/archive/vietnamese/templates/PROPOSE_TASK.tpl -------------------------------------------------------------------------------- /docs/corpus_analysis/bktreebank_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/corpus_analysis/bktreebank_analysis.md -------------------------------------------------------------------------------- /docs/corpus_analysis/conllu_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/corpus_analysis/conllu_analysis.md -------------------------------------------------------------------------------- /docs/dependency_parsing-bkt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/dependency_parsing-bkt.md -------------------------------------------------------------------------------- /docs/dependency_parsing-vtb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/dependency_parsing-vtb.md -------------------------------------------------------------------------------- /docs/dependency_parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/dependency_parsing.md -------------------------------------------------------------------------------- /docs/guidelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/README.md -------------------------------------------------------------------------------- /docs/guidelines/dependency_parsing/aux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/dependency_parsing/aux.md -------------------------------------------------------------------------------- /docs/guidelines/dependency_parsing/clf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/dependency_parsing/clf.md -------------------------------------------------------------------------------- /docs/guidelines/dependency_parsing/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/dependency_parsing/obj.md -------------------------------------------------------------------------------- /docs/guidelines/errors_code/text-corpus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/errors_code/text-corpus/README.md -------------------------------------------------------------------------------- /docs/guidelines/examples/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/examples/02.md -------------------------------------------------------------------------------- /docs/guidelines/gl01-tokeniation_and_word_segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/gl01-tokeniation_and_word_segmentation.md -------------------------------------------------------------------------------- /docs/guidelines/gl01-tokenization-vietnamese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/gl01-tokenization-vietnamese.md -------------------------------------------------------------------------------- /docs/guidelines/gl01-vietnamese_word_segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/gl01-vietnamese_word_segmentation.md -------------------------------------------------------------------------------- /docs/guidelines/gl02-nominals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/gl02-nominals.md -------------------------------------------------------------------------------- /docs/guidelines/images/ex_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/images/ex_02.png -------------------------------------------------------------------------------- /docs/guidelines/images/ex_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/images/ex_03.png -------------------------------------------------------------------------------- /docs/guidelines/images/ex_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/images/ex_04.png -------------------------------------------------------------------------------- /docs/guidelines/pos_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/ADJ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/ADJ.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/ADP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/ADP.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/ADV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/ADV.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/AUX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/AUX.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/CCONJ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/CCONJ.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/DET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/DET.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/NOUN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/NOUN.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/NUM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/NUM.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/PRON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/PRON.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/PROPN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/PROPN.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/SCONJ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/SCONJ.md -------------------------------------------------------------------------------- /docs/guidelines/pos_tag/VERB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/guidelines/pos_tag/VERB.md -------------------------------------------------------------------------------- /docs/idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/idea.md -------------------------------------------------------------------------------- /docs/images/underthesea_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/images/underthesea_resources.png -------------------------------------------------------------------------------- /docs/lemma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/lemma.md -------------------------------------------------------------------------------- /docs/linguistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/linguistics/README.md -------------------------------------------------------------------------------- /docs/linguistics/gioi_thieu-dac_diem_ngon_ngu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/linguistics/gioi_thieu-dac_diem_ngon_ngu.md -------------------------------------------------------------------------------- /docs/linguistics/gioi_thieu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/linguistics/gioi_thieu.md -------------------------------------------------------------------------------- /docs/methods_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/methods_tools.md -------------------------------------------------------------------------------- /docs/nlp/constituency_parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/nlp/constituency_parsing.md -------------------------------------------------------------------------------- /docs/nlp/dependency_parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/nlp/dependency_parsing.md -------------------------------------------------------------------------------- /docs/pos_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/pos_tag.md -------------------------------------------------------------------------------- /docs/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/templates/README.md -------------------------------------------------------------------------------- /docs/vietnamese/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/README.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau_cam_than.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau_cam_than.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau_cau_khien.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau_cau_khien.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau_don.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau_don.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau_ghep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau_ghep.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau_nghi_van.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau_nghi_van.md -------------------------------------------------------------------------------- /docs/vietnamese/cph-cau_tran_thuat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/cph-cau_tran_thuat.md -------------------------------------------------------------------------------- /docs/vietnamese/hth-dai_tu_tieng_viet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/hth-dai_tu_tieng_viet.md -------------------------------------------------------------------------------- /docs/vietnamese/hth-danh_tu_tieng-viet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/hth-danh_tu_tieng-viet.md -------------------------------------------------------------------------------- /docs/vietnamese/hth-dong_tu_tieng_viet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/hth-dong_tu_tieng_viet.md -------------------------------------------------------------------------------- /docs/vietnamese/hth-phu_tu_tieng_viet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/hth-phu_tu_tieng_viet.md -------------------------------------------------------------------------------- /docs/vietnamese/hth-tinh_tu_tieng_viet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/docs/vietnamese/hth-tinh_tu_tieng_viet.md -------------------------------------------------------------------------------- /new_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/new_file.txt -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/release.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==2.10.1 2 | PyYAML 3 | termcolor -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/.gitignore: -------------------------------------------------------------------------------- 1 | corpus/crawl 2 | tmp 3 | -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/CHANGELOG.md -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/DATA_FORMAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/DATA_FORMAT.md -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/README.md -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_001.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_002.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_003.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_004.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_005.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_006.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_007.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_008.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_009.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_010.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_011.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_012.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_013.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_014.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_015.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_016.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_017.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_018.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_019.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_business_020.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_001.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_002.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_003.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_004.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_005.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_006.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_007.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_008.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_009.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_010.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_011.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_012.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_013.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_014.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_015.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_health_016.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_001.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_002.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_003.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_004.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_005.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_006.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_007.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_008.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_009.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_010.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_011.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_012.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_013.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_014.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_015.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_016.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_017.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_018.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_019.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_sport_020.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_001.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_002.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_003.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_004.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_005.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_006.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_007.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_008.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_009.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_010.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_011.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_012.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_013.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_014.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_015.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_016.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_017.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_018.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_019.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_tech_020.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_001.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_002.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_003.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_004.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_005.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_006.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_007.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_008.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_009.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_010.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_011.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_012.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_013.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_014.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_015.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_016.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_017.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_018.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_019.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/corpus/CP_Vietnamese-UNC/news_world_020.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/metadata.yaml -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/scripts/build.py -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/scripts/clean.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/scripts/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/scripts/crawl.py -------------------------------------------------------------------------------- /resources/CP_Vietnamese-UNC/scripts/merge_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-UNC/scripts/merge_corpus.py -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/README.md -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/REFERENCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/REFERENCES.md -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/bo-luat-dan-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/bo-luat-dan-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/bo-luat-hang-hai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/bo-luat-hang-hai.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/bo-luat-hinh-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/bo-luat-hinh-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/bo-luat-lao-dong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/bo-luat-lao-dong.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/bo-luat-to-tung-dan-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/bo-luat-to-tung-dan-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/bo-luat-to-tung-hinh-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/bo-luat-to-tung-hinh-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/hien-phap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/hien-phap.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-an-ninh-quoc-gia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-an-ninh-quoc-gia.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-ban-hanh-van-ban-quy-pham-phap-luat.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bao-chi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bao-chi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bao-hiem-xa-hoi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bao-hiem-xa-hoi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bao-ve-moi-truong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bao-ve-moi-truong.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bao-ve-suc-khoe-nhan-dan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bao-ve-suc-khoe-nhan-dan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bao-ve-va-phat-trien-rung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bao-ve-va-phat-trien-rung.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bau-cu-dai-bieu-hdnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bau-cu-dai-bieu-hdnd.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bau-cu-dai-bieu-quoc-hoi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bau-cu-dai-bieu-quoc-hoi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-bien-gioi-quoc-gia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-bien-gioi-quoc-gia.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-binh-dang-gioi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-binh-dang-gioi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cac-cong-cu-chuyen-nhuong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cac-cong-cu-chuyen-nhuong.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cac-to-chuc-tin-dung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cac-to-chuc-tin-dung.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cai-cach-ruong-dat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cai-cach-ruong-dat.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-canh-tranh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-canh-tranh.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-chung-khoan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-chung-khoan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-chuyen-giao-cong-nghe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-chuyen-giao-cong-nghe.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cong-an-nhan-dan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cong-an-nhan-dan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cong-chung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cong-chung.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cong-doan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cong-doan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cong-nghe-thong-tin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cong-nghe-thong-tin.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cong-ty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cong-ty.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-cu-tru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-cu-tru.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-dat-dai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-dat-dai.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-dau-khi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-dau-khi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-dau-thau.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-dau-thau.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-dau-tu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-dau-tu.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-day-nghe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-day-nghe.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-de-dieu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-de-dieu.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-di-san-van-hoa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-di-san-van-hoa.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-dien-anh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-dien-anh.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-dien-luc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-dien-luc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-doanh-nghiep-nha-nuoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-doanh-nghiep-nha-nuoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-doanh-nghiep-tu-nhan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-doanh-nghiep-tu-nhan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-doanh-nghiep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-doanh-nghiep.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-du-lich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-du-lich.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-duoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-duoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-duong-sat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-duong-sat.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-giao-dich-dien-tu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-giao-dich-dien-tu.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-giao-duc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-giao-duc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-giao-thong-duong-bo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-giao-thong-duong-bo.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-hai-quan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-hai-quan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-hon-nhan-va-gia-dinh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-hon-nhan-va-gia-dinh.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-hop-tac-xa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-hop-tac-xa.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-ke-toan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-ke-toan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-khieu-nai-to-cao.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-khieu-nai-to-cao.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-khoa-hoc-va-cong-nghe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-khoa-hoc-va-cong-nghe.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-khoang-san.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-khoang-san.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-kiem-toan-nha-nuoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-kiem-toan-nha-nuoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-kinh-doanh-bao-hiem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-kinh-doanh-bao-hiem.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-kinh-doanh-bat-dong-san.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-kinh-doanh-bat-dong-san.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-luat-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-luat-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-mat-tran-to-quoc-viet-nam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-mat-tran-to-quoc-viet-nam.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-ngan-hang-nha-nuoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-ngan-hang-nha-nuoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-ngan-sach-nha-nuoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-ngan-sach-nha-nuoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-nghia-vu-quan-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-nghia-vu-quan-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-nha-o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-nha-o.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-pha-san.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-pha-san.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-pho-cap-giao-duc-tieu-hoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-pho-cap-giao-duc-tieu-hoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-phong-chay-chua-chay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-phong-chay-chua-chay.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-phong-chong-ma-tuy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-phong-chong-ma-tuy.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-phong-chong-tham-nhung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-phong-chong-tham-nhung.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-quan-ly-thue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-quan-ly-thue.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-quoc-phong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-quoc-phong.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-quoc-tich-viet-nam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-quoc-tich-viet-nam.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-so-huu-tri-tue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-so-huu-tri-tue.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-tai-nguyen-nuoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-tai-nguyen-nuoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thanh-nien.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thanh-nien.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thanh-tra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thanh-tra.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-the-duc-the-thao.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-the-duc-the-thao.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thi-dua-khen-thuong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thi-dua-khen-thuong.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thong-ke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thong-ke.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thue-gia-tri-gia-tang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thue-gia-tri-gia-tang.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thue-thu-nhap-doanh-nghiep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thue-thu-nhap-doanh-nghiep.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thue-tieu-thu-dac-biet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thue-tieu-thu-dac-biet.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thuong-mai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thuong-mai.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-thuy-san.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-thuy-san.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-to-chuc-chinh-phu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-to-chuc-chinh-phu.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-to-chuc-quoc-hoi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-to-chuc-quoc-hoi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-to-chuc-toa-an-nhan-dan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-to-chuc-toa-an-nhan-dan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-tro-giup-phap-ly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-tro-giup-phap-ly.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-xay-dung.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-xay-dung.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/corpus/luat-xuat-ban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/corpus/luat-xuat-ban.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/hien-phap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/hien-phap.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-ban-hanh-van-ban-quy-pham-phap-luat.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-bao-chi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-bao-chi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-cong-ty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-cong-ty.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-cu-tru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-cu-tru.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-dat-dai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-dat-dai.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-dau-khi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-dau-khi.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-dau-tu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-dau-tu.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-de-dieu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-de-dieu.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-du-lich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-du-lich.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-duoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-duoc.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-ke-toan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-ke-toan.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-luat-su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-luat-su.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-nha-o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-nha-o.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-pha-san.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/datasets/CP_Vietnamese-VLC/luat-pha-san.txt -------------------------------------------------------------------------------- /resources/CP_Vietnamese-VLC/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/CP_Vietnamese-VLC/metadata.yaml -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/.gitignore -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/README.md -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/corpus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/corpus/README.md -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/corpus/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/corpus/data.yaml -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/corpus/dictionaries/hongocduc/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/corpus/dictionaries/hongocduc/words.txt -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/corpus/dictionaries/tudientv/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/corpus/dictionaries/tudientv/words.txt -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/corpus/dictionaries/wiktionary/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/corpus/dictionaries/wiktionary/words.txt -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/corpus/dictionary/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/corpus/dictionary/words.txt -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/datasets/DI_Vietnamese-UVD/UVD.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/datasets/DI_Vietnamese-UVD/UVD.bin -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/.~lock.word_classes.csv#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/docs/.~lock.word_classes.csv# -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/Design.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/docs/Design.drawio -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/Design.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/docs/Design.mdj -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/ERROR_CODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/docs/ERROR_CODE.md -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/README.md: -------------------------------------------------------------------------------- 1 | # Notes 2 | 3 | -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/WORD CLASSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/docs/WORD CLASSES.md -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/docs/word_classes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/docs/word_classes.csv -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/metadata.yaml -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/analyze.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/app.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/build_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/build_datasets.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/correct_v1.0.alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/correct_v1.0.alpha.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/data.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/download_hnd_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/download_hnd_data.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/import_hnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/import_hnd.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/merge_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/merge_dictionary.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/test_data.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/test_dict.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/test_dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/test_dict.yaml -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/text_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/text_dictionary.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/underthesea_v170_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/underthesea_v170_dictionary.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/validate.py -------------------------------------------------------------------------------- /resources/DI_Vietnamese-UVD/scripts/validate_with_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/DI_Vietnamese-UVD/scripts/validate_with_corpus.py -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/README.md -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/corpus/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/corpus/test.txt -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/corpus/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/corpus/train.txt -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/datasets/SE_Vietnamese-UBS/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/datasets/SE_Vietnamese-UBS/test.txt -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/datasets/SE_Vietnamese-UBS/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/datasets/SE_Vietnamese-UBS/train.txt -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/datasets/TC_Vietnamese-UBC/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/datasets/TC_Vietnamese-UBC/test.txt -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/datasets/TC_Vietnamese-UBC/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/datasets/TC_Vietnamese-UBC/train.txt -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/metadata.yaml -------------------------------------------------------------------------------- /resources/SE_Vietnamese-UBS/scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/SE_Vietnamese-UBS/scripts/build.py -------------------------------------------------------------------------------- /resources/W_MISCELLANEOUS/README.md: -------------------------------------------------------------------------------- 1 | # MISCELLANEOUS 2 | 3 | Miscellaneous Datasets -------------------------------------------------------------------------------- /resources/W_MISCELLANEOUS/datasets/VLSP2020_DP_SAMPLE/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/W_MISCELLANEOUS/datasets/VLSP2020_DP_SAMPLE/dev.txt -------------------------------------------------------------------------------- /resources/W_MISCELLANEOUS/datasets/VLSP2020_DP_SAMPLE/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/W_MISCELLANEOUS/datasets/VLSP2020_DP_SAMPLE/test.txt -------------------------------------------------------------------------------- /resources/W_MISCELLANEOUS/datasets/VLSP2020_DP_SAMPLE/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/W_MISCELLANEOUS/datasets/VLSP2020_DP_SAMPLE/train.txt -------------------------------------------------------------------------------- /resources/W_MISCELLANEOUS/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/resources/W_MISCELLANEOUS/metadata.yaml -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/app/amr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/amr.html -------------------------------------------------------------------------------- /tools/app/amr/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/amr/js/jquery.min.js -------------------------------------------------------------------------------- /tools/app/amr/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/amr/js/script.js -------------------------------------------------------------------------------- /tools/app/amr_editor_simple_tbd/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/amr_editor_simple_tbd/css/style.css -------------------------------------------------------------------------------- /tools/app/amr_editor_simple_tbd/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/amr_editor_simple_tbd/guide.html -------------------------------------------------------------------------------- /tools/app/amr_editor_simple_tbd/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/amr_editor_simple_tbd/help.html -------------------------------------------------------------------------------- /tools/app/conll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll.html -------------------------------------------------------------------------------- /tools/app/conll/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/css/custom.css -------------------------------------------------------------------------------- /tools/app/conll/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /tools/app/conll/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /tools/app/conll/css/jquery-ui-redmond.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/css/jquery-ui-redmond.css -------------------------------------------------------------------------------- /tools/app/conll/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/css/main.css -------------------------------------------------------------------------------- /tools/app/conll/css/style-vis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/css/style-vis.css -------------------------------------------------------------------------------- /tools/app/conll/custom/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/custom/search.js -------------------------------------------------------------------------------- /tools/app/conll/js/annodoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/annodoc.js -------------------------------------------------------------------------------- /tools/app/conll/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/config.js -------------------------------------------------------------------------------- /tools/app/conll/js/conllu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/conllu.js -------------------------------------------------------------------------------- /tools/app/conll/js/head.load.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/head.load.min.js -------------------------------------------------------------------------------- /tools/app/conll/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/jquery-ui.min.js -------------------------------------------------------------------------------- /tools/app/conll/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/jquery.min.js -------------------------------------------------------------------------------- /tools/app/conll/js/jquery.svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/jquery.svg.min.js -------------------------------------------------------------------------------- /tools/app/conll/js/jquery.svgdom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/jquery.svgdom.min.js -------------------------------------------------------------------------------- /tools/app/conll/js/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/waypoints.min.js -------------------------------------------------------------------------------- /tools/app/conll/js/webfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/js/webfont.js -------------------------------------------------------------------------------- /tools/app/conll/lib/brat/annotation_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/brat/annotation_log.js -------------------------------------------------------------------------------- /tools/app/conll/lib/brat/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/brat/configuration.js -------------------------------------------------------------------------------- /tools/app/conll/lib/brat/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/brat/dispatcher.js -------------------------------------------------------------------------------- /tools/app/conll/lib/brat/url_monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/brat/url_monitor.js -------------------------------------------------------------------------------- /tools/app/conll/lib/brat/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/brat/util.js -------------------------------------------------------------------------------- /tools/app/conll/lib/brat/visualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/brat/visualizer.js -------------------------------------------------------------------------------- /tools/app/conll/lib/conllu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/conllu.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/head.load.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/head.load.min.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/jquery-ui.min.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/jquery.min.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/jquery.svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/jquery.svg.min.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/jquery.svgdom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/jquery.svgdom.min.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/waypoints.min.js -------------------------------------------------------------------------------- /tools/app/conll/lib/ext/webfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/ext/webfont.js -------------------------------------------------------------------------------- /tools/app/conll/lib/local/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/lib/local/config.js -------------------------------------------------------------------------------- /tools/app/conll/static/fonts/Liberation_Sans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/static/fonts/Liberation_Sans-Regular.ttf -------------------------------------------------------------------------------- /tools/app/conll/static/fonts/PT_Sans-Caption-Web-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll/static/fonts/PT_Sans-Caption-Web-Regular.ttf -------------------------------------------------------------------------------- /tools/app/conll_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll_search.html -------------------------------------------------------------------------------- /tools/app/conll_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/conll_view.html -------------------------------------------------------------------------------- /tools/app/corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/corpus.py -------------------------------------------------------------------------------- /tools/app/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/data.py -------------------------------------------------------------------------------- /tools/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/index.html -------------------------------------------------------------------------------- /tools/app/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/server.py -------------------------------------------------------------------------------- /tools/app/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/test_search.py -------------------------------------------------------------------------------- /tools/app/tools/01_auto_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/tools/01_auto_tag.py -------------------------------------------------------------------------------- /tools/app/tools/02_check_new_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/tools/02_check_new_words.py -------------------------------------------------------------------------------- /tools/app/tools/03_stats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/app/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/app/tools/build_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/tools/build_doc.py -------------------------------------------------------------------------------- /tools/app/tools/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/app/tools/database.py -------------------------------------------------------------------------------- /tools/archive/data/knowledge.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/archive/data/knowledge.sqlite -------------------------------------------------------------------------------- /tools/archive/data/news/data.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/archive/data/uts_corpus_v1.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/archive/data/uts_corpus_v1.conllu -------------------------------------------------------------------------------- /tools/dicitonary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/dicitonary.py -------------------------------------------------------------------------------- /tools/extras/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/CONTRIBUTING.md -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/LICENSE.txt -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/README.md -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/eval.log -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/stats.xml -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/vi_vtb-ud-dev.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/vi_vtb-ud-dev.conllu -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/vi_vtb-ud-test.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/vi_vtb-ud-test.conllu -------------------------------------------------------------------------------- /tools/extras/UD_Vietnamese-VTB/vi_vtb-ud-train.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/UD_Vietnamese-VTB/vi_vtb-ud-train.conllu -------------------------------------------------------------------------------- /tools/extras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/docs-automation/codes_and_flags.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | title: 'Vietnamese UD' 4 | udver: '2' 5 | --- 6 | -------------------------------------------------------------------------------- /tools/extras/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/.gitignore -------------------------------------------------------------------------------- /tools/extras/tools/Graph.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/Graph.pm -------------------------------------------------------------------------------- /tools/extras/tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/LICENSE.txt -------------------------------------------------------------------------------- /tools/extras/tools/Node.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/Node.pm -------------------------------------------------------------------------------- /tools/extras/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/README.md -------------------------------------------------------------------------------- /tools/extras/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/check-space-after-paragraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/check-space-after-paragraph.pl -------------------------------------------------------------------------------- /tools/extras/tools/check_files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/check_files.pl -------------------------------------------------------------------------------- /tools/extras/tools/check_overlaps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/check_overlaps.pl -------------------------------------------------------------------------------- /tools/extras/tools/check_sentence_ids.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/check_sentence_ids.pl -------------------------------------------------------------------------------- /tools/extras/tools/check_text_wosp_match.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/check_text_wosp_match.sh -------------------------------------------------------------------------------- /tools/extras/tools/collect_propn_sequences.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/collect_propn_sequences.pl -------------------------------------------------------------------------------- /tools/extras/tools/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/compat/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/compat/argparse.py -------------------------------------------------------------------------------- /tools/extras/tools/conll_convert_tags_to_uposf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conll_convert_tags_to_uposf.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-copy-basic-to-enhanced.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-copy-basic-to-enhanced.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-dependency-stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-dependency-stats.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-formconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-formconvert.py -------------------------------------------------------------------------------- /tools/extras/tools/conllu-quick-fix-id-sequence.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-quick-fix-id-sequence.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-quick-fix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-quick-fix.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-remove-enhanced-deps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-remove-enhanced-deps.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-sort-sentences-by-ids.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-sort-sentences-by-ids.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-stats.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-stats.py -------------------------------------------------------------------------------- /tools/extras/tools/conllu-tenfold.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-tenfold.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu-w2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu-w2t.py -------------------------------------------------------------------------------- /tools/extras/tools/conllu_align_tokens.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu_align_tokens.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu_to_conllx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu_to_conllx.pl -------------------------------------------------------------------------------- /tools/extras/tools/conllu_to_text.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/conllu_to_text.pl -------------------------------------------------------------------------------- /tools/extras/tools/create_iso_639_3_symlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/create_iso_639_3_symlinks.py -------------------------------------------------------------------------------- /tools/extras/tools/csort.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/csort.pm -------------------------------------------------------------------------------- /tools/extras/tools/data/cpos.ud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/cpos.ud -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.abq: -------------------------------------------------------------------------------- 1 | obj:caus 2 | nmod:poss 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.af -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.aii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.aii -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ajp: -------------------------------------------------------------------------------- 1 | advmod:emph 2 | flat:foreign 3 | nmod:poss 4 | obl:arg 5 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.akk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.am -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ar -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.be -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.bg -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.bho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.bho -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.bm: -------------------------------------------------------------------------------- 1 | det:rel 2 | parataxis:obj 3 | compound:redup 4 | nmod:poss 5 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.br -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.bxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.bxr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ca -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ckt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ckt -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.cop: -------------------------------------------------------------------------------- 1 | obl:npmod -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.cs -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.cu -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.cy -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.da -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.de -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.el -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.en -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.es -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.et -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.eu: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.fa -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.fi -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.fo -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.fr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.fro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.fro -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ga -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.gd -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.gl -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.got: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.got -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.grc -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.gsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.gsw -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.gun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.gun -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.gv -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.he -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.hi -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.hr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.hsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.hsb -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.hu -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.hy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.hy -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.id -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.is -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.it -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ja -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.kk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.kk -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.kmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.kmr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ko -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.koi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.koi -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.kpv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.kpv -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.krl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.krl -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.la -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.lt -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.lv -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.lzh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.lzh -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.lzz: -------------------------------------------------------------------------------- 1 | compound:redup 2 | nmod:poss 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.mdf -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.mr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.mt -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.myv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.myv -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.nl -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.no -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.olo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.olo -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.orv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.orv -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.pcm -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.pl -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.pt -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.qhe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.qhe -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.quz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.quz -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ro -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ru -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sa -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.shopen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.shopen -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sk -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sl -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sme -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sms -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sq -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.sv -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.swl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.swl -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ta: -------------------------------------------------------------------------------- 1 | advmod:emph 2 | compound:prt 3 | nsubj:pass 4 | obl:arg 5 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.te -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.th -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.tl: -------------------------------------------------------------------------------- 1 | compound:redup 2 | nmod:poss 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.tr -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ud -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.ug -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.uk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.uk -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.ur: -------------------------------------------------------------------------------- 1 | acl:relcl 2 | 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.vi: -------------------------------------------------------------------------------- 1 | aux:pass 2 | 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.wbp: -------------------------------------------------------------------------------- 1 | nmod:poss 2 | obl:tmod 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.wo -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.yo -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.yue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.yue -------------------------------------------------------------------------------- /tools/extras/tools/data/deprel.zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/deprel.zh -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.ar -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.bg -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.cs -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.en -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.et -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.fi -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.fr -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.it -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.lt -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.lv -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.nl -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.pl -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.ru -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.sk -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.sv -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.ta -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.ud: -------------------------------------------------------------------------------- 1 | ref 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/edeprel.uk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/edeprel.uk -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.abq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.abq -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.af -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.akk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.am: -------------------------------------------------------------------------------- 1 | Case=Mal 2 | Voice=Trans 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ar -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.be: -------------------------------------------------------------------------------- 1 | Variant=Short 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.bg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.bho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.bho -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.bm -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.br -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.bxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.bxr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ca -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.cop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.cop -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.cs -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.cu -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.cy -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.da -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.de -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.el: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.en: -------------------------------------------------------------------------------- 1 | Typo=Yes 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.es -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.et -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.eu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.eu -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.fa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.fi -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.fo -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.fr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.fro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.fro -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ga -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.gd -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.gl -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.got: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.got -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.grc: -------------------------------------------------------------------------------- 1 | AdpType=Prep 2 | Tense=Aor 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.gun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.gun -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.he -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.hi -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.hr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.hsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.hsb -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.hu -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.hy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.hy -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.id -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.is -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.it -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ja -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.kk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.kk -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.kmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.kmr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ko -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.koi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.koi -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.kpv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.kpv -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.krl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.krl -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.la -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.lt -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.lv -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.lzh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.lzh -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.mdf -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.mr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.mt -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.myv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.myv -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.nl -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.no: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.olo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.olo -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.orv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.orv -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.pcm -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.pl -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.pt -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.quz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.quz -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ro -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ru -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sa -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sd -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.shopen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.shopen -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sk -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sl -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sme -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sms -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sq: -------------------------------------------------------------------------------- 1 | NounType=Het 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.sr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.sv: -------------------------------------------------------------------------------- 1 | VerbForm=Stem 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.swl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ta -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.th: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.tr -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ud -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ug -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.uk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.uk -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.ur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.ur -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.vi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.wbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.wbp -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.wo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.wo -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.yo: -------------------------------------------------------------------------------- 1 | Typo=Yes 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.yue: -------------------------------------------------------------------------------- 1 | NounType=Clf 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/feat_val.zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feat_val.zh -------------------------------------------------------------------------------- /tools/extras/tools/data/feats.ud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/feats.ud -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.am -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.br -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.fi: -------------------------------------------------------------------------------- 1 | # emoticons written with space 2 | : \) 3 | : D 4 | # inflected numbers 5 | [0-9 ]+:([a-z]+)? 6 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.fr: -------------------------------------------------------------------------------- 1 | [0-9 ,]+ 2 | 3 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.fro: -------------------------------------------------------------------------------- 1 | ambe .ii. 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.gun: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.kk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.kk -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.kmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.kmr -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.lt -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.lv -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.myv: -------------------------------------------------------------------------------- 1 | # emoticons written with space 2 | : \) 3 | : D 4 | # inflected numbers 5 | [0-9 ]+-([a-z]+)? 6 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.orv: -------------------------------------------------------------------------------- 1 | не быти 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.pl -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.shopen: -------------------------------------------------------------------------------- 1 | cung van 2 | -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.sms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.sms -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.sv -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.ud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/data/tokens_w_space.ud -------------------------------------------------------------------------------- /tools/extras/tools/data/tokens_w_space.vi: -------------------------------------------------------------------------------- 1 | .+ 2 | -------------------------------------------------------------------------------- /tools/extras/tools/enhanced_collapse_empty_nodes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/enhanced_collapse_empty_nodes.pl -------------------------------------------------------------------------------- /tools/extras/tools/enhanced_graph_properties.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/enhanced_graph_properties.pl -------------------------------------------------------------------------------- /tools/extras/tools/evaluate_treebank.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/evaluate_treebank.pl -------------------------------------------------------------------------------- /tools/extras/tools/example-data/long-token-to-text-correct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/example-data/long-token-to-text-correct.txt -------------------------------------------------------------------------------- /tools/extras/tools/example-data/long-token-to-text-wrong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/example-data/long-token-to-text-wrong.txt -------------------------------------------------------------------------------- /tools/extras/tools/example-data/long-token-to-text.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/example-data/long-token-to-text.conllu -------------------------------------------------------------------------------- /tools/extras/tools/example-data/tanl.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/example-data/tanl.conll -------------------------------------------------------------------------------- /tools/extras/tools/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/file_util.py -------------------------------------------------------------------------------- /tools/extras/tools/find_duplicate_sentences.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/find_duplicate_sentences.pl -------------------------------------------------------------------------------- /tools/extras/tools/fix-space-after-paragraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/fix-space-after-paragraph.pl -------------------------------------------------------------------------------- /tools/extras/tools/fix_format_of_deps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/fix_format_of_deps.pl -------------------------------------------------------------------------------- /tools/extras/tools/generate_comparison_of_treebanks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/generate_comparison_of_treebanks.pl -------------------------------------------------------------------------------- /tools/extras/tools/generate_treebank_hub.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/generate_treebank_hub.pl -------------------------------------------------------------------------------- /tools/extras/tools/iwpt20_xud_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/iwpt20_xud_eval.py -------------------------------------------------------------------------------- /tools/extras/tools/klcpos3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/klcpos3.pl -------------------------------------------------------------------------------- /tools/extras/tools/mergept.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/mergept.pl -------------------------------------------------------------------------------- /tools/extras/tools/mwtoken-stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/mwtoken-stats.pl -------------------------------------------------------------------------------- /tools/extras/tools/normalize_unicode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/normalize_unicode.pl -------------------------------------------------------------------------------- /tools/extras/tools/overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/overlap.py -------------------------------------------------------------------------------- /tools/extras/tools/package_st_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/package_st_data.sh -------------------------------------------------------------------------------- /tools/extras/tools/package_ud_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/package_ud_release.sh -------------------------------------------------------------------------------- /tools/extras/tools/remove_duplicate_sentences.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/remove_duplicate_sentences.pl -------------------------------------------------------------------------------- /tools/extras/tools/remove_sense_suffixes_from_lemmas.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/remove_sense_suffixes_from_lemmas.pl -------------------------------------------------------------------------------- /tools/extras/tools/restore_conllu_lines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/restore_conllu_lines.pl -------------------------------------------------------------------------------- /tools/extras/tools/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/runtests.sh -------------------------------------------------------------------------------- /tools/extras/tools/save_evaluation_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/save_evaluation_logs.sh -------------------------------------------------------------------------------- /tools/extras/tools/survey_deprel_subtypes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/survey_deprel_subtypes.pl -------------------------------------------------------------------------------- /tools/extras/tools/survey_enhancements.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/survey_enhancements.pl -------------------------------------------------------------------------------- /tools/extras/tools/survey_features.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/survey_features.pl -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/ambiguous-feature.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/ambiguous-feature.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/cyclic-deps.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/cyclic-deps.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/deprel-not-empty-in-empty.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/deprel-not-empty-in-empty.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/dos-newlines.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/dos-newlines.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/duplicate-feature.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/duplicate-feature.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/duplicate-id.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/duplicate-id.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/duplicate-layered-feature.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/duplicate-layered-feature.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/duplicate-value.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/duplicate-value.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/empty-field.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/empty-field.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/empty-head.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/empty-head.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/empty-sentence.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/empty-sentence.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/extra-empty-line.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/extra-empty-line.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/extra-field.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/extra-field.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/head-0-deprel-not-root.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/head-0-deprel-not-root.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/head-not-0-deprel-root.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/head-not-0-deprel-root.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/head-not-empty-in-empty.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/head-not-empty-in-empty.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/id-starting-from-2.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/id-starting-from-2.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/id-with-extra-0.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/id-with-extra-0.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/invalid-deps-id.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/invalid-deps-id.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/invalid-deps-order.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/invalid-deps-order.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/invalid-deps-syntax.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/invalid-deps-syntax.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/invalid-head.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/invalid-head.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/invalid-range-format.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/invalid-range-format.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/invalid-range.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/invalid-range.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/lowercase-feature.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/lowercase-feature.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/lowercase-postag-in-empty.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/lowercase-postag-in-empty.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/lowercase-postag.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/lowercase-postag.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/lowercase-value.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/lowercase-value.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/malformed_deps.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/malformed_deps.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/misindexed-empty-node.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/misindexed-empty-node.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/misordered-feature.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/misordered-feature.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/misordered-multiword.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/misordered-multiword.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/misplaced-comment-end.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/misplaced-comment-end.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/misplaced-comment-mid.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/misplaced-comment-mid.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/missing-final-line.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/missing-final-line.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/missing-space-after.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/missing-space-after.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/multiple-sent_id.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/multiple-sent_id.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/multiword-with-pos.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/multiword-with-pos.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/no-sent_id.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/no-sent_id.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/non-proj.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/non-proj.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/nonsequential-id.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/nonsequential-id.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/overlapping-multiword.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/overlapping-multiword.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/self-cycle-deps.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/self-cycle-deps.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/self-cycle-head.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/self-cycle-head.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/space-in-field.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/space-in-field.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/tanl-broken.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/tanl-broken.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/token_with_cols_filled.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/token_with_cols_filled.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/trailing-tab.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/trailing-tab.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/uppercase-deprel.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/uppercase-deprel.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/uppercase-deps-deprel.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/uppercase-deps-deprel.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/nonvalid/whitespace_nonv.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/nonvalid/whitespace_nonv.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/empty-file.conllu: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/empty-nodes.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/empty-nodes.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/id_test_part1.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/id_test_part1.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/id_test_part2.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/id_test_part2.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/layered-features.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/layered-features.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/maximal-empty-node.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/maximal-empty-node.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/minimal-empty-node.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/minimal-empty-node.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/multiple-features.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/multiple-features.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/tanl.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/tanl.conllu -------------------------------------------------------------------------------- /tools/extras/tools/test-cases/valid/whitespace.conllu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/test-cases/valid/whitespace.conllu -------------------------------------------------------------------------------- /tools/extras/tools/text_without_spaces.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/text_without_spaces.pl -------------------------------------------------------------------------------- /tools/extras/tools/udlib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/udlib.pm -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/v2-conversion/README.md -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/v2-conversion/convert.py -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/depgraph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/v2-conversion/depgraph_utils.py -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/nmod_obl_adjudication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/v2-conversion/nmod_obl_adjudication.py -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/processors_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/v2-conversion/processors_en.py -------------------------------------------------------------------------------- /tools/extras/tools/v2-conversion/processors_universal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/v2-conversion/processors_universal.py -------------------------------------------------------------------------------- /tools/extras/tools/validate-python2-obsolete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/validate-python2-obsolete.py -------------------------------------------------------------------------------- /tools/extras/tools/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/validate.py -------------------------------------------------------------------------------- /tools/extras/tools/validate_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/validate_all.sh -------------------------------------------------------------------------------- /tools/extras/tools/validate_repo_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/tools/validate_repo_metadata.py -------------------------------------------------------------------------------- /tools/extras/ud_analyze/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/extras/ud_analyze/lemmas_detail.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/ud_analyze/lemmas_detail.html.template -------------------------------------------------------------------------------- /tools/extras/ud_analyze/lemmas_index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/ud_analyze/lemmas_index.html.template -------------------------------------------------------------------------------- /tools/extras/ud_analyze/make_lemma_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/extras/ud_analyze/make_lemma_doc.py -------------------------------------------------------------------------------- /tools/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/news.py -------------------------------------------------------------------------------- /tools/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !docs-automation/* -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undertheseanlp/resources/HEAD/tools/utils.py --------------------------------------------------------------------------------