Upload folder using huggingface_hub
Browse files- app.py +96 -44
- run_logs_final.txt +544 -0
- run_logs_new.txt +239 -173
app.py
CHANGED
|
@@ -169,64 +169,116 @@ RESOLUTIONS = {
|
|
| 169 |
LTX_MOUNT = "/models/ltx"
|
| 170 |
GEMMA_MOUNT = "/models/gemma"
|
| 171 |
|
| 172 |
-
|
| 173 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
|
| 175 |
-
#
|
| 176 |
-
if os.path.exists(LTX_MOUNT):
|
| 177 |
-
|
| 178 |
mounted_files = os.listdir(LTX_MOUNT)
|
| 179 |
distilled_file = next((f for f in mounted_files if "distilled" in f), "ltx-2.3-22b-distilled-1.1.safetensors")
|
| 180 |
distilled_checkpoint_path = os.path.join(LTX_MOUNT, distilled_file)
|
| 181 |
-
spatial_upsampler_path = os.path.join(LTX_MOUNT,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
else:
|
| 183 |
-
print("
|
|
|
|
|
|
|
| 184 |
os.makedirs("models", exist_ok=True)
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
|
|
|
| 189 |
local_dir_use_symlinks=False
|
| 190 |
)
|
|
|
|
|
|
|
|
|
|
| 191 |
spatial_upsampler_path = hf_hub_download(
|
| 192 |
repo_id="Lightricks/LTX-2.3",
|
| 193 |
-
filename=
|
| 194 |
local_dir="models",
|
| 195 |
local_dir_use_symlinks=False
|
| 196 |
)
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 205 |
local_dir_use_symlinks=False
|
| 206 |
)
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
print("
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
)
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
_embeddings_processor = ledger.gemma_embeddings_processor()
|
| 229 |
-
|
| 230 |
ledger.transformer = lambda: _transformer
|
| 231 |
ledger.video_encoder = lambda: _video_encoder
|
| 232 |
ledger.video_decoder = lambda: _video_decoder
|
|
@@ -235,7 +287,7 @@ ledger.vocoder = lambda: _vocoder
|
|
| 235 |
ledger.spatial_upsampler = lambda: _spatial_upsampler
|
| 236 |
ledger.text_encoder = lambda: _text_encoder
|
| 237 |
ledger.gemma_embeddings_processor = lambda: _embeddings_processor
|
| 238 |
-
print("All models preloaded and mapped!")
|
| 239 |
|
| 240 |
|
| 241 |
def log_memory(tag: str):
|
|
|
|
| 169 |
LTX_MOUNT = "/models/ltx"
|
| 170 |
GEMMA_MOUNT = "/models/gemma"
|
| 171 |
|
| 172 |
+
import shutil
|
| 173 |
+
def print_disk(tag):
|
| 174 |
+
try:
|
| 175 |
+
u = shutil.disk_usage(".")
|
| 176 |
+
print(f"[DISK {tag}] total={u.total/1024**3:.2f}GB, used={u.used/1024**3:.2f}GB, free={u.free/1024**3:.2f}GB")
|
| 177 |
+
except Exception as e:
|
| 178 |
+
print(f"[DISK {tag}] error checking usage: {e}")
|
| 179 |
|
| 180 |
+
# Check if mounts exist
|
| 181 |
+
if os.path.exists(LTX_MOUNT) and os.path.exists(GEMMA_MOUNT):
|
| 182 |
+
print("LTX and Gemma mounts detected. Performing fast-path model initialization...")
|
| 183 |
mounted_files = os.listdir(LTX_MOUNT)
|
| 184 |
distilled_file = next((f for f in mounted_files if "distilled" in f), "ltx-2.3-22b-distilled-1.1.safetensors")
|
| 185 |
distilled_checkpoint_path = os.path.join(LTX_MOUNT, distilled_file)
|
| 186 |
+
spatial_upsampler_path = os.path.join(LTX_MOUNT, "ltx-2.3-spatial-upscaler-x2-1.1.safetensors")
|
| 187 |
+
gemma_root = GEMMA_MOUNT
|
| 188 |
+
|
| 189 |
+
print("Initializing DistilledPipeline...")
|
| 190 |
+
pipeline = DistilledPipeline(
|
| 191 |
+
distilled_checkpoint_path=distilled_checkpoint_path,
|
| 192 |
+
spatial_upsampler_path=spatial_upsampler_path,
|
| 193 |
+
gemma_root=gemma_root,
|
| 194 |
+
loras=[],
|
| 195 |
+
quantization=QuantizationPolicy.fp8_cast(),
|
| 196 |
+
)
|
| 197 |
+
ledger = pipeline.model_ledger
|
| 198 |
+
print("Preloading models for ZeroGPU...")
|
| 199 |
+
_transformer = ledger.transformer()
|
| 200 |
+
_video_encoder = ledger.video_encoder()
|
| 201 |
+
_video_decoder = ledger.video_decoder()
|
| 202 |
+
_audio_decoder = ledger.audio_decoder()
|
| 203 |
+
_vocoder = ledger.vocoder()
|
| 204 |
+
_spatial_upsampler = ledger.spatial_upsampler()
|
| 205 |
+
_text_encoder = ledger.text_encoder()
|
| 206 |
+
_embeddings_processor = ledger.gemma_embeddings_processor()
|
| 207 |
else:
|
| 208 |
+
print("Mounts not found. Initiating sequential download and loading to bypass 50GB storage limit...")
|
| 209 |
+
print_disk("startup")
|
| 210 |
+
|
| 211 |
os.makedirs("models", exist_ok=True)
|
| 212 |
+
|
| 213 |
+
print("1. Downloading Gemma text encoder (24 GB)...")
|
| 214 |
+
gemma_root = snapshot_download(
|
| 215 |
+
repo_id="Lightricks/gemma-3-12b-it-qat-q4_0-unquantized",
|
| 216 |
+
local_dir="models/gemma",
|
| 217 |
local_dir_use_symlinks=False
|
| 218 |
)
|
| 219 |
+
print_disk("after_gemma_download")
|
| 220 |
+
|
| 221 |
+
print("2. Downloading spatial upscaler (1 GB)...")
|
| 222 |
spatial_upsampler_path = hf_hub_download(
|
| 223 |
repo_id="Lightricks/LTX-2.3",
|
| 224 |
+
filename="ltx-2.3-spatial-upscaler-x2-1.1.safetensors",
|
| 225 |
local_dir="models",
|
| 226 |
local_dir_use_symlinks=False
|
| 227 |
)
|
| 228 |
+
print_disk("after_upscaler_download")
|
| 229 |
+
|
| 230 |
+
print("3. Instantiating DistilledPipeline with Gemma and spatial upscaler (using dummy path for base model)...")
|
| 231 |
+
pipeline = DistilledPipeline(
|
| 232 |
+
distilled_checkpoint_path="models/dummy_base.safetensors",
|
| 233 |
+
spatial_upsampler_path=spatial_upsampler_path,
|
| 234 |
+
gemma_root=gemma_root,
|
| 235 |
+
loras=[],
|
| 236 |
+
quantization=QuantizationPolicy.fp8_cast(),
|
| 237 |
+
)
|
| 238 |
+
ledger = pipeline.model_ledger
|
| 239 |
+
|
| 240 |
+
print("4. Preloading Gemma and upscaler models...")
|
| 241 |
+
_text_encoder = ledger.text_encoder()
|
| 242 |
+
_embeddings_processor = ledger.gemma_embeddings_processor()
|
| 243 |
+
_spatial_upsampler = ledger.spatial_upsampler()
|
| 244 |
+
print("Gemma and upscaler preloaded in CPU/GPU memory.")
|
| 245 |
+
|
| 246 |
+
print("5. Deleting Gemma and upscaler files from disk to free storage space...")
|
| 247 |
+
for f in os.listdir("models/gemma"):
|
| 248 |
+
if f.endswith(".safetensors"):
|
| 249 |
+
os.remove(os.path.join("models/gemma", f))
|
| 250 |
+
if os.path.exists(spatial_upsampler_path):
|
| 251 |
+
os.remove(spatial_upsampler_path)
|
| 252 |
+
print_disk("after_gemma_upscaler_deletion")
|
| 253 |
+
|
| 254 |
+
print("6. Downloading base model (29.5 GB)...")
|
| 255 |
+
real_checkpoint_path = hf_hub_download(
|
| 256 |
+
repo_id="Lightricks/LTX-2.3-fp8",
|
| 257 |
+
filename="ltx-2.3-22b-distilled-fp8.safetensors",
|
| 258 |
+
local_dir="models",
|
| 259 |
local_dir_use_symlinks=False
|
| 260 |
)
|
| 261 |
+
print_disk("after_base_model_download")
|
| 262 |
+
|
| 263 |
+
print("7. Rebuilding model builders for base LTX model...")
|
| 264 |
+
ledger.checkpoint_path = real_checkpoint_path
|
| 265 |
+
ledger.gemma_root_path = None # Prevent searching for deleted Gemma files
|
| 266 |
+
ledger.build_model_builders()
|
| 267 |
+
|
| 268 |
+
print("8. Preloading base LTX models...")
|
| 269 |
+
_transformer = ledger.transformer()
|
| 270 |
+
_video_encoder = ledger.video_encoder()
|
| 271 |
+
_video_decoder = ledger.video_decoder()
|
| 272 |
+
_audio_decoder = ledger.audio_decoder()
|
| 273 |
+
_vocoder = ledger.vocoder()
|
| 274 |
+
print("Base LTX models loaded and cached.")
|
| 275 |
+
|
| 276 |
+
print("9. Deleting base LTX model weights from disk to free storage...")
|
| 277 |
+
if os.path.exists(real_checkpoint_path):
|
| 278 |
+
os.remove(real_checkpoint_path)
|
| 279 |
+
print_disk("final_cleanup")
|
| 280 |
+
|
| 281 |
+
# Bind lambda caches to ledger
|
|
|
|
|
|
|
| 282 |
ledger.transformer = lambda: _transformer
|
| 283 |
ledger.video_encoder = lambda: _video_encoder
|
| 284 |
ledger.video_decoder = lambda: _video_decoder
|
|
|
|
| 287 |
ledger.spatial_upsampler = lambda: _spatial_upsampler
|
| 288 |
ledger.text_encoder = lambda: _text_encoder
|
| 289 |
ledger.gemma_embeddings_processor = lambda: _embeddings_processor
|
| 290 |
+
print("All models preloaded and mapped successfully!")
|
| 291 |
|
| 292 |
|
| 293 |
def log_memory(tag: str):
|
run_logs_final.txt
ADDED
|
@@ -0,0 +1,544 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
data: {"data":"===== Application Startup at 2026-06-29 08:25:58 =====\n","timestamp":"2026-06-29T08:25:58Z"}
|
| 2 |
+
|
| 3 |
+
data: {"data":"Collecting xformers==0.0.32.post2","timestamp":"2026-06-29T08:27:02.525Z"}
|
| 4 |
+
|
| 5 |
+
data: {"data":" Downloading xformers-0.0.32.post2-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (1.1 kB)","timestamp":"2026-06-29T08:27:02.642Z"}
|
| 6 |
+
|
| 7 |
+
data: {"data":"Requirement already satisfied: numpy in /usr/local/lib/python3.13/site-packages (from xformers==0.0.32.post2) (2.5.0)","timestamp":"2026-06-29T08:27:02.719Z"}
|
| 8 |
+
|
| 9 |
+
data: {"data":"Requirement already satisfied: torch==2.8.0 in /usr/local/lib/python3.13/site-packages (from xformers==0.0.32.post2) (2.8.0)","timestamp":"2026-06-29T08:27:02.726Z"}
|
| 10 |
+
|
| 11 |
+
data: {"data":"Requirement already satisfied: filelock in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.29.4)","timestamp":"2026-06-29T08:27:02.736Z"}
|
| 12 |
+
|
| 13 |
+
data: {"data":"Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (4.15.0)","timestamp":"2026-06-29T08:27:02.741Z"}
|
| 14 |
+
|
| 15 |
+
data: {"data":"Requirement already satisfied: setuptools in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (82.0.1)","timestamp":"2026-06-29T08:27:02.742Z"}
|
| 16 |
+
|
| 17 |
+
data: {"data":"Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (1.14.0)","timestamp":"2026-06-29T08:27:02.760Z"}
|
| 18 |
+
|
| 19 |
+
data: {"data":"Requirement already satisfied: networkx in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.6.1)","timestamp":"2026-06-29T08:27:02.760Z"}
|
| 20 |
+
|
| 21 |
+
data: {"data":"Requirement already satisfied: jinja2 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.1.6)","timestamp":"2026-06-29T08:27:02.760Z"}
|
| 22 |
+
|
| 23 |
+
data: {"data":"Requirement already satisfied: fsspec in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (2026.4.0)","timestamp":"2026-06-29T08:27:02.760Z"}
|
| 24 |
+
|
| 25 |
+
data: {"data":"Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.93)","timestamp":"2026-06-29T08:27:02.780Z"}
|
| 26 |
+
|
| 27 |
+
data: {"data":"Requirement already satisfied: nvidia-cuda-runtime-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:27:02.781Z"}
|
| 28 |
+
|
| 29 |
+
data: {"data":"Requirement already satisfied: nvidia-cuda-cupti-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:27:02.781Z"}
|
| 30 |
+
|
| 31 |
+
data: {"data":"Requirement already satisfied: nvidia-cudnn-cu12==9.10.2.21 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (9.10.2.21)","timestamp":"2026-06-29T08:27:02.788Z"}
|
| 32 |
+
|
| 33 |
+
data: {"data":"Requirement already satisfied: nvidia-cublas-cu12==12.8.4.1 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.4.1)","timestamp":"2026-06-29T08:27:02.788Z"}
|
| 34 |
+
|
| 35 |
+
data: {"data":"Requirement already satisfied: nvidia-cufft-cu12==11.3.3.83 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (11.3.3.83)","timestamp":"2026-06-29T08:27:02.788Z"}
|
| 36 |
+
|
| 37 |
+
data: {"data":"Requirement already satisfied: nvidia-curand-cu12==10.3.9.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (10.3.9.90)","timestamp":"2026-06-29T08:27:02.796Z"}
|
| 38 |
+
|
| 39 |
+
data: {"data":"Requirement already satisfied: nvidia-cusolver-cu12==11.7.3.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (11.7.3.90)","timestamp":"2026-06-29T08:27:02.796Z"}
|
| 40 |
+
|
| 41 |
+
data: {"data":"Requirement already satisfied: nvidia-cusparse-cu12==12.5.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.5.8.93)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 42 |
+
|
| 43 |
+
data: {"data":"Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (0.7.1)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 44 |
+
|
| 45 |
+
data: {"data":"Requirement already satisfied: nvidia-nccl-cu12==2.27.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (2.27.3)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 46 |
+
|
| 47 |
+
data: {"data":"Requirement already satisfied: nvidia-nvtx-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 48 |
+
|
| 49 |
+
data: {"data":"Requirement already satisfied: nvidia-nvjitlink-cu12==12.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.93)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 50 |
+
|
| 51 |
+
data: {"data":"Requirement already satisfied: nvidia-cufile-cu12==1.13.1.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (1.13.1.3)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 52 |
+
|
| 53 |
+
data: {"data":"Requirement already satisfied: triton==3.4.0 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.4.0)","timestamp":"2026-06-29T08:27:02.828Z"}
|
| 54 |
+
|
| 55 |
+
data: {"data":"Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.13/site-packages (from sympy>=1.13.3->torch==2.8.0->xformers==0.0.32.post2) (1.3.0)","timestamp":"2026-06-29T08:27:02.935Z"}
|
| 56 |
+
|
| 57 |
+
data: {"data":"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.13/site-packages (from jinja2->torch==2.8.0->xformers==0.0.32.post2) (3.0.3)","timestamp":"2026-06-29T08:27:03.013Z"}
|
| 58 |
+
|
| 59 |
+
data: {"data":"Downloading xformers-0.0.32.post2-cp39-abi3-manylinux_2_28_x86_64.whl (117.2 MB)","timestamp":"2026-06-29T08:27:03.035Z"}
|
| 60 |
+
|
| 61 |
+
data: {"data":" ββββββββββββββββββββββββββββββββββββββββ 117.2/117.2 MB 187.2 MB/s 0:00:00","timestamp":"2026-06-29T08:27:03.721Z"}
|
| 62 |
+
|
| 63 |
+
data: {"data":"Installing collected packages: xformers","timestamp":"2026-06-29T08:27:04.834Z"}
|
| 64 |
+
|
| 65 |
+
data: {"data":"Successfully installed xformers-0.0.32.post2","timestamp":"2026-06-29T08:27:09.943Z"}
|
| 66 |
+
|
| 67 |
+
data: {"data":"WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.","timestamp":"2026-06-29T08:27:09.946Z"}
|
| 68 |
+
|
| 69 |
+
data: {"data":"Cloning https://github.com/Lightricks/LTX-2.git...","timestamp":"2026-06-29T08:27:10.375Z"}
|
| 70 |
+
|
| 71 |
+
data: {"data":"Initialized empty Git repository in /app/LTX-2/.git/","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 72 |
+
|
| 73 |
+
data: {"data":"hint: Using 'master' as the name for the initial branch. This default branch name","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 74 |
+
|
| 75 |
+
data: {"data":"hint: is subject to change. To configure the initial branch name to use in all","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 76 |
+
|
| 77 |
+
data: {"data":"hint: of your new repositories, which will suppress this warning, call:","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 78 |
+
|
| 79 |
+
data: {"data":"hint:","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 80 |
+
|
| 81 |
+
data: {"data":"hint: \tgit config --global init.defaultBranch <name>","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 82 |
+
|
| 83 |
+
data: {"data":"hint:","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 84 |
+
|
| 85 |
+
data: {"data":"hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 86 |
+
|
| 87 |
+
data: {"data":"hint: 'development'. The just-created branch can be renamed via this command:","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 88 |
+
|
| 89 |
+
data: {"data":"hint:","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 90 |
+
|
| 91 |
+
data: {"data":"hint: \tgit branch -m <name>","timestamp":"2026-06-29T08:27:10.446Z"}
|
| 92 |
+
|
| 93 |
+
data: {"data":"From https://github.com/Lightricks/LTX-2","timestamp":"2026-06-29T08:27:11.529Z"}
|
| 94 |
+
|
| 95 |
+
data: {"data":" * branch ae855f8538843825f9015a419cf4ba5edaf5eec2 -> FETCH_HEAD","timestamp":"2026-06-29T08:27:11.529Z"}
|
| 96 |
+
|
| 97 |
+
data: {"data":"Note: switching to 'ae855f8538843825f9015a419cf4ba5edaf5eec2'.","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 98 |
+
|
| 99 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 100 |
+
|
| 101 |
+
data: {"data":"You are in 'detached HEAD' state. You can look around, make experimental","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 102 |
+
|
| 103 |
+
data: {"data":"changes and commit them, and you can discard any commits you make in this","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 104 |
+
|
| 105 |
+
data: {"data":"state without impacting any branches by switching back to a branch.","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 106 |
+
|
| 107 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 108 |
+
|
| 109 |
+
data: {"data":"If you want to create a new branch to retain commits you create, you may","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 110 |
+
|
| 111 |
+
data: {"data":"do so (now or later) by using -c with the switch command. Example:","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 112 |
+
|
| 113 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 114 |
+
|
| 115 |
+
data: {"data":" git switch -c <new-branch-name>","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 116 |
+
|
| 117 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 118 |
+
|
| 119 |
+
data: {"data":"Or undo this operation with:","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 120 |
+
|
| 121 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 122 |
+
|
| 123 |
+
data: {"data":" git switch -","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 124 |
+
|
| 125 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 126 |
+
|
| 127 |
+
data: {"data":"Turn off this advice by setting config variable advice.detachedHead to false","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 128 |
+
|
| 129 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 130 |
+
|
| 131 |
+
data: {"data":"HEAD is now at ae855f8 Merge pull request #159 from Lightricks/pr-2026-03-11","timestamp":"2026-06-29T08:27:11.610Z"}
|
| 132 |
+
|
| 133 |
+
data: {"data":"Installing ltx-core and ltx-pipelines from cloned repo...","timestamp":"2026-06-29T08:27:11.612Z"}
|
| 134 |
+
|
| 135 |
+
data: {"data":"Obtaining file:///app/LTX-2/packages/ltx-core","timestamp":"2026-06-29T08:27:12.981Z"}
|
| 136 |
+
|
| 137 |
+
data: {"data":" Installing build dependencies: started","timestamp":"2026-06-29T08:27:12.982Z"}
|
| 138 |
+
|
| 139 |
+
data: {"data":" Installing build dependencies: finished with status 'done'","timestamp":"2026-06-29T08:27:15.739Z"}
|
| 140 |
+
|
| 141 |
+
data: {"data":" Checking if build backend supports build_editable: started","timestamp":"2026-06-29T08:27:15.742Z"}
|
| 142 |
+
|
| 143 |
+
data: {"data":" Checking if build backend supports build_editable: finished with status 'done'","timestamp":"2026-06-29T08:27:16.090Z"}
|
| 144 |
+
|
| 145 |
+
data: {"data":" Getting requirements to build editable: started","timestamp":"2026-06-29T08:27:16.090Z"}
|
| 146 |
+
|
| 147 |
+
data: {"data":" Getting requirements to build editable: finished with status 'done'","timestamp":"2026-06-29T08:27:16.090Z"}
|
| 148 |
+
|
| 149 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): started","timestamp":"2026-06-29T08:27:16.090Z"}
|
| 150 |
+
|
| 151 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:27:16.185Z"}
|
| 152 |
+
|
| 153 |
+
data: {"data":"Obtaining file:///app/LTX-2/packages/ltx-pipelines","timestamp":"2026-06-29T08:27:16.197Z"}
|
| 154 |
+
|
| 155 |
+
data: {"data":" Installing build dependencies: started","timestamp":"2026-06-29T08:27:16.206Z"}
|
| 156 |
+
|
| 157 |
+
data: {"data":" Installing build dependencies: finished with status 'done'","timestamp":"2026-06-29T08:27:19.225Z"}
|
| 158 |
+
|
| 159 |
+
data: {"data":" Checking if build backend supports build_editable: started","timestamp":"2026-06-29T08:27:19.227Z"}
|
| 160 |
+
|
| 161 |
+
data: {"data":" Checking if build backend supports build_editable: finished with status 'done'","timestamp":"2026-06-29T08:27:19.352Z"}
|
| 162 |
+
|
| 163 |
+
data: {"data":" Getting requirements to build editable: started","timestamp":"2026-06-29T08:27:19.355Z"}
|
| 164 |
+
|
| 165 |
+
data: {"data":" Getting requirements to build editable: finished with status 'done'","timestamp":"2026-06-29T08:27:19.508Z"}
|
| 166 |
+
|
| 167 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): started","timestamp":"2026-06-29T08:27:19.508Z"}
|
| 168 |
+
|
| 169 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:27:19.702Z"}
|
| 170 |
+
|
| 171 |
+
data: {"data":"Building wheels for collected packages: ltx-core, ltx-pipelines","timestamp":"2026-06-29T08:27:19.737Z"}
|
| 172 |
+
|
| 173 |
+
data: {"data":" Building editable for ltx-core (pyproject.toml): started","timestamp":"2026-06-29T08:27:19.740Z"}
|
| 174 |
+
|
| 175 |
+
data: {"data":" Building editable for ltx-core (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:27:19.881Z"}
|
| 176 |
+
|
| 177 |
+
data: {"data":" Created wheel for ltx-core: filename=ltx_core-1.0.0-py3-none-any.whl size=7996 sha256=75f79730c730674c2626c4b78e9a867613b6ce23846104c78fba0eb7fbfa4983","timestamp":"2026-06-29T08:27:19.881Z"}
|
| 178 |
+
|
| 179 |
+
data: {"data":" Stored in directory: /tmp/pip-ephem-wheel-cache-yx9uppow/wheels/b6/f5/ae/2c7327a69b1abdb37786315c23ecaa748618b7d623b22746d5","timestamp":"2026-06-29T08:27:19.899Z"}
|
| 180 |
+
|
| 181 |
+
data: {"data":" Building editable for ltx-pipelines (pyproject.toml): started","timestamp":"2026-06-29T08:27:20.054Z"}
|
| 182 |
+
|
| 183 |
+
data: {"data":" Building editable for ltx-pipelines (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:27:20.054Z"}
|
| 184 |
+
|
| 185 |
+
data: {"data":" Created wheel for ltx-pipelines: filename=ltx_pipelines-1.0.0-py3-none-any.whl size=7748 sha256=3a79effad5f0648c43337cd38086691fff341b143ef7c9ae47cd550c148b3e62","timestamp":"2026-06-29T08:27:20.054Z"}
|
| 186 |
+
|
| 187 |
+
data: {"data":" Stored in directory: /tmp/pip-ephem-wheel-cache-yx9uppow/wheels/ec/78/aa/1b203104d17857904b10c209580710625d942057672efaed57","timestamp":"2026-06-29T08:27:20.054Z"}
|
| 188 |
+
|
| 189 |
+
data: {"data":"Successfully built ltx-core ltx-pipelines","timestamp":"2026-06-29T08:27:20.054Z"}
|
| 190 |
+
|
| 191 |
+
data: {"data":"Installing collected packages: ltx-pipelines, ltx-core","timestamp":"2026-06-29T08:27:20.054Z"}
|
| 192 |
+
|
| 193 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:20.143Z"}
|
| 194 |
+
|
| 195 |
+
data: {"data":"Successfully installed ltx-core-1.0.0 ltx-pipelines-1.0.0","timestamp":"2026-06-29T08:27:20.144Z"}
|
| 196 |
+
|
| 197 |
+
data: {"data":"WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.","timestamp":"2026-06-29T08:27:20.146Z"}
|
| 198 |
+
|
| 199 |
+
data: {"data":"Purging pip cache...","timestamp":"2026-06-29T08:27:20.532Z"}
|
| 200 |
+
|
| 201 |
+
data: {"data":"Files removed: 14 (119.1 MB)","timestamp":"2026-06-29T08:27:21.277Z"}
|
| 202 |
+
|
| 203 |
+
data: {"data":"Directories removed: 0","timestamp":"2026-06-29T08:27:21.277Z"}
|
| 204 |
+
|
| 205 |
+
data: {"data":"Deleting cloned LTX-2 repo .git folder to save space...","timestamp":"2026-06-29T08:27:21.405Z"}
|
| 206 |
+
|
| 207 |
+
: keep-alive
|
| 208 |
+
|
| 209 |
+
data: {"data":"[ATTN] Before patch: memory_efficient_attention=<function memory_efficient_attention at 0x7fd5ad0d2840>","timestamp":"2026-06-29T08:27:58.550Z"}
|
| 210 |
+
|
| 211 |
+
data: {"data":"[ATTN] After patch: memory_efficient_attention=<function memory_efficient_attention at 0x7fd5ad0d2840>","timestamp":"2026-06-29T08:27:58.574Z"}
|
| 212 |
+
|
| 213 |
+
data: {"data":"[ATTN] xformers FA3 dispatch disabled (Blackwell-incompatible)","timestamp":"2026-06-29T08:27:58.574Z"}
|
| 214 |
+
|
| 215 |
+
data: {"data":"[FUSE-PATCH] SafetensorsStateDictLoader.load replaced (chunked-read)","timestamp":"2026-06-29T08:27:58.574Z"}
|
| 216 |
+
|
| 217 |
+
data: {"data":"LTX Mount not found. Downloading weights directly from Hugging Face...","timestamp":"2026-06-29T08:27:58.574Z"}
|
| 218 |
+
|
| 219 |
+
data: {"data":"/usr/local/lib/python3.13/site-packages/huggingface_hub/file_download.py:986: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`.","timestamp":"2026-06-29T08:27:58.560Z"}
|
| 220 |
+
|
| 221 |
+
data: {"data":"For more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder.","timestamp":"2026-06-29T08:27:58.574Z"}
|
| 222 |
+
|
| 223 |
+
data: {"data":" warnings.warn(","timestamp":"2026-06-29T08:27:58.574Z"}
|
| 224 |
+
|
| 225 |
+
data: {"data":"","timestamp":"2026-06-29T08:27:58.821Z"}
|
| 226 |
+
|
| 227 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 0%| | 0.00/29.5G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:28:25.580Z"}
|
| 228 |
+
|
| 229 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 1%| | 307M/29.5G [00:26<42:23, 11.5MB/s]\u001b[A","timestamp":"2026-06-29T08:28:27.802Z"}
|
| 230 |
+
|
| 231 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 4%|β | 1.07G/29.5G [00:28<10:07, 46.8MB/s]\u001b[A","timestamp":"2026-06-29T08:28:38.525Z"}
|
| 232 |
+
|
| 233 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 6%|β | 1.81G/29.5G [00:39<08:14, 56.1MB/s]\u001b[A","timestamp":"2026-06-29T08:28:44.611Z"}
|
| 234 |
+
|
| 235 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 7%|β | 2.01G/29.5G [00:45<09:07, 50.3MB/s]\u001b[A","timestamp":"2026-06-29T08:28:55.273Z"}
|
| 236 |
+
|
| 237 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 9%|β | 2.55G/29.5G [00:56<08:56, 50.3MB/s]\u001b[A","timestamp":"2026-06-29T08:29:08.840Z"}
|
| 238 |
+
|
| 239 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 9%|β | 2.55G/29.5G [01:10<08:56, 50.3MB/s]\u001b[A","timestamp":"2026-06-29T08:29:13.802Z"}
|
| 240 |
+
|
| 241 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 9%|β | 2.62G/29.5G [01:14<16:24, 27.3MB/s]\u001b[A","timestamp":"2026-06-29T08:29:18.598Z"}
|
| 242 |
+
|
| 243 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 9%|β | 2.75G/29.5G [01:19<16:16, 27.4MB/s]\u001b[A","timestamp":"2026-06-29T08:29:21.530Z"}
|
| 244 |
+
|
| 245 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 10%|β | 3.02G/29.5G [01:22<12:37, 35.0MB/s]\u001b[A","timestamp":"2026-06-29T08:29:38.876Z"}
|
| 246 |
+
|
| 247 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 10%|β | 3.02G/29.5G [01:40<12:37, 35.0MB/s]\u001b[A","timestamp":"2026-06-29T08:29:48.560Z"}
|
| 248 |
+
|
| 249 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 12%|ββ | 3.47G/29.5G [01:49<18:11, 23.9MB/s]\u001b[A","timestamp":"2026-06-29T08:29:51.764Z"}
|
| 250 |
+
|
| 251 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 13%|ββ | 3.74G/29.5G [01:52<14:35, 29.5MB/s]\u001b[A","timestamp":"2026-06-29T08:29:58.017Z"}
|
| 252 |
+
|
| 253 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 14%|ββ | 4.12G/29.5G [01:59<11:43, 36.1MB/s]\u001b[A","timestamp":"2026-06-29T08:30:00.545Z"}
|
| 254 |
+
|
| 255 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 15%|ββ | 4.33G/29.5G [02:01<10:18, 40.8MB/s]\u001b[A","timestamp":"2026-06-29T08:30:07.471Z"}
|
| 256 |
+
|
| 257 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 19%|ββ | 5.64G/29.5G [02:08<04:42, 84.5MB/s]\u001b[A","timestamp":"2026-06-29T08:30:10.272Z"}
|
| 258 |
+
|
| 259 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 24%|βββ | 7.14G/29.5G [02:11<02:29, 150MB/s] \u001b[A","timestamp":"2026-06-29T08:30:11.548Z"}
|
| 260 |
+
|
| 261 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 30%|βββ | 8.75G/29.5G [02:12<01:24, 246MB/s]\u001b[A","timestamp":"2026-06-29T08:30:13.312Z"}
|
| 262 |
+
|
| 263 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 35%|ββββ | 10.3G/29.5G [02:14<00:56, 338MB/s]\u001b[A","timestamp":"2026-06-29T08:30:25.575Z"}
|
| 264 |
+
|
| 265 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 37%|ββββ | 11.0G/29.5G [02:26<01:46, 174MB/s]\u001b[A","timestamp":"2026-06-29T08:30:28.027Z"}
|
| 266 |
+
|
| 267 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 38%|ββββ | 11.1G/29.5G [02:29<02:00, 152MB/s]\u001b[A","timestamp":"2026-06-29T08:30:38.898Z"}
|
| 268 |
+
|
| 269 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 38%|ββββ | 11.2G/29.5G [02:40<02:00, 152MB/s]\u001b[A","timestamp":"2026-06-29T08:30:42.054Z"}
|
| 270 |
+
|
| 271 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 39%|ββββ | 11.4G/29.5G [02:43<03:38, 82.8MB/s]\u001b[A","timestamp":"2026-06-29T08:30:43.201Z"}
|
| 272 |
+
|
| 273 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 39%|ββββ | 11.6G/29.5G [02:44<03:22, 88.3MB/s]\u001b[A","timestamp":"2026-06-29T08:30:47.872Z"}
|
| 274 |
+
|
| 275 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 41%|ββββ | 12.2G/29.5G [02:49<03:02, 95.2MB/s]\u001b[A","timestamp":"2026-06-29T08:30:51.272Z"}
|
| 276 |
+
|
| 277 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 44%|βββββ | 13.1G/29.5G [02:52<02:06, 130MB/s] \u001b[A","timestamp":"2026-06-29T08:30:54.097Z"}
|
| 278 |
+
|
| 279 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 45%|βββββ | 13.3G/29.5G [02:55<02:09, 125MB/s]\u001b[A","timestamp":"2026-06-29T08:30:55.474Z"}
|
| 280 |
+
|
| 281 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 46%|βββββ | 13.6G/29.5G [02:56<01:55, 137MB/s]\u001b[A","timestamp":"2026-06-29T08:30:56.780Z"}
|
| 282 |
+
|
| 283 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 47%|βββββ | 13.9G/29.5G [02:57<01:51, 141MB/s]\u001b[A","timestamp":"2026-06-29T08:30:58.786Z"}
|
| 284 |
+
|
| 285 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 48%|βββββ | 14.2G/29.5G [02:59<01:49, 141MB/s]\u001b[A","timestamp":"2026-06-29T08:30:59.783Z"}
|
| 286 |
+
|
| 287 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 49%|βββββ | 14.4G/29.5G [03:00<01:40, 151MB/s]\u001b[A","timestamp":"2026-06-29T08:31:10.779Z"}
|
| 288 |
+
|
| 289 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 49%|βββββ | 14.6G/29.5G [03:11<04:05, 60.9MB/s]\u001b[A","timestamp":"2026-06-29T08:31:12.026Z"}
|
| 290 |
+
|
| 291 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 50%|βββββ | 14.9G/29.5G [03:13<03:12, 76.2MB/s]\u001b[A","timestamp":"2026-06-29T08:31:15.360Z"}
|
| 292 |
+
|
| 293 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 52%|ββββββ | 15.2G/29.5G [03:16<02:48, 85.2MB/s]\u001b[A","timestamp":"2026-06-29T08:31:16.534Z"}
|
| 294 |
+
|
| 295 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 53%|ββββββ | 15.6G/29.5G [03:17<02:01, 115MB/s] \u001b[A","timestamp":"2026-06-29T08:31:17.819Z"}
|
| 296 |
+
|
| 297 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 54%|ββββββ | 16.0G/29.5G [03:18<01:33, 145MB/s]\u001b[A","timestamp":"2026-06-29T08:31:19.517Z"}
|
| 298 |
+
|
| 299 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 55%|ββββββ | 16.3G/29.5G [03:20<01:26, 153MB/s]\u001b[A","timestamp":"2026-06-29T08:31:21.106Z"}
|
| 300 |
+
|
| 301 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 56%|ββββββ | 16.6G/29.5G [03:22<01:22, 158MB/s]\u001b[A","timestamp":"2026-06-29T08:31:27.719Z"}
|
| 302 |
+
|
| 303 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 57%|ββββββ | 16.8G/29.5G [03:28<02:25, 87.3MB/s]\u001b[A","timestamp":"2026-06-29T08:31:30.836Z"}
|
| 304 |
+
|
| 305 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 58%|ββββββ | 17.1G/29.5G [03:32<02:14, 92.4MB/s]\u001b[A","timestamp":"2026-06-29T08:31:32.078Z"}
|
| 306 |
+
|
| 307 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 59%|ββββββ | 17.5G/29.5G [03:33<01:37, 123MB/s] \u001b[A","timestamp":"2026-06-29T08:31:33.272Z"}
|
| 308 |
+
|
| 309 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 61%|ββββββ | 17.9G/29.5G [03:34<01:15, 154MB/s]\u001b[A","timestamp":"2026-06-29T08:31:35.204Z"}
|
| 310 |
+
|
| 311 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 62%|βββββββ | 18.3G/29.5G [03:36<01:04, 172MB/s]\u001b[A","timestamp":"2026-06-29T08:31:36.286Z"}
|
| 312 |
+
|
| 313 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 65%|βββββββ | 19.3G/29.5G [03:37<00:34, 297MB/s]\u001b[A","timestamp":"2026-06-29T08:31:39.038Z"}
|
| 314 |
+
|
| 315 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 68%|βββββββ | 20.1G/29.5G [03:40<00:32, 289MB/s]\u001b[A","timestamp":"2026-06-29T08:31:42.777Z"}
|
| 316 |
+
|
| 317 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 70%|βββββββ | 20.7G/29.5G [03:43<00:37, 236MB/s]\u001b[A","timestamp":"2026-06-29T08:31:43.802Z"}
|
| 318 |
+
|
| 319 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 72%|ββββββββ | 21.2G/29.5G [03:44<00:30, 270MB/s]\u001b[A","timestamp":"2026-06-29T08:31:50.017Z"}
|
| 320 |
+
|
| 321 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 75%|ββββββββ | 22.3G/29.5G [03:51<00:33, 219MB/s]\u001b[A","timestamp":"2026-06-29T08:31:55.161Z"}
|
| 322 |
+
|
| 323 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 77%|ββββββββ | 22.6G/29.5G [03:56<00:43, 159MB/s]\u001b[A","timestamp":"2026-06-29T08:32:07.807Z"}
|
| 324 |
+
|
| 325 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 78%|ββββββββ | 23.0G/29.5G [04:08<01:16, 85.3MB/s]\u001b[A","timestamp":"2026-06-29T08:32:09.022Z"}
|
| 326 |
+
|
| 327 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 81%|ββββββββ | 23.9G/29.5G [04:10<00:41, 135MB/s] \u001b[A","timestamp":"2026-06-29T08:32:20.042Z"}
|
| 328 |
+
|
| 329 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 83%|βββββββββ | 24.4G/29.5G [04:21<00:55, 90.9MB/s]\u001b[A","timestamp":"2026-06-29T08:32:23.282Z"}
|
| 330 |
+
|
| 331 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 85%|βββββββββ | 25.1G/29.5G [04:24<00:40, 110MB/s] \u001b[A","timestamp":"2026-06-29T08:32:26.016Z"}
|
| 332 |
+
|
| 333 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 88%|βββββββββ | 26.0G/29.5G [04:27<00:23, 150MB/s]\u001b[A","timestamp":"2026-06-29T08:32:27.053Z"}
|
| 334 |
+
|
| 335 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 91%|ββββββββββ| 27.0G/29.5G [04:28<00:11, 215MB/s]\u001b[A","timestamp":"2026-06-29T08:32:28.269Z"}
|
| 336 |
+
|
| 337 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 96%|ββββββββββ| 28.5G/29.5G [04:29<00:03, 339MB/s]\u001b[A","timestamp":"2026-06-29T08:32:29.519Z"}
|
| 338 |
+
|
| 339 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 99%|ββββββββββ| 29.3G/29.5G [04:30<00:00, 395MB/s]\u001b[A\rltx-2.3-22b-distilled-fp8.safetensors: 100%|ββββββββββ| 29.5G/29.5G [04:31<00:00, 109MB/s]","timestamp":"2026-06-29T08:32:29.959Z"}
|
| 340 |
+
|
| 341 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:31.178Z"}
|
| 342 |
+
|
| 343 |
+
data: {"data":"\rltx-2.3-spatial-upscaler-x2-1.1.safetens(β¦): 0%| | 0.00/996M [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:32:40.334Z"}
|
| 344 |
+
|
| 345 |
+
data: {"data":"\rltx-2.3-spatial-upscaler-x2-1.1.safetens(β¦): 7%|β | 67.0M/996M [00:09<02:06, 7.32MB/s]\u001b[A\rltx-2.3-spatial-upscaler-x2-1.1.safetens(β¦): 100%|ββββββββββ| 996M/996M [00:09<00:00, 103MB/s] ","timestamp":"2026-06-29T08:32:40.877Z"}
|
| 346 |
+
|
| 347 |
+
data: {"data":"Gemma Mount not found. Downloading Gemma model directly from Hugging Face...","timestamp":"2026-06-29T08:32:40.882Z"}
|
| 348 |
+
|
| 349 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:41.695Z"}
|
| 350 |
+
|
| 351 |
+
data: {"data":"\r.gitattributes: 0%| | 0.00/1.97k [00:00<?, ?B/s]\u001b[A\r.gitattributes: 100%|ββββββββββ| 1.97k/1.97k [00:00<00:00, 2.33MB/s]","timestamp":"2026-06-29T08:32:41.695Z"}
|
| 352 |
+
|
| 353 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:41.752Z"}
|
| 354 |
+
|
| 355 |
+
data: {"data":"\rREADME.md: 0%| | 0.00/22.8k [00:00<?, ?B/s]\u001b[A\rREADME.md: 100%|ββββββββββ| 22.8k/22.8k [00:00<00:00, 59.4MB/s]","timestamp":"2026-06-29T08:32:41.758Z"}
|
| 356 |
+
|
| 357 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:41.825Z"}
|
| 358 |
+
|
| 359 |
+
data: {"data":"\radded_tokens.json: 0%| | 0.00/35.0 [00:00<?, ?B/s]\u001b[A\radded_tokens.json: 100%|ββββββββββ| 35.0/35.0 [00:00<00:00, 165kB/s]","timestamp":"2026-06-29T08:32:41.825Z"}
|
| 360 |
+
|
| 361 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:41.882Z"}
|
| 362 |
+
|
| 363 |
+
data: {"data":"\rchat_template.json: 0%| | 0.00/1.61k [00:00<?, ?B/s]\u001b[A\rchat_template.json: 100%|ββββββββββ| 1.61k/1.61k [00:00<00:00, 7.60MB/s]","timestamp":"2026-06-29T08:32:41.884Z"}
|
| 364 |
+
|
| 365 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:41.951Z"}
|
| 366 |
+
|
| 367 |
+
data: {"data":"\rconfig.json: 0%| | 0.00/1.61k [00:00<?, ?B/s]\u001b[A\rconfig.json: 100%|ββββββββββ| 1.61k/1.61k [00:00<00:00, 804kB/s]","timestamp":"2026-06-29T08:32:41.956Z"}
|
| 368 |
+
|
| 369 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:42.058Z"}
|
| 370 |
+
|
| 371 |
+
data: {"data":"\rgeneration_config.json: 0%| | 0.00/173 [00:00<?, ?B/s]\u001b[A\rgeneration_config.json: 100%|ββββββββββ| 173/173 [00:00<00:00, 880kB/s]","timestamp":"2026-06-29T08:32:42.058Z"}
|
| 372 |
+
|
| 373 |
+
data: {"data":"","timestamp":"2026-06-29T08:32:42.125Z"}
|
| 374 |
+
|
| 375 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 0%| | 0.00/4.98G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:32:56.767Z"}
|
| 376 |
+
|
| 377 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 18%|ββ | 898M/4.98G [00:14<01:06, 61.3MB/s]\u001b[A","timestamp":"2026-06-29T08:32:58.788Z"}
|
| 378 |
+
|
| 379 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 23%|βββ | 1.17G/4.98G [00:16<00:52, 73.1MB/s]\u001b[A","timestamp":"2026-06-29T08:33:04.033Z"}
|
| 380 |
+
|
| 381 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 27%|βββ | 1.37G/4.98G [00:21<01:00, 59.9MB/s]\u001b[A","timestamp":"2026-06-29T08:33:06.795Z"}
|
| 382 |
+
|
| 383 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 31%|ββββ | 1.57G/4.98G [00:24<00:54, 62.8MB/s]\u001b[A","timestamp":"2026-06-29T08:33:19.095Z"}
|
| 384 |
+
|
| 385 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 31%|ββββ | 1.57G/4.98G [00:36<00:54, 62.8MB/s]\u001b[A","timestamp":"2026-06-29T08:33:24.791Z"}
|
| 386 |
+
|
| 387 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 33%|ββββ | 1.64G/4.98G [00:42<02:25, 23.0MB/s]\u001b[A","timestamp":"2026-06-29T08:33:28.280Z"}
|
| 388 |
+
|
| 389 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 43%|βββββ | 2.14G/4.98G [00:46<01:07, 42.2MB/s]\u001b[A","timestamp":"2026-06-29T08:33:29.567Z"}
|
| 390 |
+
|
| 391 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 75%|ββββββββ | 3.74G/4.98G [00:47<00:09, 134MB/s] \u001b[A","timestamp":"2026-06-29T08:33:31Z"}
|
| 392 |
+
|
| 393 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 95%|ββββββββββ| 4.74G/4.98G [00:48<00:01, 195MB/s]\u001b[A\rmodel-00001-of-00005.safetensors: 100%|ββββββββββ| 4.98G/4.98G [00:49<00:00, 102MB/s]","timestamp":"2026-06-29T08:33:31.163Z"}
|
| 394 |
+
|
| 395 |
+
data: {"data":"","timestamp":"2026-06-29T08:33:31.197Z"}
|
| 396 |
+
|
| 397 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 0%| | 0.00/4.93G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:33:33.017Z"}
|
| 398 |
+
|
| 399 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 0%| | 2.77M/4.93G [00:01<53:53, 1.52MB/s]\u001b[A","timestamp":"2026-06-29T08:33:34.276Z"}
|
| 400 |
+
|
| 401 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 0%| | 13.3M/4.93G [00:03<16:39, 4.92MB/s]\u001b[A","timestamp":"2026-06-29T08:33:35.511Z"}
|
| 402 |
+
|
| 403 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 4%|β | 182M/4.93G [00:04<01:20, 59.0MB/s] \u001b[A","timestamp":"2026-06-29T08:33:48.508Z"}
|
| 404 |
+
|
| 405 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 9%|β | 448M/4.93G [00:17<02:53, 25.9MB/s]\u001b[A","timestamp":"2026-06-29T08:33:49.529Z"}
|
| 406 |
+
|
| 407 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 21%|βββ | 1.05G/4.93G [00:18<00:50, 76.0MB/s]\u001b[A","timestamp":"2026-06-29T08:33:51.515Z"}
|
| 408 |
+
|
| 409 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 27%|βββ | 1.35G/4.93G [00:20<00:39, 90.5MB/s]\u001b[A","timestamp":"2026-06-29T08:33:56.769Z"}
|
| 410 |
+
|
| 411 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 38%|ββββ | 1.86G/4.93G [00:25<00:33, 92.8MB/s]\u001b[A","timestamp":"2026-06-29T08:33:58.534Z"}
|
| 412 |
+
|
| 413 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 43%|βββββ | 2.10G/4.93G [00:27<00:28, 100MB/s] \u001b[A","timestamp":"2026-06-29T08:34:00.025Z"}
|
| 414 |
+
|
| 415 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 46%|βββββ | 2.28G/4.93G [00:28<00:25, 104MB/s]\u001b[A","timestamp":"2026-06-29T08:34:03.872Z"}
|
| 416 |
+
|
| 417 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 53%|ββββββ | 2.61G/4.93G [00:32<00:23, 97.4MB/s]\u001b[A","timestamp":"2026-06-29T08:34:06.015Z"}
|
| 418 |
+
|
| 419 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 61%|βββββββ | 3.03G/4.93G [00:34<00:15, 119MB/s] \u001b[A","timestamp":"2026-06-29T08:34:11.761Z"}
|
| 420 |
+
|
| 421 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 66%|βββββββ | 3.25G/4.93G [00:40<00:20, 81.2MB/s]\u001b[A","timestamp":"2026-06-29T08:34:15.041Z"}
|
| 422 |
+
|
| 423 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 70%|βββββββ | 3.44G/4.93G [00:43<00:19, 74.9MB/s]\u001b[A","timestamp":"2026-06-29T08:34:16.796Z"}
|
| 424 |
+
|
| 425 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 79%|ββββββββ | 3.90G/4.93G [00:45<00:09, 108MB/s] \u001b[A","timestamp":"2026-06-29T08:34:17.799Z"}
|
| 426 |
+
|
| 427 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 83%|βββββββββ | 4.11G/4.93G [00:46<00:06, 121MB/s]\u001b[A","timestamp":"2026-06-29T08:34:21.788Z"}
|
| 428 |
+
|
| 429 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 87%|βββββββββ | 4.28G/4.93G [00:50<00:07, 88.1MB/s]\u001b[A","timestamp":"2026-06-29T08:34:24.770Z"}
|
| 430 |
+
|
| 431 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 89%|βββββββββ | 4.41G/4.93G [00:53<00:06, 74.4MB/s]\u001b[A\rmodel-00002-of-00005.safetensors: 100%|ββββββββββ| 4.93G/4.93G [00:54<00:00, 91.1MB/s]","timestamp":"2026-06-29T08:34:25.307Z"}
|
| 432 |
+
|
| 433 |
+
data: {"data":"","timestamp":"2026-06-29T08:34:25.379Z"}
|
| 434 |
+
|
| 435 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 0%| | 0.00/4.93G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:34:27.295Z"}
|
| 436 |
+
|
| 437 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 2%|β | 83.8M/4.93G [00:01<01:51, 43.7MB/s]\u001b[A","timestamp":"2026-06-29T08:34:28.597Z"}
|
| 438 |
+
|
| 439 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 3%|β | 133M/4.93G [00:03<01:56, 41.3MB/s] \u001b[A","timestamp":"2026-06-29T08:34:30.350Z"}
|
| 440 |
+
|
| 441 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 5%|β | 263M/4.93G [00:04<01:21, 57.3MB/s]\u001b[A","timestamp":"2026-06-29T08:34:31.627Z"}
|
| 442 |
+
|
| 443 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 8%|β | 391M/4.93G [00:06<01:02, 72.8MB/s]\u001b[A","timestamp":"2026-06-29T08:34:32.592Z"}
|
| 444 |
+
|
| 445 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 10%|β | 490M/4.93G [00:07<00:55, 80.0MB/s]\u001b[A","timestamp":"2026-06-29T08:34:33.833Z"}
|
| 446 |
+
|
| 447 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 13%|ββ | 648M/4.93G [00:08<00:45, 95.1MB/s]\u001b[A","timestamp":"2026-06-29T08:34:36.799Z"}
|
| 448 |
+
|
| 449 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 18%|ββ | 907M/4.93G [00:11<00:44, 90.5MB/s]\u001b[A","timestamp":"2026-06-29T08:34:37.816Z"}
|
| 450 |
+
|
| 451 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 21%|ββ | 1.01G/4.93G [00:12<00:41, 93.5MB/s]\u001b[A","timestamp":"2026-06-29T08:34:42.392Z"}
|
| 452 |
+
|
| 453 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 24%|βββ | 1.18G/4.93G [00:16<01:00, 62.0MB/s]\u001b[A","timestamp":"2026-06-29T08:34:45.294Z"}
|
| 454 |
+
|
| 455 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 28%|βββ | 1.39G/4.93G [00:19<00:54, 64.4MB/s]\u001b[A","timestamp":"2026-06-29T08:34:55.338Z"}
|
| 456 |
+
|
| 457 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 34%|ββββ | 1.66G/4.93G [00:29<01:19, 40.9MB/s]\u001b[A","timestamp":"2026-06-29T08:34:57.303Z"}
|
| 458 |
+
|
| 459 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 44%|βββββ | 2.15G/4.93G [00:31<00:38, 72.4MB/s]\u001b[A","timestamp":"2026-06-29T08:34:59.802Z"}
|
| 460 |
+
|
| 461 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 55%|ββββββ | 2.70G/4.93G [00:34<00:21, 104MB/s] \u001b[A","timestamp":"2026-06-29T08:35:03.813Z"}
|
| 462 |
+
|
| 463 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 60%|ββββββ | 2.94G/4.93G [00:38<00:22, 89.4MB/s]\u001b[A","timestamp":"2026-06-29T08:35:07.062Z"}
|
| 464 |
+
|
| 465 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 64%|βββββββ | 3.15G/4.93G [00:41<00:21, 82.2MB/s]\u001b[A","timestamp":"2026-06-29T08:35:09.049Z"}
|
| 466 |
+
|
| 467 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 67%|βββββββ | 3.30G/4.93G [00:43<00:20, 80.7MB/s]\u001b[A","timestamp":"2026-06-29T08:35:10.555Z"}
|
| 468 |
+
|
| 469 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 70%|βββββββ | 3.47G/4.93G [00:45<00:16, 86.8MB/s]\u001b[A","timestamp":"2026-06-29T08:35:11.800Z"}
|
| 470 |
+
|
| 471 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 75%|ββββββββ | 3.68G/4.93G [00:46<00:12, 100MB/s] \u001b[A","timestamp":"2026-06-29T08:35:14.247Z"}
|
| 472 |
+
|
| 473 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 79%|ββββββββ | 3.87G/4.93G [00:48<00:11, 96.0MB/s]\u001b[A","timestamp":"2026-06-29T08:35:16.551Z"}
|
| 474 |
+
|
| 475 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 82%|βββββββββ | 4.04G/4.93G [00:51<00:10, 86.9MB/s]\u001b[A","timestamp":"2026-06-29T08:35:18.323Z"}
|
| 476 |
+
|
| 477 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 93%|ββββββββββ| 4.59G/4.93G [00:52<00:02, 142MB/s] \u001b[A\rmodel-00003-of-00005.safetensors: 100%|ββββββββββ| 4.93G/4.93G [00:53<00:00, 92.6MB/s]","timestamp":"2026-06-29T08:35:18.667Z"}
|
| 478 |
+
|
| 479 |
+
data: {"data":"","timestamp":"2026-06-29T08:35:18.740Z"}
|
| 480 |
+
|
| 481 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 0%| | 0.00/4.93G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:35:19.789Z"}
|
| 482 |
+
|
| 483 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 1%|β | 69.2M/4.93G [00:01<01:13, 66.4MB/s]\u001b[A","timestamp":"2026-06-29T08:35:21.799Z"}
|
| 484 |
+
|
| 485 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 5%|β | 257M/4.93G [00:03<00:54, 86.2MB/s] \u001b[A","timestamp":"2026-06-29T08:35:23.047Z"}
|
| 486 |
+
|
| 487 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 7%|β | 345M/4.93G [00:04<00:57, 80.3MB/s]\u001b[A","timestamp":"2026-06-29T08:35:27.789Z"}
|
| 488 |
+
|
| 489 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 9%|β | 450M/4.93G [00:09<01:50, 40.6MB/s]\u001b[A","timestamp":"2026-06-29T08:35:29.084Z"}
|
| 490 |
+
|
| 491 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 13%|ββ | 632M/4.93G [00:10<01:09, 62.0MB/s]\u001b[A","timestamp":"2026-06-29T08:35:31.796Z"}
|
| 492 |
+
|
| 493 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 21%|βββ | 1.05G/4.93G [00:13<00:39, 97.1MB/s]\u001b[A","timestamp":"2026-06-29T08:35:37.319Z"}
|
| 494 |
+
|
| 495 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 24%|βββ | 1.17G/4.93G [00:18<01:04, 57.8MB/s]\u001b[A","timestamp":"2026-06-29T08:35:39.299Z"}
|
| 496 |
+
|
| 497 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 26%|βββ | 1.28G/4.93G [00:20<01:04, 57.0MB/s]\u001b[A","timestamp":"2026-06-29T08:35:40.558Z"}
|
| 498 |
+
|
| 499 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 28%|βββ | 1.38G/4.93G [00:21<00:58, 60.4MB/s]\u001b[A","timestamp":"2026-06-29T08:35:44.562Z"}
|
| 500 |
+
|
| 501 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 32%|ββββ | 1.58G/4.93G [00:25<00:59, 56.4MB/s]\u001b[A","timestamp":"2026-06-29T08:35:46.560Z"}
|
| 502 |
+
|
| 503 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 36%|ββββ | 1.76G/4.93G [00:27<00:49, 63.8MB/s]\u001b[A","timestamp":"2026-06-29T08:35:47.630Z"}
|
| 504 |
+
|
| 505 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 42%|βββββ | 2.08G/4.93G [00:28<00:28, 99.0MB/s]\u001b[A","timestamp":"2026-06-29T08:35:50.796Z"}
|
| 506 |
+
|
| 507 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 49%|βββββ | 2.41G/4.93G [00:32<00:24, 102MB/s] \u001b[A","timestamp":"2026-06-29T08:35:51.816Z"}
|
| 508 |
+
|
| 509 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 53%|ββββββ | 2.62G/4.93G [00:33<00:19, 117MB/s]\u001b[A","timestamp":"2026-06-29T08:35:55.543Z"}
|
| 510 |
+
|
| 511 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 62%|βββββββ | 3.03G/4.93G [00:36<00:16, 114MB/s]\u001b[A","timestamp":"2026-06-29T08:35:57.041Z"}
|
| 512 |
+
|
| 513 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 69%|βββββββ | 3.41G/4.93G [00:38<00:10, 141MB/s]\u001b[A","timestamp":"2026-06-29T08:36:01.054Z"}
|
| 514 |
+
|
| 515 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 80%|ββββββββ | 3.94G/4.93G [00:42<00:07, 137MB/s]\u001b[A","timestamp":"2026-06-29T08:36:03.542Z"}
|
| 516 |
+
|
| 517 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 83%|βββββββββ | 4.11G/4.93G [00:44<00:06, 118MB/s]\u001b[A","timestamp":"2026-06-29T08:36:04.605Z"}
|
| 518 |
+
|
| 519 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 87%|βββββββββ | 4.31G/4.93G [00:45<00:04, 130MB/s]\u001b[A","timestamp":"2026-06-29T08:36:05.664Z"}
|
| 520 |
+
|
| 521 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 91%|βββββββββ | 4.49G/4.93G [00:46<00:03, 138MB/s]\u001b[A","timestamp":"2026-06-29T08:36:08.056Z"}
|
| 522 |
+
|
| 523 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 96%|ββββββββββ| 4.75G/4.93G [00:49<00:01, 125MB/s]\u001b[A\rmodel-00004-of-00005.safetensors: 100%|ββββββββββ| 4.93G/4.93G [00:49<00:00, 99.7MB/s]","timestamp":"2026-06-29T08:36:08.361Z"}
|
| 524 |
+
|
| 525 |
+
data: {"data":"","timestamp":"2026-06-29T08:36:08.362Z"}
|
| 526 |
+
|
| 527 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 0%| | 0.00/4.60G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:36:09.375Z"}
|
| 528 |
+
|
| 529 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 0%| | 12.9M/4.60G [00:01<06:17, 12.2MB/s]\u001b[A","timestamp":"2026-06-29T08:36:10.607Z"}
|
| 530 |
+
|
| 531 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 3%|β | 118M/4.60G [00:02<01:17, 57.6MB/s] \u001b[A","timestamp":"2026-06-29T08:36:11.851Z"}
|
| 532 |
+
|
| 533 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 5%|β | 222M/4.60G [00:03<01:02, 70.0MB/s]\u001b[A","timestamp":"2026-06-29T08:36:13.097Z"}
|
| 534 |
+
|
| 535 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 8%|β | 362M/4.60G [00:04<00:48, 87.0MB/s]\u001b[A","timestamp":"2026-06-29T08:36:15.410Z"}
|
| 536 |
+
|
| 537 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 12%|ββ | 557M/4.60G [00:07<00:46, 86.8MB/s]\u001b[A","timestamp":"2026-06-29T08:36:18.152Z"}
|
| 538 |
+
|
| 539 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 16%|ββ | 735M/4.60G [00:09<00:51, 75.6MB/s]\u001b[A","timestamp":"2026-06-29T08:36:20.100Z"}
|
| 540 |
+
|
| 541 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 19%|ββ | 884M/4.60G [00:11<00:48, 76.1MB/s]\u001b[A","timestamp":"2026-06-29T08:36:21.113Z"}
|
| 542 |
+
|
| 543 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 22%|βββ | 1.01G/4.60G [00:12<00:42, 85.3MB/s]\u001b[A","timestamp":"2026-06-29T08:36:22.519Z"}
|
| 544 |
+
|
run_logs_new.txt
CHANGED
|
@@ -1,346 +1,412 @@
|
|
| 1 |
-
data: {"data":"===== Application Startup at 2026-06-29 08:
|
| 2 |
|
| 3 |
-
data: {"data":"Collecting xformers==0.0.32.post2","timestamp":"2026-06-29T08:
|
| 4 |
|
| 5 |
-
data: {"data":" Downloading xformers-0.0.32.post2-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (1.1 kB)","timestamp":"2026-06-29T08:
|
| 6 |
|
| 7 |
-
data: {"data":"Requirement already satisfied: numpy in /usr/local/lib/python3.13/site-packages (from xformers==0.0.32.post2) (2.5.0)","timestamp":"2026-06-29T08:
|
| 8 |
|
| 9 |
-
data: {"data":"Requirement already satisfied: torch==2.8.0 in /usr/local/lib/python3.13/site-packages (from xformers==0.0.32.post2) (2.8.0)","timestamp":"2026-06-29T08:
|
| 10 |
|
| 11 |
-
data: {"data":"Requirement already satisfied: filelock in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.29.4)","timestamp":"2026-06-29T08:
|
| 12 |
|
| 13 |
-
data: {"data":"Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (4.15.0)","timestamp":"2026-06-29T08:
|
| 14 |
|
| 15 |
-
data: {"data":"Requirement already satisfied: setuptools in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (82.0.1)","timestamp":"2026-06-29T08:
|
| 16 |
|
| 17 |
-
data: {"data":"Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (1.14.0)","timestamp":"2026-06-29T08:
|
| 18 |
|
| 19 |
-
data: {"data":"Requirement already satisfied: networkx in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.6.1)","timestamp":"2026-06-29T08:
|
| 20 |
|
| 21 |
-
data: {"data":"Requirement already satisfied: jinja2 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.1.6)","timestamp":"2026-06-29T08:
|
| 22 |
|
| 23 |
-
data: {"data":"Requirement already satisfied: fsspec in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (2026.4.0)","timestamp":"2026-06-29T08:
|
| 24 |
|
| 25 |
-
data: {"data":"Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.93)","timestamp":"2026-06-29T08:
|
| 26 |
|
| 27 |
-
data: {"data":"Requirement already satisfied: nvidia-cuda-runtime-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:
|
| 28 |
|
| 29 |
-
data: {"data":"Requirement already satisfied: nvidia-cuda-cupti-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:
|
| 30 |
|
| 31 |
-
data: {"data":"Requirement already satisfied: nvidia-cudnn-cu12==9.10.2.21 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (9.10.2.21)","timestamp":"2026-06-29T08:
|
| 32 |
|
| 33 |
-
data: {"data":"Requirement already satisfied: nvidia-cublas-cu12==12.8.4.1 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.4.1)","timestamp":"2026-06-29T08:
|
| 34 |
|
| 35 |
-
data: {"data":"Requirement already satisfied: nvidia-cufft-cu12==11.3.3.83 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (11.3.3.83)","timestamp":"2026-06-29T08:
|
| 36 |
|
| 37 |
-
data: {"data":"Requirement already satisfied: nvidia-curand-cu12==10.3.9.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (10.3.9.90)","timestamp":"2026-06-29T08:
|
| 38 |
|
| 39 |
-
data: {"data":"Requirement already satisfied: nvidia-cusolver-cu12==11.7.3.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (11.7.3.90)","timestamp":"2026-06-29T08:
|
| 40 |
|
| 41 |
-
data: {"data":"Requirement already satisfied: nvidia-cusparse-cu12==12.5.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.5.8.93)","timestamp":"2026-06-29T08:
|
| 42 |
|
| 43 |
-
data: {"data":"Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (0.7.1)","timestamp":"2026-06-29T08:
|
| 44 |
|
| 45 |
-
data: {"data":"Requirement already satisfied: nvidia-nccl-cu12==2.27.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (2.27.3)","timestamp":"2026-06-29T08:
|
| 46 |
|
| 47 |
-
data: {"data":"Requirement already satisfied: nvidia-nvtx-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:
|
| 48 |
|
| 49 |
-
data: {"data":"Requirement already satisfied: nvidia-nvjitlink-cu12==12.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.93)","timestamp":"2026-06-29T08:
|
| 50 |
|
| 51 |
-
data: {"data":"Requirement already satisfied: nvidia-cufile-cu12==1.13.1.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (1.13.1.3)","timestamp":"2026-06-29T08:
|
| 52 |
|
| 53 |
-
data: {"data":"Requirement already satisfied: triton==3.4.0 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.4.0)","timestamp":"2026-06-29T08:
|
| 54 |
|
| 55 |
-
data: {"data":"Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.13/site-packages (from sympy>=1.13.3->torch==2.8.0->xformers==0.0.32.post2) (1.3.0)","timestamp":"2026-06-29T08:
|
| 56 |
|
| 57 |
-
data: {"data":"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.13/site-packages (from jinja2->torch==2.8.0->xformers==0.0.32.post2) (3.0.3)","timestamp":"2026-06-29T08:
|
| 58 |
|
| 59 |
-
data: {"data":"Downloading xformers-0.0.32.post2-cp39-abi3-manylinux_2_28_x86_64.whl (117.2 MB)","timestamp":"2026-06-29T08:
|
| 60 |
|
| 61 |
-
data: {"data":" ββββββββββββββββββββββββββββββββββββββββ 117.2/117.2 MB
|
| 62 |
|
| 63 |
-
data: {"data":"Installing collected packages: xformers","timestamp":"2026-06-29T08:
|
| 64 |
|
| 65 |
-
data: {"data":"Successfully installed xformers-0.0.32.post2","timestamp":"2026-06-29T08:
|
| 66 |
|
| 67 |
-
data: {"data":"WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.","timestamp":"2026-06-29T08:
|
| 68 |
|
| 69 |
-
data: {"data":"Cloning https://github.com/Lightricks/LTX-2.git...","timestamp":"2026-06-29T08:
|
| 70 |
|
| 71 |
-
data: {"data":"hint: Using 'master' as the name for the initial branch. This default branch name","timestamp":"2026-06-29T08:
|
| 72 |
|
| 73 |
-
data: {"data":"hint: is subject to change. To configure the initial branch name to use in all","timestamp":"2026-06-29T08:
|
| 74 |
|
| 75 |
-
data: {"data":"hint: of your new repositories, which will suppress this warning, call:","timestamp":"2026-06-29T08:
|
| 76 |
|
| 77 |
-
data: {"data":"hint:","timestamp":"2026-06-29T08:
|
| 78 |
|
| 79 |
-
data: {"data":"hint: \tgit config --global init.defaultBranch <name>","timestamp":"2026-06-29T08:
|
| 80 |
|
| 81 |
-
data: {"data":"hint:","timestamp":"2026-06-29T08:
|
| 82 |
|
| 83 |
-
data: {"data":"hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and","timestamp":"2026-06-29T08:
|
| 84 |
|
| 85 |
-
data: {"data":"hint: 'development'. The just-created branch can be renamed via this command:","timestamp":"2026-06-29T08:
|
| 86 |
|
| 87 |
-
data: {"data":"hint:","timestamp":"2026-06-29T08:
|
| 88 |
|
| 89 |
-
data: {"data":"hint: \tgit branch -m <name>","timestamp":"2026-06-29T08:
|
| 90 |
|
| 91 |
-
data: {"data":"Initialized empty Git repository in /app/LTX-2/.git/","timestamp":"2026-06-29T08:
|
| 92 |
|
| 93 |
-
data: {"data":"From https://github.com/Lightricks/LTX-2","timestamp":"2026-06-29T08:
|
| 94 |
|
| 95 |
-
data: {"data":" * branch ae855f8538843825f9015a419cf4ba5edaf5eec2 -> FETCH_HEAD","timestamp":"2026-06-29T08:
|
| 96 |
|
| 97 |
-
data: {"data":"Note: switching to 'ae855f8538843825f9015a419cf4ba5edaf5eec2'.","timestamp":"2026-06-29T08:
|
| 98 |
|
| 99 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 100 |
|
| 101 |
-
data: {"data":"You are in 'detached HEAD' state. You can look around, make experimental","timestamp":"2026-06-29T08:
|
| 102 |
|
| 103 |
-
data: {"data":"changes and commit them, and you can discard any commits you make in this","timestamp":"2026-06-29T08:
|
| 104 |
|
| 105 |
-
data: {"data":"state without impacting any branches by switching back to a branch.","timestamp":"2026-06-29T08:
|
| 106 |
|
| 107 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 108 |
|
| 109 |
-
data: {"data":"If you want to create a new branch to retain commits you create, you may","timestamp":"2026-06-29T08:
|
| 110 |
|
| 111 |
-
data: {"data":"do so (now or later) by using -c with the switch command. Example:","timestamp":"2026-06-29T08:
|
| 112 |
|
| 113 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 114 |
|
| 115 |
-
data: {"data":" git switch -c <new-branch-name>","timestamp":"2026-06-29T08:
|
| 116 |
|
| 117 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 118 |
|
| 119 |
-
data: {"data":"Or undo this operation with:","timestamp":"2026-06-29T08:
|
| 120 |
|
| 121 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 122 |
|
| 123 |
-
data: {"data":" git switch -","timestamp":"2026-06-29T08:
|
| 124 |
|
| 125 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 126 |
|
| 127 |
-
data: {"data":"Turn off this advice by setting config variable advice.detachedHead to false","timestamp":"2026-06-29T08:
|
| 128 |
|
| 129 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 130 |
|
| 131 |
-
data: {"data":"HEAD is now at ae855f8 Merge pull request #159 from Lightricks/pr-2026-03-11","timestamp":"2026-06-29T08:
|
| 132 |
|
| 133 |
-
data: {"data":"Installing ltx-core and ltx-pipelines from cloned repo...","timestamp":"2026-06-29T08:
|
| 134 |
|
| 135 |
-
data: {"data":"Obtaining file:///app/LTX-2/packages/ltx-core","timestamp":"2026-06-29T08:
|
| 136 |
|
| 137 |
-
data: {"data":" Installing build dependencies: started","timestamp":"2026-06-29T08:
|
| 138 |
|
| 139 |
-
data: {"data":" Installing build dependencies: finished with status 'done'","timestamp":"2026-06-29T08:
|
| 140 |
|
| 141 |
-
data: {"data":" Checking if build backend supports build_editable: started","timestamp":"2026-06-29T08:
|
| 142 |
|
| 143 |
-
data: {"data":" Checking if build backend supports build_editable: finished with status 'done'","timestamp":"2026-06-29T08:
|
| 144 |
|
| 145 |
-
data: {"data":" Getting requirements to build editable: started","timestamp":"2026-06-29T08:
|
| 146 |
|
| 147 |
-
data: {"data":" Getting requirements to build editable: finished with status 'done'","timestamp":"2026-06-29T08:
|
| 148 |
|
| 149 |
-
data: {"data":" Preparing editable metadata (pyproject.toml): started","timestamp":"2026-06-29T08:
|
| 150 |
|
| 151 |
-
data: {"data":" Preparing editable metadata (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:
|
| 152 |
|
| 153 |
-
data: {"data":"Obtaining file:///app/LTX-2/packages/ltx-pipelines","timestamp":"2026-06-29T08:
|
| 154 |
|
| 155 |
-
data: {"data":" Installing build dependencies: started","timestamp":"2026-06-29T08:
|
| 156 |
|
| 157 |
-
data: {"data":" Installing build dependencies: finished with status 'done'","timestamp":"2026-06-29T08:
|
| 158 |
|
| 159 |
-
data: {"data":" Checking if build backend supports build_editable: started","timestamp":"2026-06-29T08:
|
| 160 |
|
| 161 |
-
data: {"data":" Checking if build backend supports build_editable: finished with status 'done'","timestamp":"2026-06-29T08:
|
| 162 |
|
| 163 |
-
data: {"data":" Getting requirements to build editable: started","timestamp":"2026-06-29T08:
|
| 164 |
|
| 165 |
-
data: {"data":" Getting requirements to build editable: finished with status 'done'","timestamp":"2026-06-29T08:
|
| 166 |
|
| 167 |
-
data: {"data":" Preparing editable metadata (pyproject.toml): started","timestamp":"2026-06-29T08:
|
| 168 |
|
| 169 |
-
data: {"data":" Preparing editable metadata (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:
|
| 170 |
|
| 171 |
-
data: {"data":"Building wheels for collected packages: ltx-core, ltx-pipelines","timestamp":"2026-06-29T08:
|
| 172 |
|
| 173 |
-
data: {"data":" Building editable for ltx-core (pyproject.toml): started","timestamp":"2026-06-29T08:
|
| 174 |
|
| 175 |
-
data: {"data":" Building editable for ltx-core (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:
|
| 176 |
|
| 177 |
-
data: {"data":" Created wheel for ltx-core: filename=ltx_core-1.0.0-py3-none-any.whl size=7996 sha256=75f79730c730674c2626c4b78e9a867613b6ce23846104c78fba0eb7fbfa4983","timestamp":"2026-06-29T08:
|
| 178 |
|
| 179 |
-
data: {"data":" Stored in directory: /tmp/pip-ephem-wheel-cache-
|
| 180 |
|
| 181 |
-
data: {"data":" Building editable for ltx-pipelines (pyproject.toml): started","timestamp":"2026-06-29T08:
|
| 182 |
|
| 183 |
-
data: {"data":" Building editable for ltx-pipelines (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:
|
| 184 |
|
| 185 |
-
data: {"data":" Created wheel for ltx-pipelines: filename=ltx_pipelines-1.0.0-py3-none-any.whl size=7748 sha256=3a79effad5f0648c43337cd38086691fff341b143ef7c9ae47cd550c148b3e62","timestamp":"2026-06-29T08:
|
| 186 |
|
| 187 |
-
data: {"data":" Stored in directory: /tmp/pip-ephem-wheel-cache-
|
| 188 |
|
| 189 |
-
data: {"data":"Successfully built ltx-core ltx-pipelines","timestamp":"2026-06-29T08:
|
| 190 |
|
| 191 |
-
data: {"data":"Installing collected packages: ltx-pipelines, ltx-core","timestamp":"2026-06-29T08:
|
| 192 |
|
| 193 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 194 |
|
| 195 |
-
data: {"data":"Successfully installed ltx-core-1.0.0 ltx-pipelines-1.0.0","timestamp":"2026-06-29T08:
|
| 196 |
|
| 197 |
-
data: {"data":"WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.","timestamp":"2026-06-29T08:
|
| 198 |
|
| 199 |
-
data: {"data":"
|
| 200 |
|
| 201 |
-
data: {"data":"
|
| 202 |
|
| 203 |
-
data: {"data":"
|
| 204 |
|
| 205 |
-
data: {"data":"
|
| 206 |
|
| 207 |
-
data: {"data":"
|
| 208 |
|
| 209 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 210 |
|
| 211 |
-
data: {"data":"
|
| 212 |
|
| 213 |
-
data: {"data":"
|
| 214 |
|
| 215 |
-
data: {"data":"
|
| 216 |
|
| 217 |
-
data: {"data":"
|
| 218 |
|
| 219 |
-
data: {"data":"
|
| 220 |
|
| 221 |
-
data: {"data":"
|
| 222 |
|
| 223 |
-
data: {"data":"
|
| 224 |
|
| 225 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 226 |
|
| 227 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 228 |
|
| 229 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 230 |
|
| 231 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 232 |
|
| 233 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 234 |
|
| 235 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 236 |
|
| 237 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 238 |
|
| 239 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 240 |
|
| 241 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 242 |
|
| 243 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 244 |
|
| 245 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 246 |
|
| 247 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 248 |
|
| 249 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 250 |
|
| 251 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 252 |
|
| 253 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 254 |
|
| 255 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 256 |
|
| 257 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 258 |
|
| 259 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 260 |
|
| 261 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 262 |
|
| 263 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 264 |
|
| 265 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 266 |
|
| 267 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 268 |
|
| 269 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 270 |
|
| 271 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 272 |
|
| 273 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 274 |
|
| 275 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 276 |
|
| 277 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 278 |
|
| 279 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 280 |
|
| 281 |
-
data: {"data":"\rltx-2.3-22b-distilled-
|
| 282 |
|
| 283 |
-
data: {"data":"
|
| 284 |
|
| 285 |
-
data: {"data":"\rltx-2.3-
|
| 286 |
|
| 287 |
-
data: {"data":"\rltx-2.3-
|
| 288 |
|
| 289 |
-
data: {"data":"
|
| 290 |
|
| 291 |
-
data: {"data":"
|
| 292 |
|
| 293 |
-
data: {"data":"\
|
| 294 |
|
| 295 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 296 |
|
| 297 |
-
data: {"data":"\
|
| 298 |
|
| 299 |
-
data: {"data":"
|
| 300 |
|
| 301 |
-
data: {"data":"
|
| 302 |
|
| 303 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 304 |
|
| 305 |
-
data: {"data":"\
|
| 306 |
|
| 307 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 308 |
|
| 309 |
-
data: {"data":"\
|
| 310 |
|
| 311 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 312 |
|
| 313 |
-
data: {"data":"\
|
| 314 |
|
| 315 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 316 |
|
| 317 |
-
data: {"data":"\
|
| 318 |
|
| 319 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 320 |
|
| 321 |
-
data: {"data":"\
|
| 322 |
|
| 323 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 324 |
|
| 325 |
-
data: {"data":"\
|
| 326 |
|
| 327 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 328 |
|
| 329 |
-
data: {"data":"\rmodel-00001-of-00005.safetensors:
|
| 330 |
|
| 331 |
-
data: {"data":"
|
| 332 |
|
| 333 |
-
data: {"data":"\rmodel-
|
| 334 |
|
| 335 |
-
data: {"data":"\rmodel-
|
| 336 |
|
| 337 |
-
data: {"data":"\rmodel-
|
| 338 |
|
| 339 |
-
data: {"data":"\rmodel-
|
| 340 |
|
| 341 |
-
data: {"data":"\rmodel-
|
| 342 |
|
| 343 |
-
data: {"data":"","timestamp":"2026-06-29T08:
|
| 344 |
|
| 345 |
-
data: {"data":"\rmodel-00002-of-00005.safetensors:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 346 |
|
|
|
|
| 1 |
+
data: {"data":"===== Application Startup at 2026-06-29 08:18:53 =====\n","timestamp":"2026-06-29T08:18:53Z"}
|
| 2 |
|
| 3 |
+
data: {"data":"Collecting xformers==0.0.32.post2","timestamp":"2026-06-29T08:20:45.414Z"}
|
| 4 |
|
| 5 |
+
data: {"data":" Downloading xformers-0.0.32.post2-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (1.1 kB)","timestamp":"2026-06-29T08:20:45.446Z"}
|
| 6 |
|
| 7 |
+
data: {"data":"Requirement already satisfied: numpy in /usr/local/lib/python3.13/site-packages (from xformers==0.0.32.post2) (2.5.0)","timestamp":"2026-06-29T08:20:45.457Z"}
|
| 8 |
|
| 9 |
+
data: {"data":"Requirement already satisfied: torch==2.8.0 in /usr/local/lib/python3.13/site-packages (from xformers==0.0.32.post2) (2.8.0)","timestamp":"2026-06-29T08:20:45.457Z"}
|
| 10 |
|
| 11 |
+
data: {"data":"Requirement already satisfied: filelock in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.29.4)","timestamp":"2026-06-29T08:20:45.459Z"}
|
| 12 |
|
| 13 |
+
data: {"data":"Requirement already satisfied: typing-extensions>=4.10.0 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (4.15.0)","timestamp":"2026-06-29T08:20:45.459Z"}
|
| 14 |
|
| 15 |
+
data: {"data":"Requirement already satisfied: setuptools in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (82.0.1)","timestamp":"2026-06-29T08:20:45.460Z"}
|
| 16 |
|
| 17 |
+
data: {"data":"Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (1.14.0)","timestamp":"2026-06-29T08:20:45.460Z"}
|
| 18 |
|
| 19 |
+
data: {"data":"Requirement already satisfied: networkx in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.6.1)","timestamp":"2026-06-29T08:20:45.461Z"}
|
| 20 |
|
| 21 |
+
data: {"data":"Requirement already satisfied: jinja2 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.1.6)","timestamp":"2026-06-29T08:20:45.461Z"}
|
| 22 |
|
| 23 |
+
data: {"data":"Requirement already satisfied: fsspec in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (2026.4.0)","timestamp":"2026-06-29T08:20:45.462Z"}
|
| 24 |
|
| 25 |
+
data: {"data":"Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.93)","timestamp":"2026-06-29T08:20:45.462Z"}
|
| 26 |
|
| 27 |
+
data: {"data":"Requirement already satisfied: nvidia-cuda-runtime-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:20:45.463Z"}
|
| 28 |
|
| 29 |
+
data: {"data":"Requirement already satisfied: nvidia-cuda-cupti-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:20:45.464Z"}
|
| 30 |
|
| 31 |
+
data: {"data":"Requirement already satisfied: nvidia-cudnn-cu12==9.10.2.21 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (9.10.2.21)","timestamp":"2026-06-29T08:20:45.467Z"}
|
| 32 |
|
| 33 |
+
data: {"data":"Requirement already satisfied: nvidia-cublas-cu12==12.8.4.1 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.4.1)","timestamp":"2026-06-29T08:20:45.467Z"}
|
| 34 |
|
| 35 |
+
data: {"data":"Requirement already satisfied: nvidia-cufft-cu12==11.3.3.83 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (11.3.3.83)","timestamp":"2026-06-29T08:20:45.467Z"}
|
| 36 |
|
| 37 |
+
data: {"data":"Requirement already satisfied: nvidia-curand-cu12==10.3.9.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (10.3.9.90)","timestamp":"2026-06-29T08:20:45.467Z"}
|
| 38 |
|
| 39 |
+
data: {"data":"Requirement already satisfied: nvidia-cusolver-cu12==11.7.3.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (11.7.3.90)","timestamp":"2026-06-29T08:20:45.467Z"}
|
| 40 |
|
| 41 |
+
data: {"data":"Requirement already satisfied: nvidia-cusparse-cu12==12.5.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.5.8.93)","timestamp":"2026-06-29T08:20:45.468Z"}
|
| 42 |
|
| 43 |
+
data: {"data":"Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (0.7.1)","timestamp":"2026-06-29T08:20:45.468Z"}
|
| 44 |
|
| 45 |
+
data: {"data":"Requirement already satisfied: nvidia-nccl-cu12==2.27.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (2.27.3)","timestamp":"2026-06-29T08:20:45.469Z"}
|
| 46 |
|
| 47 |
+
data: {"data":"Requirement already satisfied: nvidia-nvtx-cu12==12.8.90 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.90)","timestamp":"2026-06-29T08:20:45.470Z"}
|
| 48 |
|
| 49 |
+
data: {"data":"Requirement already satisfied: nvidia-nvjitlink-cu12==12.8.93 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (12.8.93)","timestamp":"2026-06-29T08:20:45.470Z"}
|
| 50 |
|
| 51 |
+
data: {"data":"Requirement already satisfied: nvidia-cufile-cu12==1.13.1.3 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (1.13.1.3)","timestamp":"2026-06-29T08:20:45.471Z"}
|
| 52 |
|
| 53 |
+
data: {"data":"Requirement already satisfied: triton==3.4.0 in /usr/local/lib/python3.13/site-packages (from torch==2.8.0->xformers==0.0.32.post2) (3.4.0)","timestamp":"2026-06-29T08:20:45.472Z"}
|
| 54 |
|
| 55 |
+
data: {"data":"Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.13/site-packages (from sympy>=1.13.3->torch==2.8.0->xformers==0.0.32.post2) (1.3.0)","timestamp":"2026-06-29T08:20:45.487Z"}
|
| 56 |
|
| 57 |
+
data: {"data":"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.13/site-packages (from jinja2->torch==2.8.0->xformers==0.0.32.post2) (3.0.3)","timestamp":"2026-06-29T08:20:45.496Z"}
|
| 58 |
|
| 59 |
+
data: {"data":"Downloading xformers-0.0.32.post2-cp39-abi3-manylinux_2_28_x86_64.whl (117.2 MB)","timestamp":"2026-06-29T08:20:45.506Z"}
|
| 60 |
|
| 61 |
+
data: {"data":" ββββββββββββββββββββββββββββββββββββββββ 117.2/117.2 MB 128.8 MB/s 0:00:00","timestamp":"2026-06-29T08:20:46.432Z"}
|
| 62 |
|
| 63 |
+
data: {"data":"Installing collected packages: xformers","timestamp":"2026-06-29T08:20:46.692Z"}
|
| 64 |
|
| 65 |
+
data: {"data":"Successfully installed xformers-0.0.32.post2","timestamp":"2026-06-29T08:20:48.821Z"}
|
| 66 |
|
| 67 |
+
data: {"data":"WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.","timestamp":"2026-06-29T08:20:48.822Z"}
|
| 68 |
|
| 69 |
+
data: {"data":"Cloning https://github.com/Lightricks/LTX-2.git...","timestamp":"2026-06-29T08:20:48.927Z"}
|
| 70 |
|
| 71 |
+
data: {"data":"hint: Using 'master' as the name for the initial branch. This default branch name","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 72 |
|
| 73 |
+
data: {"data":"hint: is subject to change. To configure the initial branch name to use in all","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 74 |
|
| 75 |
+
data: {"data":"hint: of your new repositories, which will suppress this warning, call:","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 76 |
|
| 77 |
+
data: {"data":"hint:","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 78 |
|
| 79 |
+
data: {"data":"hint: \tgit config --global init.defaultBranch <name>","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 80 |
|
| 81 |
+
data: {"data":"hint:","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 82 |
|
| 83 |
+
data: {"data":"hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 84 |
|
| 85 |
+
data: {"data":"hint: 'development'. The just-created branch can be renamed via this command:","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 86 |
|
| 87 |
+
data: {"data":"hint:","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 88 |
|
| 89 |
+
data: {"data":"hint: \tgit branch -m <name>","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 90 |
|
| 91 |
+
data: {"data":"Initialized empty Git repository in /app/LTX-2/.git/","timestamp":"2026-06-29T08:20:48.960Z"}
|
| 92 |
|
| 93 |
+
data: {"data":"From https://github.com/Lightricks/LTX-2","timestamp":"2026-06-29T08:20:49.229Z"}
|
| 94 |
|
| 95 |
+
data: {"data":" * branch ae855f8538843825f9015a419cf4ba5edaf5eec2 -> FETCH_HEAD","timestamp":"2026-06-29T08:20:49.229Z"}
|
| 96 |
|
| 97 |
+
data: {"data":"Note: switching to 'ae855f8538843825f9015a419cf4ba5edaf5eec2'.","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 98 |
|
| 99 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 100 |
|
| 101 |
+
data: {"data":"You are in 'detached HEAD' state. You can look around, make experimental","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 102 |
|
| 103 |
+
data: {"data":"changes and commit them, and you can discard any commits you make in this","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 104 |
|
| 105 |
+
data: {"data":"state without impacting any branches by switching back to a branch.","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 106 |
|
| 107 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 108 |
|
| 109 |
+
data: {"data":"If you want to create a new branch to retain commits you create, you may","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 110 |
|
| 111 |
+
data: {"data":"do so (now or later) by using -c with the switch command. Example:","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 112 |
|
| 113 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 114 |
|
| 115 |
+
data: {"data":" git switch -c <new-branch-name>","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 116 |
|
| 117 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 118 |
|
| 119 |
+
data: {"data":"Or undo this operation with:","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 120 |
|
| 121 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 122 |
|
| 123 |
+
data: {"data":" git switch -","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 124 |
|
| 125 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 126 |
|
| 127 |
+
data: {"data":"Turn off this advice by setting config variable advice.detachedHead to false","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 128 |
|
| 129 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 130 |
|
| 131 |
+
data: {"data":"HEAD is now at ae855f8 Merge pull request #159 from Lightricks/pr-2026-03-11","timestamp":"2026-06-29T08:20:49.262Z"}
|
| 132 |
|
| 133 |
+
data: {"data":"Installing ltx-core and ltx-pipelines from cloned repo...","timestamp":"2026-06-29T08:20:49.263Z"}
|
| 134 |
|
| 135 |
+
data: {"data":"Obtaining file:///app/LTX-2/packages/ltx-core","timestamp":"2026-06-29T08:20:49.624Z"}
|
| 136 |
|
| 137 |
+
data: {"data":" Installing build dependencies: started","timestamp":"2026-06-29T08:20:49.626Z"}
|
| 138 |
|
| 139 |
+
data: {"data":" Installing build dependencies: finished with status 'done'","timestamp":"2026-06-29T08:20:50.636Z"}
|
| 140 |
|
| 141 |
+
data: {"data":" Checking if build backend supports build_editable: started","timestamp":"2026-06-29T08:20:50.637Z"}
|
| 142 |
|
| 143 |
+
data: {"data":" Checking if build backend supports build_editable: finished with status 'done'","timestamp":"2026-06-29T08:20:50.683Z"}
|
| 144 |
|
| 145 |
+
data: {"data":" Getting requirements to build editable: started","timestamp":"2026-06-29T08:20:50.684Z"}
|
| 146 |
|
| 147 |
+
data: {"data":" Getting requirements to build editable: finished with status 'done'","timestamp":"2026-06-29T08:20:50.724Z"}
|
| 148 |
|
| 149 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): started","timestamp":"2026-06-29T08:20:50.725Z"}
|
| 150 |
|
| 151 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:20:50.772Z"}
|
| 152 |
|
| 153 |
+
data: {"data":"Obtaining file:///app/LTX-2/packages/ltx-pipelines","timestamp":"2026-06-29T08:20:50.782Z"}
|
| 154 |
|
| 155 |
+
data: {"data":" Installing build dependencies: started","timestamp":"2026-06-29T08:20:50.784Z"}
|
| 156 |
|
| 157 |
+
data: {"data":" Installing build dependencies: finished with status 'done'","timestamp":"2026-06-29T08:20:51.617Z"}
|
| 158 |
|
| 159 |
+
data: {"data":" Checking if build backend supports build_editable: started","timestamp":"2026-06-29T08:20:51.618Z"}
|
| 160 |
|
| 161 |
+
data: {"data":" Checking if build backend supports build_editable: finished with status 'done'","timestamp":"2026-06-29T08:20:51.673Z"}
|
| 162 |
|
| 163 |
+
data: {"data":" Getting requirements to build editable: started","timestamp":"2026-06-29T08:20:51.674Z"}
|
| 164 |
|
| 165 |
+
data: {"data":" Getting requirements to build editable: finished with status 'done'","timestamp":"2026-06-29T08:20:51.717Z"}
|
| 166 |
|
| 167 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): started","timestamp":"2026-06-29T08:20:51.718Z"}
|
| 168 |
|
| 169 |
+
data: {"data":" Preparing editable metadata (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:20:51.768Z"}
|
| 170 |
|
| 171 |
+
data: {"data":"Building wheels for collected packages: ltx-core, ltx-pipelines","timestamp":"2026-06-29T08:20:51.778Z"}
|
| 172 |
|
| 173 |
+
data: {"data":" Building editable for ltx-core (pyproject.toml): started","timestamp":"2026-06-29T08:20:51.779Z"}
|
| 174 |
|
| 175 |
+
data: {"data":" Building editable for ltx-core (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:20:51.829Z"}
|
| 176 |
|
| 177 |
+
data: {"data":" Created wheel for ltx-core: filename=ltx_core-1.0.0-py3-none-any.whl size=7996 sha256=75f79730c730674c2626c4b78e9a867613b6ce23846104c78fba0eb7fbfa4983","timestamp":"2026-06-29T08:20:51.830Z"}
|
| 178 |
|
| 179 |
+
data: {"data":" Stored in directory: /tmp/pip-ephem-wheel-cache-x00n2n8c/wheels/b6/f5/ae/2c7327a69b1abdb37786315c23ecaa748618b7d623b22746d5","timestamp":"2026-06-29T08:20:51.830Z"}
|
| 180 |
|
| 181 |
+
data: {"data":" Building editable for ltx-pipelines (pyproject.toml): started","timestamp":"2026-06-29T08:20:51.834Z"}
|
| 182 |
|
| 183 |
+
data: {"data":" Building editable for ltx-pipelines (pyproject.toml): finished with status 'done'","timestamp":"2026-06-29T08:20:51.885Z"}
|
| 184 |
|
| 185 |
+
data: {"data":" Created wheel for ltx-pipelines: filename=ltx_pipelines-1.0.0-py3-none-any.whl size=7748 sha256=3a79effad5f0648c43337cd38086691fff341b143ef7c9ae47cd550c148b3e62","timestamp":"2026-06-29T08:20:51.886Z"}
|
| 186 |
|
| 187 |
+
data: {"data":" Stored in directory: /tmp/pip-ephem-wheel-cache-x00n2n8c/wheels/ec/78/aa/1b203104d17857904b10c209580710625d942057672efaed57","timestamp":"2026-06-29T08:20:51.886Z"}
|
| 188 |
|
| 189 |
+
data: {"data":"Successfully built ltx-core ltx-pipelines","timestamp":"2026-06-29T08:20:51.889Z"}
|
| 190 |
|
| 191 |
+
data: {"data":"Installing collected packages: ltx-pipelines, ltx-core","timestamp":"2026-06-29T08:20:51.891Z"}
|
| 192 |
|
| 193 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:51.916Z"}
|
| 194 |
|
| 195 |
+
data: {"data":"Successfully installed ltx-core-1.0.0 ltx-pipelines-1.0.0","timestamp":"2026-06-29T08:20:51.926Z"}
|
| 196 |
|
| 197 |
+
data: {"data":"WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.","timestamp":"2026-06-29T08:20:51.926Z"}
|
| 198 |
|
| 199 |
+
data: {"data":"Purging pip cache...","timestamp":"2026-06-29T08:20:52.013Z"}
|
| 200 |
|
| 201 |
+
data: {"data":"Files removed: 14 (119.1 MB)","timestamp":"2026-06-29T08:20:52.258Z"}
|
| 202 |
|
| 203 |
+
data: {"data":"Directories removed: 0","timestamp":"2026-06-29T08:20:52.258Z"}
|
| 204 |
|
| 205 |
+
data: {"data":"Deleting cloned LTX-2 repo .git folder to save space...","timestamp":"2026-06-29T08:20:52.313Z"}
|
| 206 |
|
| 207 |
+
data: {"data":"[ATTN] Before patch: memory_efficient_attention=<function memory_efficient_attention at 0x7fb1530fa840>","timestamp":"2026-06-29T08:20:59.411Z"}
|
| 208 |
|
| 209 |
+
data: {"data":"[ATTN] After patch: memory_efficient_attention=<function memory_efficient_attention at 0x7fb1530fa840>","timestamp":"2026-06-29T08:20:59.411Z"}
|
| 210 |
|
| 211 |
+
data: {"data":"[ATTN] xformers FA3 dispatch disabled (Blackwell-incompatible)","timestamp":"2026-06-29T08:20:59.411Z"}
|
| 212 |
|
| 213 |
+
data: {"data":"[FUSE-PATCH] SafetensorsStateDictLoader.load replaced (chunked-read)","timestamp":"2026-06-29T08:20:59.411Z"}
|
| 214 |
|
| 215 |
+
data: {"data":"LTX Mount not found. Downloading weights directly from Hugging Face...","timestamp":"2026-06-29T08:20:59.412Z"}
|
| 216 |
|
| 217 |
+
data: {"data":"/usr/local/lib/python3.13/site-packages/huggingface_hub/file_download.py:986: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`.","timestamp":"2026-06-29T08:20:59.412Z"}
|
| 218 |
|
| 219 |
+
data: {"data":"For more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder.","timestamp":"2026-06-29T08:20:59.413Z"}
|
| 220 |
|
| 221 |
+
data: {"data":" warnings.warn(","timestamp":"2026-06-29T08:20:59.413Z"}
|
| 222 |
|
| 223 |
+
data: {"data":"","timestamp":"2026-06-29T08:20:59.468Z"}
|
| 224 |
|
| 225 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 0%| | 0.00/29.5G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:21:01.735Z"}
|
| 226 |
|
| 227 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 0%| | 20.5M/29.5G [00:02<54:23, 9.04MB/s]\u001b[A","timestamp":"2026-06-29T08:21:02.987Z"}
|
| 228 |
|
| 229 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 1%| | 307M/29.5G [00:03<04:35, 106MB/s] \u001b[A","timestamp":"2026-06-29T08:21:04.485Z"}
|
| 230 |
|
| 231 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 4%|β | 1.21G/29.5G [00:05<01:28, 319MB/s]\u001b[A","timestamp":"2026-06-29T08:21:05.485Z"}
|
| 232 |
|
| 233 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 6%|β | 1.81G/29.5G [00:06<01:09, 402MB/s]\u001b[A","timestamp":"2026-06-29T08:21:06.736Z"}
|
| 234 |
|
| 235 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 8%|β | 2.35G/29.5G [00:07<01:06, 411MB/s]\u001b[A","timestamp":"2026-06-29T08:21:08.235Z"}
|
| 236 |
|
| 237 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 12%|ββ | 3.40G/29.5G [00:08<00:50, 519MB/s]\u001b[A","timestamp":"2026-06-29T08:21:09.485Z"}
|
| 238 |
|
| 239 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 14%|ββ | 4.12G/29.5G [00:10<00:47, 537MB/s]\u001b[A","timestamp":"2026-06-29T08:21:15.237Z"}
|
| 240 |
|
| 241 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 17%|ββ | 4.97G/29.5G [00:15<01:28, 276MB/s]\u001b[A","timestamp":"2026-06-29T08:21:18.754Z"}
|
| 242 |
|
| 243 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 20%|ββ | 6.00G/29.5G [00:19<01:23, 282MB/s]\u001b[A","timestamp":"2026-06-29T08:21:21.489Z"}
|
| 244 |
|
| 245 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 25%|βββ | 7.34G/29.5G [00:22<01:04, 343MB/s]\u001b[A","timestamp":"2026-06-29T08:21:22.986Z"}
|
| 246 |
|
| 247 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 27%|βββ | 7.94G/29.5G [00:23<01:00, 354MB/s]\u001b[A","timestamp":"2026-06-29T08:21:24.736Z"}
|
| 248 |
|
| 249 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 29%|βββ | 8.48G/29.5G [00:25<01:01, 343MB/s]\u001b[A","timestamp":"2026-06-29T08:21:26.735Z"}
|
| 250 |
|
| 251 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 32%|ββββ | 9.35G/29.5G [00:27<00:54, 369MB/s]\u001b[A","timestamp":"2026-06-29T08:21:28.486Z"}
|
| 252 |
|
| 253 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 36%|ββββ | 10.6G/29.5G [00:29<00:40, 461MB/s]\u001b[A","timestamp":"2026-06-29T08:21:29.486Z"}
|
| 254 |
|
| 255 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 39%|ββββ | 11.6G/29.5G [00:30<00:32, 556MB/s]\u001b[A","timestamp":"2026-06-29T08:21:30.986Z"}
|
| 256 |
|
| 257 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 42%|βββββ | 12.4G/29.5G [00:31<00:31, 539MB/s]\u001b[A","timestamp":"2026-06-29T08:21:31.986Z"}
|
| 258 |
|
| 259 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 46%|βββββ | 13.5G/29.5G [00:32<00:24, 665MB/s]\u001b[A","timestamp":"2026-06-29T08:21:33.740Z"}
|
| 260 |
|
| 261 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 55%|ββββββ | 16.2G/29.5G [00:34<00:14, 949MB/s]\u001b[A","timestamp":"2026-06-29T08:21:36.741Z"}
|
| 262 |
|
| 263 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 58%|ββββββ | 17.3G/29.5G [00:37<00:17, 687MB/s]\u001b[A","timestamp":"2026-06-29T08:21:37.987Z"}
|
| 264 |
|
| 265 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 63%|βββββββ | 18.5G/29.5G [00:38<00:14, 755MB/s]\u001b[A","timestamp":"2026-06-29T08:21:39.241Z"}
|
| 266 |
|
| 267 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 67%|βββββββ | 19.9G/29.5G [00:39<00:11, 830MB/s]\u001b[A","timestamp":"2026-06-29T08:21:43.235Z"}
|
| 268 |
|
| 269 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 71%|βββββββ | 20.9G/29.5G [00:43<00:16, 531MB/s]\u001b[A","timestamp":"2026-06-29T08:21:44.235Z"}
|
| 270 |
|
| 271 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 75%|ββββββββ | 22.0G/29.5G [00:44<00:11, 629MB/s]\u001b[A","timestamp":"2026-06-29T08:21:45.486Z"}
|
| 272 |
|
| 273 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 78%|ββββββββ | 23.0G/29.5G [00:46<00:09, 658MB/s]\u001b[A","timestamp":"2026-06-29T08:21:48.238Z"}
|
| 274 |
|
| 275 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 81%|ββββββββ | 23.9G/29.5G [00:48<00:10, 522MB/s]\u001b[A","timestamp":"2026-06-29T08:21:49.484Z"}
|
| 276 |
|
| 277 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 85%|βββββββββ | 25.1G/29.5G [00:50<00:07, 611MB/s]\u001b[A","timestamp":"2026-06-29T08:21:50.485Z"}
|
| 278 |
|
| 279 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 89%|βββββββββ | 26.2G/29.5G [00:51<00:04, 716MB/s]\u001b[A","timestamp":"2026-06-29T08:21:51.734Z"}
|
| 280 |
|
| 281 |
+
data: {"data":"\rltx-2.3-22b-distilled-fp8.safetensors: 97%|ββββββββββ| 28.5G/29.5G [00:52<00:00, 1.01GB/s]\u001b[A\rltx-2.3-22b-distilled-fp8.safetensors: 100%|ββββββββββ| 29.5G/29.5G [00:52<00:00, 557MB/s] ","timestamp":"2026-06-29T08:21:52.455Z"}
|
| 282 |
|
| 283 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:52.478Z"}
|
| 284 |
|
| 285 |
+
data: {"data":"\rltx-2.3-spatial-upscaler-x2-1.1.safetens(β¦): 0%| | 0.00/996M [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:21:54.496Z"}
|
| 286 |
|
| 287 |
+
data: {"data":"\rltx-2.3-spatial-upscaler-x2-1.1.safetens(β¦): 7%|β | 67.0M/996M [00:02<00:27, 33.2MB/s]\u001b[A\rltx-2.3-spatial-upscaler-x2-1.1.safetens(β¦): 100%|ββββββββββ| 996M/996M [00:02<00:00, 391MB/s] ","timestamp":"2026-06-29T08:21:55.027Z"}
|
| 288 |
|
| 289 |
+
data: {"data":"Gemma Mount not found. Downloading Gemma model directly from Hugging Face...","timestamp":"2026-06-29T08:21:55.028Z"}
|
| 290 |
|
| 291 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.112Z"}
|
| 292 |
|
| 293 |
+
data: {"data":"\r.gitattributes: 0%| | 0.00/1.97k [00:00<?, ?B/s]\u001b[A\r.gitattributes: 100%|ββββββββββ| 1.97k/1.97k [00:00<00:00, 14.1MB/s]","timestamp":"2026-06-29T08:21:55.112Z"}
|
| 294 |
|
| 295 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.137Z"}
|
| 296 |
|
| 297 |
+
data: {"data":"\rREADME.md: 0%| | 0.00/22.8k [00:00<?, ?B/s]\u001b[A\rREADME.md: 100%|ββββββββββ| 22.8k/22.8k [00:00<00:00, 88.3MB/s]","timestamp":"2026-06-29T08:21:55.137Z"}
|
| 298 |
|
| 299 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.168Z"}
|
| 300 |
|
| 301 |
+
data: {"data":"\radded_tokens.json: 0%| | 0.00/35.0 [00:00<?, ?B/s]\u001b[A\radded_tokens.json: 100%|ββββββββββ| 35.0/35.0 [00:00<00:00, 272kB/s]","timestamp":"2026-06-29T08:21:55.168Z"}
|
| 302 |
|
| 303 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.191Z"}
|
| 304 |
|
| 305 |
+
data: {"data":"\rchat_template.json: 0%| | 0.00/1.61k [00:00<?, ?B/s]\u001b[A\rchat_template.json: 100%|ββββββββββ| 1.61k/1.61k [00:00<00:00, 12.8MB/s]","timestamp":"2026-06-29T08:21:55.192Z"}
|
| 306 |
|
| 307 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.216Z"}
|
| 308 |
|
| 309 |
+
data: {"data":"\rconfig.json: 0%| | 0.00/1.61k [00:00<?, ?B/s]\u001b[A\rconfig.json: 100%|ββββββββββ| 1.61k/1.61k [00:00<00:00, 11.4MB/s]","timestamp":"2026-06-29T08:21:55.216Z"}
|
| 310 |
|
| 311 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.241Z"}
|
| 312 |
|
| 313 |
+
data: {"data":"\rgeneration_config.json: 0%| | 0.00/173 [00:00<?, ?B/s]\u001b[A\rgeneration_config.json: 100%|ββββββββββ| 173/173 [00:00<00:00, 1.41MB/s]","timestamp":"2026-06-29T08:21:55.242Z"}
|
| 314 |
|
| 315 |
+
data: {"data":"","timestamp":"2026-06-29T08:21:55.259Z"}
|
| 316 |
|
| 317 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 0%| | 0.00/4.98G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:21:57.537Z"}
|
| 318 |
|
| 319 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 3%|β | 134M/4.98G [00:02<01:22, 58.9MB/s]\u001b[A","timestamp":"2026-06-29T08:21:58.787Z"}
|
| 320 |
|
| 321 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 13%|ββ | 630M/4.98G [00:03<00:20, 207MB/s] \u001b[A","timestamp":"2026-06-29T08:21:59.787Z"}
|
| 322 |
|
| 323 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 18%|ββ | 898M/4.98G [00:04<00:17, 228MB/s]\u001b[A","timestamp":"2026-06-29T08:22:01.036Z"}
|
| 324 |
|
| 325 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 50%|βββββ | 2.50G/4.98G [00:05<00:03, 622MB/s]\u001b[A","timestamp":"2026-06-29T08:22:03.785Z"}
|
| 326 |
|
| 327 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 64%|βββββββ | 3.18G/4.98G [00:08<00:04, 420MB/s]\u001b[A","timestamp":"2026-06-29T08:22:05.285Z"}
|
| 328 |
|
| 329 |
+
data: {"data":"\rmodel-00001-of-00005.safetensors: 75%|ββββββββ | 3.72G/4.98G [00:10<00:03, 402MB/s]\u001b[A\rmodel-00001-of-00005.safetensors: 100%|ββββββββββ| 4.98G/4.98G [00:10<00:00, 456MB/s]","timestamp":"2026-06-29T08:22:06.183Z"}
|
| 330 |
|
| 331 |
+
data: {"data":"","timestamp":"2026-06-29T08:22:06.199Z"}
|
| 332 |
|
| 333 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 0%| | 0.00/4.93G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:22:07.291Z"}
|
| 334 |
|
| 335 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 4%|β | 195M/4.93G [00:01<00:26, 179MB/s]\u001b[A","timestamp":"2026-06-29T08:22:08.292Z"}
|
| 336 |
|
| 337 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 11%|β | 520M/4.93G [00:02<00:16, 261MB/s]\u001b[A","timestamp":"2026-06-29T08:22:09.293Z"}
|
| 338 |
|
| 339 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 18%|ββ | 870M/4.93G [00:03<00:13, 301MB/s]\u001b[A","timestamp":"2026-06-29T08:22:10.792Z"}
|
| 340 |
|
| 341 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 26%|βββ | 1.26G/4.93G [00:04<00:13, 281MB/s]\u001b[A","timestamp":"2026-06-29T08:22:12.041Z"}
|
| 342 |
|
| 343 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 36%|ββββ | 1.78G/4.93G [00:05<00:09, 331MB/s]\u001b[A","timestamp":"2026-06-29T08:22:13.043Z"}
|
| 344 |
|
| 345 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 44%|βββββ | 2.18G/4.93G [00:06<00:07, 352MB/s]\u001b[A","timestamp":"2026-06-29T08:22:14.293Z"}
|
| 346 |
+
|
| 347 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 61%|βββββββ | 3.03G/4.93G [00:08<00:04, 465MB/s]\u001b[A","timestamp":"2026-06-29T08:22:16.043Z"}
|
| 348 |
+
|
| 349 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 73%|ββββββββ | 3.61G/4.93G [00:09<00:03, 409MB/s]\u001b[A","timestamp":"2026-06-29T08:22:17.044Z"}
|
| 350 |
+
|
| 351 |
+
data: {"data":"\rmodel-00002-of-00005.safetensors: 85%|βββββββββ | 4.17G/4.93G [00:10<00:01, 448MB/s]\u001b[A\rmodel-00002-of-00005.safetensors: 100%|ββββββββββ| 4.93G/4.93G [00:11<00:00, 423MB/s]","timestamp":"2026-06-29T08:22:17.857Z"}
|
| 352 |
+
|
| 353 |
+
data: {"data":"","timestamp":"2026-06-29T08:22:17.874Z"}
|
| 354 |
+
|
| 355 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 0%| | 0.00/4.93G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:22:18.885Z"}
|
| 356 |
+
|
| 357 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 4%|β | 174M/4.93G [00:01<00:27, 173MB/s]\u001b[A","timestamp":"2026-06-29T08:22:20.137Z"}
|
| 358 |
+
|
| 359 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 14%|ββ | 688M/4.93G [00:02<00:13, 324MB/s]\u001b[A","timestamp":"2026-06-29T08:22:21.386Z"}
|
| 360 |
+
|
| 361 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 22%|βββ | 1.10G/4.93G [00:03<00:11, 328MB/s]\u001b[A","timestamp":"2026-06-29T08:22:22.387Z"}
|
| 362 |
+
|
| 363 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 33%|ββββ | 1.62G/4.93G [00:04<00:08, 396MB/s]\u001b[A","timestamp":"2026-06-29T08:22:23.634Z"}
|
| 364 |
+
|
| 365 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 44%|βββββ | 2.16G/4.93G [00:05<00:06, 410MB/s]\u001b[A","timestamp":"2026-06-29T08:22:24.634Z"}
|
| 366 |
+
|
| 367 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 53%|ββββββ | 2.62G/4.93G [00:06<00:05, 425MB/s]\u001b[A","timestamp":"2026-06-29T08:22:25.635Z"}
|
| 368 |
+
|
| 369 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 62%|βββββββ | 3.07G/4.93G [00:07<00:04, 432MB/s]\u001b[A","timestamp":"2026-06-29T08:22:26.636Z"}
|
| 370 |
+
|
| 371 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 72%|ββββββββ | 3.55G/4.93G [00:08<00:03, 448MB/s]\u001b[A","timestamp":"2026-06-29T08:22:27.636Z"}
|
| 372 |
+
|
| 373 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 84%|βββββββββ | 4.13G/4.93G [00:09<00:01, 485MB/s]\u001b[A","timestamp":"2026-06-29T08:22:28.888Z"}
|
| 374 |
+
|
| 375 |
+
data: {"data":"\rmodel-00003-of-00005.safetensors: 97%|ββββββββββ| 4.77G/4.93G [00:11<00:00, 497MB/s]\u001b[A\rmodel-00003-of-00005.safetensors: 100%|ββββββββββ| 4.93G/4.93G [00:11<00:00, 441MB/s]","timestamp":"2026-06-29T08:22:29.060Z"}
|
| 376 |
+
|
| 377 |
+
data: {"data":"","timestamp":"2026-06-29T08:22:29.079Z"}
|
| 378 |
+
|
| 379 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 0%| | 0.00/4.93G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:22:30.088Z"}
|
| 380 |
+
|
| 381 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 5%|β | 248M/4.93G [00:01<00:19, 246MB/s]\u001b[A","timestamp":"2026-06-29T08:22:31.091Z"}
|
| 382 |
+
|
| 383 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 14%|ββ | 672M/4.93G [00:02<00:12, 349MB/s]\u001b[A","timestamp":"2026-06-29T08:22:32.339Z"}
|
| 384 |
+
|
| 385 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 30%|βββ | 1.47G/4.93G [00:03<00:06, 497MB/s]\u001b[A","timestamp":"2026-06-29T08:22:33.588Z"}
|
| 386 |
+
|
| 387 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 44%|βββββ | 2.16G/4.93G [00:04<00:05, 522MB/s]\u001b[A","timestamp":"2026-06-29T08:22:34.588Z"}
|
| 388 |
+
|
| 389 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 56%|ββββββ | 2.77G/4.93G [00:05<00:03, 550MB/s]\u001b[A","timestamp":"2026-06-29T08:22:35.839Z"}
|
| 390 |
+
|
| 391 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 69%|βββββββ | 3.40G/4.93G [00:06<00:02, 532MB/s]\u001b[A","timestamp":"2026-06-29T08:22:36.840Z"}
|
| 392 |
+
|
| 393 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 80%|ββββββββ | 3.94G/4.93G [00:07<00:01, 534MB/s]\u001b[A","timestamp":"2026-06-29T08:22:38.089Z"}
|
| 394 |
+
|
| 395 |
+
data: {"data":"\rmodel-00004-of-00005.safetensors: 91%|βββββββββ | 4.48G/4.93G [00:09<00:00, 499MB/s]\u001b[A\rmodel-00004-of-00005.safetensors: 100%|ββββββββββ| 4.93G/4.93G [00:09<00:00, 514MB/s]","timestamp":"2026-06-29T08:22:38.671Z"}
|
| 396 |
+
|
| 397 |
+
data: {"data":"","timestamp":"2026-06-29T08:22:38.690Z"}
|
| 398 |
+
|
| 399 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 0%| | 0.00/4.60G [00:00<?, ?B/s]\u001b[A","timestamp":"2026-06-29T08:22:39.702Z"}
|
| 400 |
+
|
| 401 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 8%|β | 356M/4.60G [00:01<00:12, 351MB/s]\u001b[A","timestamp":"2026-06-29T08:22:40.703Z"}
|
| 402 |
+
|
| 403 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 22%|βββ | 1.02G/4.60G [00:02<00:06, 532MB/s]\u001b[A","timestamp":"2026-06-29T08:22:42.205Z"}
|
| 404 |
+
|
| 405 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 35%|ββββ | 1.63G/4.60G [00:03<00:06, 465MB/s]\u001b[A","timestamp":"2026-06-29T08:22:43.454Z"}
|
| 406 |
+
|
| 407 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 53%|ββββββ | 2.46G/4.60G [00:04<00:03, 542MB/s]\u001b[A","timestamp":"2026-06-29T08:22:44.703Z"}
|
| 408 |
+
|
| 409 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 66%|βββββββ | 3.03G/4.60G [00:06<00:03, 513MB/s]\u001b[A","timestamp":"2026-06-29T08:22:45.953Z"}
|
| 410 |
+
|
| 411 |
+
data: {"data":"\rmodel-00005-of-00005.safetensors: 85%|βββββββββ | 3.91G/4.60G [00:07<00:01, 578MB/s]\u001b[A","timestamp":"2026-06-29T08:22:46.448Z"}
|
| 412 |
|