molvision commited on
Commit
44f294f
·
verified ·
1 Parent(s): 9304541

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
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: Question
11
- dtype: string
12
- - name: Answer
13
- dtype: string
14
- - name: TargetMolecule
15
- dtype: string
16
- - name: SampleMethod
17
- dtype: string
18
- - name: SampleNum
19
- dtype: int64
20
- - name: SampleRep
21
- dtype: string
22
- - name: image
23
- dtype: image
24
- splits:
25
- - name: train
26
- num_bytes: 17901933
27
- num_examples: 1510
28
- download_size: 16747432
29
- dataset_size: 17901933
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
+ # BACE-V-SMILES Train Dataset
18
+
19
+ ## Dataset Description
20
+
21
+ This dataset contains molecular data with visual representations for BACE 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**: 1510
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/BACE-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.