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