├── Elsevier_articles_archive ├── DOI_input_pattern_.xlsx ├── README.md ├── __init__.py ├── abstract_extract ├── article_dois.py ├── doi_catch.py └── main.py ├── HEA_use_case └── dictionary_HEAs.ini ├── LICENSE ├── README.md ├── Superalloydigger API document.ipynb ├── XML_downloads └── downloads.py ├── configuration_compile_instruction ├── Configuration file instruction.ipynb ├── dictionary.ini └── dictionary.py ├── database ├── extracted_files │ ├── density.xlsx │ ├── liquidus.xlsx │ ├── solidus.xlsx │ └── solvus.xlsx └── solvus数据集.xlsx ├── input_html └── 10.1007-s11837-014-1181-y.html ├── input_txt └── 10.1016-j.msea.2014.09.074.txt ├── input_xml └── 10.1016-j.msea.2014.09.074.xml ├── m_output └── full_text │ └── invalid_file ├── other_articles_archive ├── __init__.py ├── html_download.py ├── html_parser.py ├── log_wp.py └── main.py ├── output_files └── invalid_file ├── output_tables └── invalid_file ├── pic_folder └── b96627c3f326953fce3452fd175f718.png ├── pipeline ├── Phrase_parse.py ├── Relation_extraciton_dp.py ├── Relation_extraciton_orig.py ├── T_pre_processor.py ├── class_modified.py ├── dictionary.ini ├── dictionary.py ├── file_io.py ├── get_all_attributes.py ├── get_full_text.py ├── get_tifo_from_html.py ├── html_parser.py ├── log_wp.py ├── main.py ├── other_journals.py ├── output_modified_triple.py ├── pre_processor.py ├── same_alloyname_value │ ├── Phrase_parse.py │ └── other_journals.py ├── sentence_positioner.py ├── table.py ├── table_info_html.py └── text_with_table.py ├── requirements.txt ├── table_extractor ├── elsevier_xml │ ├── class_modified.py │ ├── dictionary.py │ ├── log_wp.py │ └── table.py └── web_other_journals_html │ ├── get_tifo_from_html.py │ └── log_wp.py ├── text_extractor ├── Phrase_parse.py ├── Relation_extraciton.py ├── T_pre_processor.py ├── dictionary.py ├── file_io.py ├── get_all_attributes.py ├── get_full_text.py ├── log_wp.py ├── pre_processor.py └── sentence_positioner.py ├── txt_from_html └── invalid_file └── word embedding ├── README.md ├── __init__.py ├── load_word2vec.py └── main.py /Elsevier_articles_archive/DOI_input_pattern_.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/DOI_input_pattern_.xlsx -------------------------------------------------------------------------------- /Elsevier_articles_archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/README.md -------------------------------------------------------------------------------- /Elsevier_articles_archive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/__init__.py -------------------------------------------------------------------------------- /Elsevier_articles_archive/abstract_extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/abstract_extract -------------------------------------------------------------------------------- /Elsevier_articles_archive/article_dois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/article_dois.py -------------------------------------------------------------------------------- /Elsevier_articles_archive/doi_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/doi_catch.py -------------------------------------------------------------------------------- /Elsevier_articles_archive/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Elsevier_articles_archive/main.py -------------------------------------------------------------------------------- /HEA_use_case/dictionary_HEAs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/HEA_use_case/dictionary_HEAs.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/README.md -------------------------------------------------------------------------------- /Superalloydigger API document.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/Superalloydigger API document.ipynb -------------------------------------------------------------------------------- /XML_downloads/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/XML_downloads/downloads.py -------------------------------------------------------------------------------- /configuration_compile_instruction/Configuration file instruction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/configuration_compile_instruction/Configuration file instruction.ipynb -------------------------------------------------------------------------------- /configuration_compile_instruction/dictionary.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/configuration_compile_instruction/dictionary.ini -------------------------------------------------------------------------------- /configuration_compile_instruction/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/configuration_compile_instruction/dictionary.py -------------------------------------------------------------------------------- /database/extracted_files/density.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/database/extracted_files/density.xlsx -------------------------------------------------------------------------------- /database/extracted_files/liquidus.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/database/extracted_files/liquidus.xlsx -------------------------------------------------------------------------------- /database/extracted_files/solidus.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/database/extracted_files/solidus.xlsx -------------------------------------------------------------------------------- /database/extracted_files/solvus.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/database/extracted_files/solvus.xlsx -------------------------------------------------------------------------------- /database/solvus数据集.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/database/solvus数据集.xlsx -------------------------------------------------------------------------------- /input_html/10.1007-s11837-014-1181-y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/input_html/10.1007-s11837-014-1181-y.html -------------------------------------------------------------------------------- /input_txt/10.1016-j.msea.2014.09.074.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/input_txt/10.1016-j.msea.2014.09.074.txt -------------------------------------------------------------------------------- /input_xml/10.1016-j.msea.2014.09.074.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/input_xml/10.1016-j.msea.2014.09.074.xml -------------------------------------------------------------------------------- /m_output/full_text/invalid_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/m_output/full_text/invalid_file -------------------------------------------------------------------------------- /other_articles_archive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other_articles_archive/html_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/other_articles_archive/html_download.py -------------------------------------------------------------------------------- /other_articles_archive/html_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/other_articles_archive/html_parser.py -------------------------------------------------------------------------------- /other_articles_archive/log_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/other_articles_archive/log_wp.py -------------------------------------------------------------------------------- /other_articles_archive/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/other_articles_archive/main.py -------------------------------------------------------------------------------- /output_files/invalid_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/output_files/invalid_file -------------------------------------------------------------------------------- /output_tables/invalid_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/output_tables/invalid_file -------------------------------------------------------------------------------- /pic_folder/b96627c3f326953fce3452fd175f718.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pic_folder/b96627c3f326953fce3452fd175f718.png -------------------------------------------------------------------------------- /pipeline/Phrase_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/Phrase_parse.py -------------------------------------------------------------------------------- /pipeline/Relation_extraciton_dp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/Relation_extraciton_dp.py -------------------------------------------------------------------------------- /pipeline/Relation_extraciton_orig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/Relation_extraciton_orig.py -------------------------------------------------------------------------------- /pipeline/T_pre_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/T_pre_processor.py -------------------------------------------------------------------------------- /pipeline/class_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/class_modified.py -------------------------------------------------------------------------------- /pipeline/dictionary.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/dictionary.ini -------------------------------------------------------------------------------- /pipeline/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/dictionary.py -------------------------------------------------------------------------------- /pipeline/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/file_io.py -------------------------------------------------------------------------------- /pipeline/get_all_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/get_all_attributes.py -------------------------------------------------------------------------------- /pipeline/get_full_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/get_full_text.py -------------------------------------------------------------------------------- /pipeline/get_tifo_from_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/get_tifo_from_html.py -------------------------------------------------------------------------------- /pipeline/html_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/html_parser.py -------------------------------------------------------------------------------- /pipeline/log_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/log_wp.py -------------------------------------------------------------------------------- /pipeline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/main.py -------------------------------------------------------------------------------- /pipeline/other_journals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/other_journals.py -------------------------------------------------------------------------------- /pipeline/output_modified_triple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/output_modified_triple.py -------------------------------------------------------------------------------- /pipeline/pre_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/pre_processor.py -------------------------------------------------------------------------------- /pipeline/same_alloyname_value/Phrase_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/same_alloyname_value/Phrase_parse.py -------------------------------------------------------------------------------- /pipeline/same_alloyname_value/other_journals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/same_alloyname_value/other_journals.py -------------------------------------------------------------------------------- /pipeline/sentence_positioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/sentence_positioner.py -------------------------------------------------------------------------------- /pipeline/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/table.py -------------------------------------------------------------------------------- /pipeline/table_info_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/table_info_html.py -------------------------------------------------------------------------------- /pipeline/text_with_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/pipeline/text_with_table.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/requirements.txt -------------------------------------------------------------------------------- /table_extractor/elsevier_xml/class_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/table_extractor/elsevier_xml/class_modified.py -------------------------------------------------------------------------------- /table_extractor/elsevier_xml/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/table_extractor/elsevier_xml/dictionary.py -------------------------------------------------------------------------------- /table_extractor/elsevier_xml/log_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/table_extractor/elsevier_xml/log_wp.py -------------------------------------------------------------------------------- /table_extractor/elsevier_xml/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/table_extractor/elsevier_xml/table.py -------------------------------------------------------------------------------- /table_extractor/web_other_journals_html/get_tifo_from_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/table_extractor/web_other_journals_html/get_tifo_from_html.py -------------------------------------------------------------------------------- /table_extractor/web_other_journals_html/log_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/table_extractor/web_other_journals_html/log_wp.py -------------------------------------------------------------------------------- /text_extractor/Phrase_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/Phrase_parse.py -------------------------------------------------------------------------------- /text_extractor/Relation_extraciton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/Relation_extraciton.py -------------------------------------------------------------------------------- /text_extractor/T_pre_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/T_pre_processor.py -------------------------------------------------------------------------------- /text_extractor/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/dictionary.py -------------------------------------------------------------------------------- /text_extractor/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/file_io.py -------------------------------------------------------------------------------- /text_extractor/get_all_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/get_all_attributes.py -------------------------------------------------------------------------------- /text_extractor/get_full_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/get_full_text.py -------------------------------------------------------------------------------- /text_extractor/log_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/log_wp.py -------------------------------------------------------------------------------- /text_extractor/pre_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/pre_processor.py -------------------------------------------------------------------------------- /text_extractor/sentence_positioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/text_extractor/sentence_positioner.py -------------------------------------------------------------------------------- /txt_from_html/invalid_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/txt_from_html/invalid_file -------------------------------------------------------------------------------- /word embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/word embedding/README.md -------------------------------------------------------------------------------- /word embedding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/word embedding/__init__.py -------------------------------------------------------------------------------- /word embedding/load_word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/word embedding/load_word2vec.py -------------------------------------------------------------------------------- /word embedding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MGEdata/SuperalloyDigger/HEAD/word embedding/main.py --------------------------------------------------------------------------------