import os #import huggingface_hub #from huggingface_hub import snapshot_download #import open_oasis_master as oa os.system("huggingface-cli login --token $HF_TOKEN --add-to-git-credential") os.system("huggingface-cli download Etched/oasis-500m oasis500m.pt --local-dir ./") # DiT checkpoint os.system("huggingface-cli download Etched/oasis-500m vit-l-20.pt --local-dir ./") os.system("python ./open_oasis_master/generate.py") '''os.system("git clone https://github.com/etched-ai/open-oasis.git") os.system("cd open-oasis") os.system("pip install -r open-oasis/requirements.txt") os.system("huggingface-cli login") os.system("huggingface-cli download Etched/oasis-500m oasis500m.pt") # DiT checkpoint os.system("huggingface-cli download Etched/oasis-500m vit-l-20.pt") #from huggingface_hub import hf_hub_download #oas = hf_hub_download(repo_id="Etched/oasis-500m", filename="oasis500m.pt") #vit = hf_hub_download(repo_id="Etched/oasis-500m", filename="vit-l-20.pt") #print(oas,vit)'''