Bump to v1.0, point at the renamed LoRA repo
Browse files- LoRA repo: systms/ACTION → systms/SYSTMS-ACTION-LoRA-Qwen-Image-Edit-2511
- Filename unchanged (QWEN_EDIT_ACTION_V2.safetensors) — no rename needed
- Version pill + eyebrow: v0.9 → v1.0
- CLAUDE.md updated to match
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- CLAUDE.md +3 -3
- app.py +1 -1
- static/action-variants.jsx +1 -1
- static/index.html +1 -1
CLAUDE.md
CHANGED
|
@@ -5,13 +5,13 @@ Image-to-image AI transformation on HuggingFace Spaces. Applies the custom SYSTM
|
|
| 5 |
|
| 6 |
## Status
|
| 7 |
**Scaffold COMPLETE.** Ready to test. Requires:
|
| 8 |
-
1. `HF_TOKEN` secret set on the HF Space (read access to private repo `systms/ACTION`)
|
| 9 |
2. HF Space created at `systms/ACTION-HF` (or similar — not yet deployed)
|
| 10 |
|
| 11 |
## Stack
|
| 12 |
- **Backend:** `gradio.Server` (Python) — `app.py`
|
| 13 |
- **Inference:** `QwenImageEditPlusPipeline` (local patched copy in `qwenimage/`) + 2 LoRAs:
|
| 14 |
-
- `systms/ACTION` → `QWEN_EDIT_ACTION_V2.safetensors` (custom, private)
|
| 15 |
- `lightx2v/Qwen-Image-Edit-2511-Lightning` → 8-step Lightning fp32
|
| 16 |
- **GPU:** ZeroGPU via `@spaces.GPU(duration=90)`
|
| 17 |
- **Frontend:** Vanilla HTML/CSS/JS matching FLDS design system (glass panels, JetBrains Mono, #FE0000 red, before/after slider)
|
|
@@ -41,7 +41,7 @@ Mock mode returns input unchanged after a 2s delay — useful for frontend itera
|
|
| 41 |
|
| 42 |
## Deploying to HF Spaces
|
| 43 |
1. Create a new HF Space (SDK: gradio, hardware: ZeroGPU)
|
| 44 |
-
2. Set secret `HF_TOKEN` with read access to `systms/ACTION`
|
| 45 |
3. Push this folder to the Space's git remote
|
| 46 |
4. First boot will take ~5–10 min (downloading base model + LoRAs)
|
| 47 |
|
|
|
|
| 5 |
|
| 6 |
## Status
|
| 7 |
**Scaffold COMPLETE.** Ready to test. Requires:
|
| 8 |
+
1. `HF_TOKEN` secret set on the HF Space (read access to private repo `systms/SYSTMS-ACTION-LoRA-Qwen-Image-Edit-2511`)
|
| 9 |
2. HF Space created at `systms/ACTION-HF` (or similar — not yet deployed)
|
| 10 |
|
| 11 |
## Stack
|
| 12 |
- **Backend:** `gradio.Server` (Python) — `app.py`
|
| 13 |
- **Inference:** `QwenImageEditPlusPipeline` (local patched copy in `qwenimage/`) + 2 LoRAs:
|
| 14 |
+
- `systms/SYSTMS-ACTION-LoRA-Qwen-Image-Edit-2511` → `QWEN_EDIT_ACTION_V2.safetensors` (custom, private)
|
| 15 |
- `lightx2v/Qwen-Image-Edit-2511-Lightning` → 8-step Lightning fp32
|
| 16 |
- **GPU:** ZeroGPU via `@spaces.GPU(duration=90)`
|
| 17 |
- **Frontend:** Vanilla HTML/CSS/JS matching FLDS design system (glass panels, JetBrains Mono, #FE0000 red, before/after slider)
|
|
|
|
| 41 |
|
| 42 |
## Deploying to HF Spaces
|
| 43 |
1. Create a new HF Space (SDK: gradio, hardware: ZeroGPU)
|
| 44 |
+
2. Set secret `HF_TOKEN` with read access to `systms/SYSTMS-ACTION-LoRA-Qwen-Image-Edit-2511`
|
| 45 |
3. Push this folder to the Space's git remote
|
| 46 |
4. First boot will take ~5–10 min (downloading base model + LoRAs)
|
| 47 |
|
app.py
CHANGED
|
@@ -97,7 +97,7 @@ NEGATIVE_PROMPT = (
|
|
| 97 |
DEFAULT_STEPS = 8
|
| 98 |
DEFAULT_GUIDANCE = 1.0
|
| 99 |
|
| 100 |
-
ACTION_LORA_REPO = "systms/ACTION"
|
| 101 |
ACTION_LORA_FILE = "QWEN_EDIT_ACTION_V2.safetensors"
|
| 102 |
|
| 103 |
LIGHTNING_LORA_REPO = "lightx2v/Qwen-Image-Edit-2511-Lightning"
|
|
|
|
| 97 |
DEFAULT_STEPS = 8
|
| 98 |
DEFAULT_GUIDANCE = 1.0
|
| 99 |
|
| 100 |
+
ACTION_LORA_REPO = "systms/SYSTMS-ACTION-LoRA-Qwen-Image-Edit-2511"
|
| 101 |
ACTION_LORA_FILE = "QWEN_EDIT_ACTION_V2.safetensors"
|
| 102 |
|
| 103 |
LIGHTNING_LORA_REPO = "lightx2v/Qwen-Image-Edit-2511-Lightning"
|
static/action-variants.jsx
CHANGED
|
@@ -59,7 +59,7 @@ function HeroVariant({ onFile, heroImage }) {
|
|
| 59 |
|
| 60 |
<div className="left">
|
| 61 |
<div>
|
| 62 |
-
<div className="eyebrow"><span className="line"/>SYSTMS / ACTION ·
|
| 63 |
<h1 className="u-dot">SYSTMS<br/>// ACTION</h1>
|
| 64 |
</div>
|
| 65 |
<div>
|
|
|
|
| 59 |
|
| 60 |
<div className="left">
|
| 61 |
<div>
|
| 62 |
+
<div className="eyebrow"><span className="line"/>SYSTMS / ACTION · v1.0</div>
|
| 63 |
<h1 className="u-dot">SYSTMS<br/>// ACTION</h1>
|
| 64 |
</div>
|
| 65 |
<div>
|
static/index.html
CHANGED
|
@@ -73,7 +73,7 @@
|
|
| 73 |
<div class="sub">ACTION</div>
|
| 74 |
</div>
|
| 75 |
<div class="right">
|
| 76 |
-
<div class="pill">
|
| 77 |
<div class="pill red">● ONLINE</div>
|
| 78 |
<a id="auth-pill" class="pill" href="/login" style="text-decoration:none;cursor:pointer">SIGN IN ↗</a>
|
| 79 |
<a class="pill" href="https://www.systms.ai" target="_blank" rel="noopener" style="text-decoration:none;cursor:pointer">SYSTMS.AI ↗</a>
|
|
|
|
| 73 |
<div class="sub">ACTION</div>
|
| 74 |
</div>
|
| 75 |
<div class="right">
|
| 76 |
+
<div class="pill">v1.0 · ACT/BF16</div>
|
| 77 |
<div class="pill red">● ONLINE</div>
|
| 78 |
<a id="auth-pill" class="pill" href="/login" style="text-decoration:none;cursor:pointer">SIGN IN ↗</a>
|
| 79 |
<a class="pill" href="https://www.systms.ai" target="_blank" rel="noopener" style="text-decoration:none;cursor:pointer">SYSTMS.AI ↗</a>
|