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