diullio commited on
Commit
fe0bd63
·
verified ·
1 Parent(s): cf658ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -3
README.md CHANGED
@@ -1,3 +1,37 @@
1
- ---
2
- license: gpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ ---
4
+
5
+ # Thermopred
6
+ This repository contains the official data, algorithms, and ML models present in the paper "`AI-Enhanced Quantum Chemistry Dataset for Thermochemical Properties of API-Like Compounds and Their Degradants`".
7
+
8
+ ## How to use
9
+
10
+ Download the repository manually or via git:
11
+
12
+ ```shell
13
+ $ git clone https://github.com/jeffrichardchemistry/thermopred
14
+ ```
15
+
16
+ Enter the `thermopred` directory and run the following command to install the python package:
17
+
18
+ ```shell
19
+ $ cd thermopred
20
+
21
+ $ python3 setup.py install
22
+ ```
23
+
24
+ Once this is done, it is now possible to use the package by simply importing the modules. Import the modules as described below and pass a smiles for prediction.
25
+
26
+ ```python
27
+ from Thermopred.Enthalpie import EnthalpieEnergy
28
+ from Thermopred.GibbsEnergy import GibbsFreeEnergy
29
+
30
+ smiles='CN1C=CN(CCCN(c2cc(Cl)ccc2O)c2ccccc2S)CC1'
31
+
32
+ ee = EnthalpieEnergy()
33
+ result_enthalpie = ee.predict(smiles)
34
+
35
+ gfe = GibbsFreeEnergy()
36
+ gfe.predict(smiles=smiles)
37
+ ```