FoolDev Claude Opus 4.7 commited on
Commit
0c5bee4
·
1 Parent(s): e03e10e

.gitignore: whitelist Qwen sharded safetensors for mirror

Browse files

Pre-step for re-mirroring Qwen/Qwen3.6-27B's safetensors set into
this repo. HF's preupload API reads the destination repo's gitignore
to decide shouldIgnore per file, so this needs to be live on HF
before `hf upload-large-folder` runs against it.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

Files changed (1) hide show
  1. .gitignore +6 -0
.gitignore CHANGED
@@ -15,7 +15,13 @@ venv/
15
  # These re-stamp general.architecture and are not loadable by current
16
  # ollama / llama.cpp; don't track or push them.
17
  Thanatos-27B.*.qwen[0-9]*.gguf
 
 
 
 
 
18
  *.safetensors
 
19
  *.bin
20
 
21
  # Build / runtime artifacts that get created if anyone runs hf download or
 
15
  # These re-stamp general.architecture and are not loadable by current
16
  # ollama / llama.cpp; don't track or push them.
17
  Thanatos-27B.*.qwen[0-9]*.gguf
18
+ # Safetensors. We mirror Qwen/Qwen3.6-27B's sharded set here so
19
+ # `AutoModelForCausalLM.from_pretrained("FoolDev/Thanatos-27B")`
20
+ # works in one pull. Allowlist the upstream Qwen naming pattern;
21
+ # other safetensors (intermediate checkpoints, random downloads)
22
+ # stay ignored.
23
  *.safetensors
24
+ !model-*-of-*.safetensors
25
  *.bin
26
 
27
  # Build / runtime artifacts that get created if anyone runs hf download or