Spaces:
Paused
Paused
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 |