Text Generation
Transformers
Safetensors
PEFT
English
Chinese
qwen3_5
image-text-to-text
veriloop
veriloop-coder
code
coding-agent
software-engineering
repository-understanding
tool-use
lora
harness-engineering
evidence-binding
rollback
uncertainty-calibration
long-context
open-weights
conversational
Upload publish_veriloop_coder_e1.ps1
Browse files
publish_veriloop_coder_e1.ps1
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
$ErrorActionPreference = "Stop"
|
| 2 |
+
|
| 3 |
+
$repoRoot = Split-Path -Parent $MyInvocation.MyCommand.Path
|
| 4 |
+
$pythonScript = Join-Path $repoRoot "stage_and_publish_veriloop_coder_e1.py"
|
| 5 |
+
|
| 6 |
+
if (-not $env:HF_TOKEN -and -not $env:HUGGING_FACE_HUB_TOKEN) {
|
| 7 |
+
throw "HF_TOKEN or HUGGING_FACE_HUB_TOKEN is not set."
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
python -m pip install -U huggingface_hub
|
| 11 |
+
|
| 12 |
+
python $pythonScript `
|
| 13 |
+
--source-repo "Qwen/Qwen3-Coder-Next" `
|
| 14 |
+
--target-repo "veriloop-lab/veriLoop-coder-e1" `
|
| 15 |
+
--display-name "VeriLoop-Coder-E1" `
|
| 16 |
+
--stage-dir "D:\hf_stage\veriloop_coder_e1" `
|
| 17 |
+
--revision "main"
|