kangxiaojiang commited on
Commit
4215678
·
verified ·
1 Parent(s): 6143c91

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -11
README.md CHANGED
@@ -12,23 +12,31 @@ size_categories:
12
  - 10K<n<100K
13
  ---
14
 
15
- 🏛️ Dataset Summary
16
 
17
- The Global Medical Institutions & Hierarchy Graph is a structured directory of 11,521 healthcare and research institutions spanning multiple countries. Crucially, it captures organizational hierarchy (ultimate_parent_id), making it an asset for healthcare knowledge graphs, entity resolution, and clinical trial site mapping.
18
 
19
- 🚀 Key Features
20
 
21
-
22
- Multi-Country Coverage: Institutions drawn from major countries, enabling cross-border healthcare network analysis.
 
23
 
24
-
25
- Hierarchical Mapping: ultimate_parent_id maps complex institutional networks (e.g., university hospitals to parent universities).
26
 
27
-
28
- Multilingual Support: Includes local display names (display_name) and English translations (name_en).
29
 
30
-
31
- Search Optimized: Pre-computed search_score for integration into search engines and RAG pipelines.
 
 
 
 
 
 
 
 
32
 
33
  ## 🔗 Resources
34
  - **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)
 
12
  - 10K<n<100K
13
  ---
14
 
15
+ 🏛️ **Dataset Summary**
16
 
17
+ A global directory of medical institutions and organizations covering 14,065 entities. Provides basic organizational profiles with drug pipeline association counts.
18
 
19
+ **🚀 Key Features**
20
 
21
+ - **Global Coverage:** `country` field spans institutions worldwide.
22
+ - **Drug Association Count:** `total_drug` indicates the number of drugs associated with each institution.
23
+ - **Organization Size:** `employee_number` available for ~49% of records.
24
 
25
+ **💻 Quick Start & MCP Integration**
 
26
 
27
+ ```python
28
+ from datasets import load_dataset
29
 
30
+ dataset = load_dataset("your-org/medical-institutions", split="train")
31
+ print(dataset[0]["name"])
32
+ # Output: 'Unlimited Bio'
33
+ print(dataset[0]["country"])
34
+ # Output: 'Honduras'
35
+ print(dataset[0]["total_drug"])
36
+ # Output: 1
37
+ ```
38
+
39
+ ---
40
 
41
  ## 🔗 Resources
42
  - **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)