Spaces:
Paused
Paused
File size: 1,143 Bytes
4d8b8e1 69777eb 4d8b8e1 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 38 39 40 41 42 43 44 45 46 47 |
from datasets import load_dataset
#LOINC
try:
datasetLOINC = load_dataset("awacke1/LOINC-CodeSet-Value-Description.csv")
#SNOMED:
try:
datasetSNOMED = load_dataset("awacke1/SNOMED-CT-Code-Value-Semantic-Set.csv")
#eCQM:
try:
dataseteCQM = load_dataset("awacke1/eCQM-Code-Value-Semantic-Set.csv")
print(datasetLOINC)
print(datasetSNOMED)
print(dataseteCQM)
#-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
#---
#-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
#---
#-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 |