kangxiaojiang commited on
Commit
5dac6cd
·
verified ·
1 Parent(s): 8c8e37f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -11
README.md CHANGED
@@ -12,24 +12,33 @@ size_categories:
12
  - 1K<n<10K
13
  ---
14
 
15
- 💊 Dataset Summary
16
 
17
- The Global Drug Development & Classification Database contains 1,000 pharmaceutical assets sampled across all development stages, with deliberate enrichment of early-phase compounds (Preclinical, Phase I, Phase II) to support discovery-stage AI research. It tracks regulatory milestones including New Molecular Entity (NME), First-in-Class, and Qualified Infectious Disease Product (QIDP) designations.
18
 
19
- 🚀 Key Features
20
 
21
-
22
- Phase-Enriched Sampling: Early-stage compounds are over-represented to support discovery and lead optimization workflows.
 
 
23
 
24
-
25
- Regulatory Milestones: Boolean flags for is_nme, is_first_in_class, and is_qidp.
26
 
27
-
28
- Global Development Tracking: global_highest_dev_status captures a drug's current progression from discovery to approval.
29
 
30
- 💻 Quick Start & MCP Integration
 
 
 
 
 
 
 
 
 
31
 
32
- Connect your AI agents to global drug intelligence using our Drug Discovery MCP Tool on GitHub.
33
 
34
  ## 🔗 Resources
35
  - **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)
 
12
  - 1K<n<10K
13
  ---
14
 
15
+ 💊 **Dataset Summary**
16
 
17
+ A curated drug intelligence database covering 2,175 therapeutic compounds with multilingual entity resolution. Each record links a drug to its biological targets, disease indications, development status, and approval history.
18
 
19
+ **🚀 Key Features**
20
 
21
+ - **Multilingual Entities:** Drug names, aliases, targets, and disease indications are all provided in both Chinese and English.
22
+ - **Target & Indication Mapping:** Structured `target` and `disease` arrays enable drug-target-disease network construction.
23
+ - **Development Status:** `global_highest_dev_status` and `first_approved_date` track the regulatory lifecycle.
24
+ - **Drug Typing:** `drug_type` classifies modality (e.g., Fc fusion protein, Biosimilar, small molecule).
25
 
26
+ **💻 Quick Start**
 
27
 
28
+ ```python
29
+ from datasets import load_dataset
30
 
31
+ dataset = load_dataset("your-org/drug-intelligence", split="train")
32
+ record = dataset[0]
33
+ en_name = next(n["name"] for n in record["drug_name"] if n["lang"] == "EN")
34
+ print(en_name)
35
+ # Output: 'Aflibercept Biosimilar(Zakłady Farmaceutyczne Polpharma SA)'
36
+ print(record["global_highest_dev_status"])
37
+ # Output: 'Approved'
38
+ print(record["drug_type"])
39
+ # Output: ['Fc fusion protein', 'Biosimilar']
40
+ ```
41
 
 
42
 
43
  ## 🔗 Resources
44
  - **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)