Anonymous Authors commited on
Commit
74f6150
·
1 Parent(s): 9b9fe26

Point self-clone URL and download command to renamed repo

Browse files

README's git clone now targets huggingface.co/ViTeX-Bench/ViTeX-Edit-14B
and cd's into ViTeX-Edit-14B; inference_example.py's diagnostic for a
missing base model now suggests
huggingface-cli download ViTeX-Bench/ViTeX-Edit-14B
The bundled weights filename (vitex_14b.safetensors) is unchanged
since renaming it would invalidate every existing local clone.

Files changed (2) hide show
  1. README.md +1 -1
  2. inference_example.py +1 -1
README.md CHANGED
@@ -56,7 +56,7 @@ Self-contained: no extra clones or downloads needed.
56
 
57
  ```bash
58
  git lfs install
59
- git clone https://huggingface.co/ViTeX-Bench/ViTeX-14B && cd ViTeX-14B
60
  conda create -n vitex python=3.12 -y && conda activate vitex
61
  pip install -r requirements.txt
62
 
 
56
 
57
  ```bash
58
  git lfs install
59
+ git clone https://huggingface.co/ViTeX-Bench/ViTeX-Edit-14B && cd ViTeX-Edit-14B
60
  conda create -n vitex python=3.12 -y && conda activate vitex
61
  pip install -r requirements.txt
62
 
inference_example.py CHANGED
@@ -102,7 +102,7 @@ def build_pipeline(device="cuda:0"):
102
  raise FileNotFoundError(
103
  f"No diffusion_pytorch_model-*.safetensors found under {BASE_DIR}. "
104
  "Make sure you downloaded the full repo via `git lfs clone` or "
105
- "`huggingface-cli download ViTeX-Bench/ViTeX-14B`."
106
  )
107
  if not os.path.isfile(ADAPTER_CKPT):
108
  raise FileNotFoundError(f"Missing trained adapter: {ADAPTER_CKPT}")
 
102
  raise FileNotFoundError(
103
  f"No diffusion_pytorch_model-*.safetensors found under {BASE_DIR}. "
104
  "Make sure you downloaded the full repo via `git lfs clone` or "
105
+ "`huggingface-cli download ViTeX-Bench/ViTeX-Edit-14B`."
106
  )
107
  if not os.path.isfile(ADAPTER_CKPT):
108
  raise FileNotFoundError(f"Missing trained adapter: {ADAPTER_CKPT}")