├── .DS_Store ├── .idea ├── .gitignore ├── .name ├── TCLRmodel.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── FMOdataset.csv ├── Introduction └── Introduction of TCLR.pdf ├── LICENSE ├── README.md ├── Researches ├── .DS_Store ├── JMI-Oxidation behavior of ferritic- martensitic steels │ ├── .DS_Store │ ├── FMO.pdf │ └── SupplementaryMaterials.pdf ├── JMST-HighEntropyAlloy │ ├── .DS_Store │ └── 1-s2.0-S1005030223000622-main.pdf └── Note.md ├── TCLR ├── .DS_Store └── TCLRalgorithm.py ├── Template ├── .DS_Store ├── Execution template │ ├── .DS_Store │ ├── Result of TCLR 2022.8.1-12.5 │ ├── Segmented │ │ ├── A_formula derived by gplearn.txt │ │ ├── all_dataset.csv │ │ ├── subdataset_0.csv │ │ ├── subdataset_1.csv │ │ ├── subdataset_10.csv │ │ ├── subdataset_11.csv │ │ ├── subdataset_12.csv │ │ ├── subdataset_13.csv │ │ ├── subdataset_14.csv │ │ ├── subdataset_15.csv │ │ ├── subdataset_16.csv │ │ ├── subdataset_17.csv │ │ ├── subdataset_2.csv │ │ ├── subdataset_3.csv │ │ ├── subdataset_4.csv │ │ ├── subdataset_5.csv │ │ ├── subdataset_6.csv │ │ ├── subdataset_7.csv │ │ ├── subdataset_8.csv │ │ └── subdataset_9.csv │ ├── template.py │ └── testdata.csv └── Readme.md └── User Guide └── User Guide_Jun 12 2022.pdf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | template.py -------------------------------------------------------------------------------- /.idea/TCLRmodel.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/.idea/TCLRmodel.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /FMOdataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/FMOdataset.csv -------------------------------------------------------------------------------- /Introduction/Introduction of TCLR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Introduction/Introduction of TCLR.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/README.md -------------------------------------------------------------------------------- /Researches/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Researches/.DS_Store -------------------------------------------------------------------------------- /Researches/JMI-Oxidation behavior of ferritic- martensitic steels /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Researches/JMI-Oxidation behavior of ferritic- martensitic steels /.DS_Store -------------------------------------------------------------------------------- /Researches/JMI-Oxidation behavior of ferritic- martensitic steels /FMO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Researches/JMI-Oxidation behavior of ferritic- martensitic steels /FMO.pdf -------------------------------------------------------------------------------- /Researches/JMI-Oxidation behavior of ferritic- martensitic steels /SupplementaryMaterials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Researches/JMI-Oxidation behavior of ferritic- martensitic steels /SupplementaryMaterials.pdf -------------------------------------------------------------------------------- /Researches/JMST-HighEntropyAlloy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Researches/JMST-HighEntropyAlloy/.DS_Store -------------------------------------------------------------------------------- /Researches/JMST-HighEntropyAlloy/1-s2.0-S1005030223000622-main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Researches/JMST-HighEntropyAlloy/1-s2.0-S1005030223000622-main.pdf -------------------------------------------------------------------------------- /Researches/Note.md: -------------------------------------------------------------------------------- 1 | # Relevant researches applied of TCLR 2 | -------------------------------------------------------------------------------- /TCLR/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/TCLR/.DS_Store -------------------------------------------------------------------------------- /TCLR/TCLRalgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/TCLR/TCLRalgorithm.py -------------------------------------------------------------------------------- /Template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/.DS_Store -------------------------------------------------------------------------------- /Template/Execution template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/.DS_Store -------------------------------------------------------------------------------- /Template/Execution template/Result of TCLR 2022.8.1-12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Result of TCLR 2022.8.1-12.5 -------------------------------------------------------------------------------- /Template/Execution template/Segmented/A_formula derived by gplearn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/A_formula derived by gplearn.txt -------------------------------------------------------------------------------- /Template/Execution template/Segmented/all_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/all_dataset.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_0.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_1.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_10.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_11.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_12.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_13.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_14.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_15.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_16.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_17.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_2.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_3.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_4.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_5.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_6.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_7.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_8.csv -------------------------------------------------------------------------------- /Template/Execution template/Segmented/subdataset_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/Segmented/subdataset_9.csv -------------------------------------------------------------------------------- /Template/Execution template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/template.py -------------------------------------------------------------------------------- /Template/Execution template/testdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Execution template/testdata.csv -------------------------------------------------------------------------------- /Template/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/Template/Readme.md -------------------------------------------------------------------------------- /User Guide/User Guide_Jun 12 2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bin-Cao/TCLRmodel/HEAD/User Guide/User Guide_Jun 12 2022.pdf --------------------------------------------------------------------------------