molvision commited on
Commit
53dee2f
·
verified ·
1 Parent(s): 7a10fcc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +59 -30
README.md CHANGED
@@ -1,30 +1,59 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- features:
5
- - name: Question
6
- dtype: string
7
- - name: Answer
8
- dtype: string
9
- - name: TargetMolecule
10
- dtype: string
11
- - name: SampleMethod
12
- dtype: string
13
- - name: SampleNum
14
- dtype: int64
15
- - name: SampleRep
16
- dtype: string
17
- - name: image
18
- dtype: image
19
- splits:
20
- - name: train
21
- num_bytes: 13783142
22
- num_examples: 1300
23
- download_size: 12625189
24
- dataset_size: 13783142
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: train
29
- path: data/train-*
30
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - question-answering
5
+ - image-to-text
6
+ language:
7
+ - en
8
+ tags:
9
+ - chemistry
10
+ - molecules
11
+ - SMILES
12
+ - molecular-biology
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # Clintox-V-SMILES Train Dataset
18
+
19
+ ## Dataset Description
20
+
21
+ This dataset contains molecular data with visual representations for Clintox related compounds.
22
+
23
+ ### Features
24
+
25
+ - **Question**: Question related to the molecule
26
+ - **Answer**: Corresponding answer
27
+ - **TargetMolecule**: SMILES representation of the target molecule
28
+ - **SampleMethod**: Method used for sampling
29
+ - **SampleNum**: Sample number
30
+ - **SampleRep**: Sample repetition
31
+ - **image**: Generated molecular structure image from SMILES
32
+
33
+ ### Dataset Statistics
34
+
35
+ - **Total samples**: 1300
36
+ - **Image format**: PIL Image (RGB)
37
+ - **Image size**: 300x300 pixels
38
+
39
+ ### Usage
40
+
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ dataset = load_dataset("molvision/Clintox-V-Train")
45
+ ```
46
+
47
+ ### Data Fields
48
+
49
+ - `Question` (string): Question text
50
+ - `Answer` (string): Answer text
51
+ - `TargetMolecule` (string): SMILES representation
52
+ - `SampleMethod` (string): Sampling method
53
+ - `SampleNum` (int): Sample number
54
+ - `SampleRep` (string): Sample repetition
55
+ - `image` (PIL.Image): Molecular structure visualization
56
+
57
+ ### Citation
58
+
59
+ Please cite this dataset if you use it in your research.