awacke1 commited on
Commit
69777eb
·
1 Parent(s): a793f32

Create new file

Browse files
Files changed (1) hide show
  1. app.py +37 -0
app.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #SNOMED:
2
+ from datasets import load_dataset
3
+ dataset = load_dataset("awacke1/SNOMED-CT-Code-Value-Semantic-Set.csv")
4
+
5
+ #-or-
6
+ #git lfs install
7
+ #git clone https://huggingface.co/datasets/awacke1/SNOMED-CT-Code-Value-Semantic-Set.csv
8
+ # if you want to clone without large files – just their pointers
9
+ # prepend your git clone with the following env var:
10
+ #GIT_LFS_SKIP_SMUDGE=1
11
+
12
+ #---
13
+
14
+ #eCQM:
15
+
16
+ from datasets import load_dataset
17
+ dataset = load_dataset("awacke1/eCQM-Code-Value-Semantic-Set.csv")
18
+
19
+ #-or-
20
+ #git lfs install
21
+ #git clone https://huggingface.co/datasets/awacke1/eCQM-Code-Value-Semantic-Set.csv
22
+ # if you want to clone without large files – just their pointers
23
+ # prepend your git clone with the following env var:
24
+ #GIT_LFS_SKIP_SMUDGE=1
25
+
26
+ #---
27
+
28
+ from datasets import load_dataset
29
+ dataset = load_dataset("awacke1/LOINC-CodeSet-Value-Description.csv")
30
+
31
+ #-or-
32
+
33
+ #git lfs install
34
+ #git clone https://huggingface.co/datasets/awacke1/LOINC-CodeSet-Value-Description.csv
35
+ # if you want to clone without large files – just their pointers
36
+ # prepend your git clone with the following env var:
37
+ #GIT_LFS_SKIP_SMUDGE=1