hcaoaf commited on
Commit
cfe06b0
·
verified ·
1 Parent(s): cc033ed

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md CHANGED
@@ -1,3 +1,39 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ ## Data Source
6
+ Suzuki-Miyaura Dataset. Converted from [ChemLLMBench](https://github.com/ChemFoundationModels/ChemLLMBench)\, which can be referred to Suzuki High-Throughput Experiment (HTE) dataset.\
7
+ We build the instruction dataset strictly following ChemLLMBench instruction template. But We convert the output into 'integer' (as a ranking task).\
8
+ In general, three different tasks involved:
9
+ - `reagent selection` (train: #2387, test: #100)
10
+ - `solvent selection` (train:#1155, test: #100)
11
+ - `ligand selection` (train:#413, test: #100)
12
+
13
+
14
+ ## Data Stats
15
+ Train: 3955 \
16
+ Test: 300
17
+
18
+ Example:
19
+ ```json
20
+ {
21
+ 'task': 'reagent_selection',
22
+ 'molecules': {'selfies': LIST[SELFIES]], 'smiles': LIST[SMILES]},
23
+ 'messages': [
24
+ {
25
+ 'content': 'You are an expert chemist. Given selected one reactant, two reagents and solvent of a Suzuki reaction, predict the optimal reactant that maximize the yield with the rest of reaction components by using your experienced chemical reactant selection knowledge. No explanations and other information. Only return the reactant smiles from the given list. Please strictly follow the format, the template are provided as follows:\nGiven the rest of reaction components:\nreactant: reactant 1\n ligand: ligand 1\n base: base 1\n solvent: solvent 1 \nReactant list: reactant1,reactant2,reactant3,.etc\nOptimal reactant: reactant2 ',
26
+ 'role': 'system'
27
+ },
28
+ {
29
+ 'content': 'Given the rest of reaction components:\nreactant: <molecule_2d>\nligand: <molecule_2d>\nsolvent: <molecule_2d>\nbase: <molecule_2d> \nReactants list for selection:\n<molecule_2d>,<molecule_2d>,<molecule_2d>\nOptimal reactant:\n',
30
+ 'role': 'user'
31
+ },
32
+ {
33
+ 'content': '2',
34
+ 'role': 'assistant'
35
+ }
36
+ ],
37
+ 'id': 0
38
+ }
39
+ ```