kangxiaojiang commited on
Commit
3a30a9a
·
verified ·
1 Parent(s): 8e40357

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -20
README.md CHANGED
@@ -12,37 +12,32 @@ tags:
12
  - molecular-generation
13
  pretty_name: Curated Chemical Structures & Properties
14
  size_categories:
15
- - 1K<n<10K
16
  ---
17
 
18
- 🧪 Dataset Summary
19
 
20
- The Curated Chemical Structures & Properties dataset is a 5,000-compound resource for cheminformatics and AI-driven drug discovery. It provides standardized molecular representations (Canonical SMILES, Isometric SMILES, InChI, InChIKey) alongside computed physicochemical properties and hierarchical ClassyFire taxonomic classifications.
21
 
22
- Ideal for training molecular generative models, predicting ADMET properties, or building structure-activity relationship (SAR) models.
23
 
24
- 🚀 Key Features
25
-
26
-
27
- Standardized Representations: Includes canonical_smiles, isometric_smiles, and inchi_key for robust molecular matching.
28
-
29
-
30
- Rich Physicochemical Features: Pre-computed properties including Molecular Weight (mwt), LogP (xlogp3), Hydrogen Bond Donors (hbd), and Acceptors (hba).
31
-
32
-
33
- Deep Taxonomic Classification: Hierarchical ClassyFire annotations (Kingdom, Superclass, Class, Direct Parent) for chemical space analysis.
34
-
35
- 💻 Quick Start & MCP Integration
36
-
37
- Integrate chemical structure search into your LLM workflows using our Chemical Structure MCP Tool on GitHub.
38
 
 
39
 
40
  ```python
41
  from datasets import load_dataset
42
 
43
  dataset = load_dataset("your-org/chemical-structures", split="train")
44
- print(dataset[0]["canonical_smiles"])
45
- # Output: 'CC1(C2=C(C=CC3=CC=CC=C32)C4=C1C(=NC=C4)C5=CC=CC=[C-]5)C'
 
 
 
 
46
  ```
47
 
48
  ## 🔗 Resources
 
12
  - molecular-generation
13
  pretty_name: Curated Chemical Structures & Properties
14
  size_categories:
15
+ - 1M<n<10M
16
  ---
17
 
18
+ ⚗️ **Dataset Summary**
19
 
20
+ A large-scale chemical structure database with 1 million compounds, providing standardized cheminformatics identifiers and taxonomic classification. Designed for structure-based drug discovery, similarity search, and chemical space analysis.
21
 
22
+ **🚀 Key Features**
23
 
24
+ - **Standard Identifiers:** Every record includes InChI, InChIKey, and molecular formula; isomeric SMILES present for 99.8% of records.
25
+ - **Multiple Name Forms:** JChem-generated names (97%), IUPAC names (22%), and compound names where available.
26
+ - **ClassyFire Taxonomy:** Hierarchical chemical classification for ~11% of records, enabling class-level filtering.
27
+ - **Patent Linkage:** `patent_count` connects compounds to their IP landscape.
 
 
 
 
 
 
 
 
 
 
28
 
29
+ **💻 Quick Start**
30
 
31
  ```python
32
  from datasets import load_dataset
33
 
34
  dataset = load_dataset("your-org/chemical-structures", split="train")
35
+ print(dataset[0]["inchi_key"])
36
+ # Output: 'AAACIFUGYABHIU-UHFFFAOYSA-M'
37
+ print(dataset[0]["isometric_smiles"])
38
+ # Output: '[O-][Cl](=O)(=O)=O.[I-][Pt++]12[NH2]CC[NH]1CC[NH2]2'
39
+ print(dataset[0]["mol_formula"])
40
+ # Output: 'C4H13ClIN3O4Pt'
41
  ```
42
 
43
  ## 🔗 Resources