kangxiaojiang commited on
Commit
e50c0ce
·
verified ·
1 Parent(s): bd75602

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,3 +1,36 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - feature-extraction
5
+ language:
6
+ - en
7
+ tags:
8
+ - chemistry
9
+ - drug-discovery
10
+ - cheminformatics
11
+ - smiles
12
+ - molecular-generation
13
+ pretty_name: Curated Chemical Structures & Properties
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+ ### 🧪 Dataset Summary
18
+ The **Curated Chemical Structures & Properties** dataset is a foundational resource for cheminformatics and AI-driven drug discovery. It provides highly standardized molecular representations (Canonical and Isometric SMILES, InChI, InChIKey) alongside computed physicochemical properties and ClassyFire taxonomic classifications.
19
+
20
+ This dataset is ideal for training molecular generative models, predicting ADMET properties, or building structure-activity relationship (SAR) models.
21
+
22
+ ### 🚀 Key Features
23
+ - **Standardized Representations**: Includes `canonical_smiles`, `isometric_smiles`, and `inchi_key` for robust molecular matching.
24
+ - **Rich Physicochemical Features**: Pre-computed properties including Molecular Weight (`mwt`), LogP (`xlogp3`), Hydrogen Bond Donors (`hbd`), and Acceptors (`hba`).
25
+ - **Deep Taxonomic Classification**: Features hierarchical ClassyFire annotations (Kingdom, Superclass, Class, Direct Parent) for chemical space analysis.
26
+
27
+ ### 💻 Quick Start & MCP Integration
28
+ Integrate chemical structure search into your LLM workflows using our **Chemical Structure MCP Tool** on GitHub.
29
+
30
+ ```python
31
+ from datasets import load_dataset
32
+
33
+ dataset = load_dataset("your-org/chemical-structures", split="train")
34
+ print(dataset[0]["canonical_smiles"])
35
+ # Output: 'CC1(C2=C(C=CC3=CC=CC=C32)C4=C1C(=NC=C4)C5=CC=CC=[C-]5)C'
36
+ ```