hcaoaf commited on
Commit
ca19e4d
·
verified ·
1 Parent(s): 703a62a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md CHANGED
@@ -1,3 +1,59 @@
1
  ---
2
  license: mit
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - en
7
  ---
8
+
9
+ * Size: \
10
+ Train: 264,391 \
11
+ Valid: 33,072 \
12
+ Test: 32,987
13
+
14
+ * conversation template
15
+ ```python
16
+ 'conversation':{
17
+ [
18
+ "from": "human",
19
+ "value": <QUERY>, # randomly sample from query templates,
20
+ ],
21
+ [
22
+ "from": "gpt",
23
+ "value": <TEXT>, # description about the given molecule
24
+ ],
25
+ }
26
+ ```
27
+
28
+ * Each entry in the pickle contains:
29
+ ```
30
+ "graph":
31
+ [
32
+ "edge_index":, # array like (int64)
33
+ "edge_feat":, # array like (int64)
34
+ "node_feat":, # array like (int64)
35
+ "num_nodes":, # int
36
+ ],
37
+ "conversation:: # see above
38
+ ```
39
+
40
+ * 14 query templates
41
+ ```python
42
+ # bear me, we still use <image> token instead of somewhat <molecule> token
43
+ {
44
+ '<image>\nCould you give me a brief overview of this molecule?',
45
+ '<image>\nCould you provide a description of this molecule?',
46
+ '<image>\nDescribe this molecule.',
47
+ '<image>\nPlease give me some details about this molecule.',
48
+ '<image>\nProvide a brief overview of this molecule.',
49
+ '<image>\nProvide a description of this molecule.',
50
+ '<image>\nWhat can you tell me about this molecule?',
51
+ 'Could you give me a brief overview of this molecule?\n<image>',
52
+ 'Could you provide a description of this molecule?\n<image>',
53
+ 'Describe this molecule.\n<image>',
54
+ 'Please give me some details about this molecule.\n<image>',
55
+ 'Provide a brief overview of this molecule.\n<image>',
56
+ 'Provide a description of this molecule.\n<image>',
57
+ 'What can you tell me about this molecule?\n<image>'
58
+ }
59
+ ```