Instructions to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1", filename="ornith-1.0-35b-IQ4_XS-MTP-graft-headQ6.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M # Run inference directly in the terminal: llama cli -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M # Run inference directly in the terminal: llama cli -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Use Docker
docker model run hf.co/LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
- Ollama
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with Ollama:
ollama run hf.co/LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
- Unsloth Studio
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 to start chatting
- Pi
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with Docker Model Runner:
docker model run hf.co/LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
- Lemonade
How to use LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1:Q4_K_M
Run and chat with the model
lemonade run user.Ornith-1.0-35B-GGUF-llamacpp-tp1-Q4_K_M
List all available models
lemonade list
| { | |
| "behavior_regression_matrix": { | |
| "latest_report_generated_at": "2026-06-28T00:42:38.734738+00:00", | |
| "markdown_report": "probes/behavior-regression-matrix.md", | |
| "note": "Known-bad artifacts are intentionally included so the matrix proves the gate catches regressions.", | |
| "report": "probes/behavior-regression-matrix.json", | |
| "script": "scripts/summarize_behavior_matrix.py", | |
| "summary": { | |
| "artifacts": 7, | |
| "blocking_issues": 6, | |
| "blocking_severities": [ | |
| "critical", | |
| "high" | |
| ], | |
| "checks": 98, | |
| "failed_checks": 9, | |
| "failing_artifacts": 2, | |
| "issues": 11, | |
| "passing_artifacts": 5, | |
| "warning_checks": 0 | |
| } | |
| }, | |
| "generated_at": "2026-06-28T00:58:55.373853+00:00", | |
| "known_remaining_gaps": [ | |
| "No release-candidate SFT/post-training adapter exists because SFT was stopped and checkpoint-8000 failed behavior gates.", | |
| "The recommended strong repair blend and resume preflight are prepared CPU-side, but no resumed GPU training has been run from them.", | |
| "The integrated MTP profile is recommended adaptively; always-on MTP is still not a saturated c16 throughput win.", | |
| "vLLM GGUF remains marked unusable for this model family in the documented probe; llama.cpp is the supported GGUF backend." | |
| ], | |
| "model_card_metadata": { | |
| "base_model": "deepreinforce-ai/Ornith-1.0-35B", | |
| "library_name": "gguf", | |
| "license": "mit", | |
| "license_link": "https://huggingface.co/deepreinforce-ai/Ornith-1.0-35B/blob/main/LICENSE", | |
| "pipeline_tag": "text-generation", | |
| "tags": [ | |
| "gguf", | |
| "llama-cpp", | |
| "quantized", | |
| "text-generation", | |
| "coding", | |
| "mtp", | |
| "qwen3_5_moe", | |
| "single-gpu", | |
| "tp1" | |
| ] | |
| }, | |
| "published_gguf": [ | |
| { | |
| "blob_id": "22f67bcceb94b8b5678374fbc318c64f4f09efd0", | |
| "bytes": 19632837760, | |
| "gib": 18.285, | |
| "path": "ornith-1.0-35b-IQ4_XS-MTP-graft-headQ6.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "b0d902aa4d45a51c18a85eaaf9ccb7db14cc8caa", | |
| "bytes": 18939311680, | |
| "gib": 17.639, | |
| "path": "ornith-1.0-35b-IQ4_XS.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "a501a18c15af6d01f87b0a6a1ad730038555b3b4", | |
| "bytes": 16764763712, | |
| "gib": 15.613, | |
| "path": "ornith-1.0-35b-Q3_K_M.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "fe22dc3ac4939a48113ce5c419550fb4c627d994", | |
| "bytes": 21166757760, | |
| "gib": 19.713, | |
| "path": "ornith-1.0-35b-Q4_K_M.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "668278d63d45032bd0a9b3531805d8b821c00d24", | |
| "bytes": 24729130848, | |
| "gib": 23.031, | |
| "path": "ornith-1.0-35b-Q5_K_M.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "6b508985d071c95cdfdfd709f9fc6a27ce44a78a", | |
| "bytes": 28514152288, | |
| "gib": 26.556, | |
| "path": "ornith-1.0-35b-Q6_K.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "b1faf816685e013ceb18974c06599324f86e8402", | |
| "bytes": 36903138880, | |
| "gib": 34.369, | |
| "path": "ornith-1.0-35b-Q8_0.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "a5ffefa3aebc758648ad0b082d7ccac31dad1759", | |
| "bytes": 1149036128, | |
| "gib": 1.07, | |
| "path": "ornith-1.0-35b-mtp-bootstrap-layer39-IQ4_XS.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "7940ecc1866a24c202b258364449f7b848bdbdee", | |
| "bytes": 3623587040, | |
| "gib": 3.375, | |
| "path": "ornith-1.0-35b-mtp-chaincorr-h2r10prefix1000-h1r2-h3r8fw-lr5e6-Q6_K.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "11a278ab710bc917eab13aa1a7f1acca7e518173", | |
| "bytes": 3623586912, | |
| "gib": 3.375, | |
| "path": "ornith-1.0-35b-mtp-chaincorr-h2r10prefix250-h1r2-h3r8fw-lr5e6-Q6_K.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "3b02c9eb201e0c7b926bbf2d5572c1849a484d9a", | |
| "bytes": 3623586912, | |
| "gib": 3.375, | |
| "path": "ornith-1.0-35b-mtp-chaincorr-h2r10prefix500-h1r2-h3r8fw-lr5e6-Q6_K.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "3a9215c952b2faac6aed5f4f637810fa595aa3a2", | |
| "bytes": 2501241952, | |
| "gib": 2.329, | |
| "path": "ornith-1.0-35b-mtp-chaincorr-h2r9fw125-h1r2-h3r6ce375-lr5e7-IQ4_XS.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "18e1b2da75f41e21e44c52c6ac17856f350ad996", | |
| "bytes": 3251055712, | |
| "gib": 3.028, | |
| "path": "ornith-1.0-35b-mtp-chaincorr-h2r9fw125-h1r2-h3r6ce375-lr5e7-Q5_K_M.gguf", | |
| "published": true | |
| }, | |
| { | |
| "blob_id": "ba41d0ef43fd5be68300e563973fad9428ab6bab", | |
| "bytes": 3623586912, | |
| "gib": 3.375, | |
| "path": "ornith-1.0-35b-mtp-chaincorr-h2r9fw125-h1r2-h3r6ce375-lr5e7-Q6_K.gguf", | |
| "published": true | |
| } | |
| ], | |
| "release_readiness": { | |
| "latest_report_generated_at": "2026-06-28T00:58:25.555064+00:00", | |
| "markdown_report": "probes/release-readiness-report.md", | |
| "note": "Serving GGUF release readiness is separated from full project completion because the SFT adapter remains unreleased.", | |
| "report": "probes/release-readiness-report.json", | |
| "script": "scripts/build_release_readiness_report.py", | |
| "summary": { | |
| "checks": 25, | |
| "failed_checks": 0, | |
| "full_project_status": "incomplete", | |
| "serving_release_status": "pass", | |
| "status_counts": { | |
| "pass": 20, | |
| "warn": 5 | |
| }, | |
| "warning_checks": 5 | |
| } | |
| }, | |
| "release_verification": { | |
| "latest_report_checks": 25, | |
| "latest_report_failed_checks": 0, | |
| "latest_report_generated_at": "2026-06-28T00:51:11.236283+00:00", | |
| "latest_report_hashes": { | |
| "checked": 216, | |
| "checked_generated": 3, | |
| "checked_staged": 213, | |
| "skipped_large": 0, | |
| "skipped_missing_local": 0, | |
| "skipped_missing_remote": 0 | |
| }, | |
| "latest_report_status": "pass", | |
| "latest_report_verified_remote_sha": "7dcf02d87d07e4b173d7b375e9fc747605d80652", | |
| "latest_report_warnings": 1, | |
| "note": "The JSON report records the HF commit it verified. Re-run the script to verify the current default branch head after any new upload.", | |
| "report": "probes/hf-release-verification.json", | |
| "script": "scripts/verify_hf_release.py" | |
| }, | |
| "remote_file_count_before_upload": 241, | |
| "remote_head_before_upload": "16abb00acc4a1c89dbc5c357252fe677205931cd", | |
| "repair_artifacts": { | |
| "code_only_extract_format": { | |
| "assistant_code_fence": 0.0, | |
| "assistant_contains_heres": 0.0, | |
| "assistant_mentions_json": 3.485, | |
| "assistant_short_under_80_chars": 3.7, | |
| "assistant_starts_heres": 0.0, | |
| "assistant_starts_the_function": 0.0, | |
| "assistant_starts_to_solve": 0.0, | |
| "rendered_contains_qwen_markers": 0.0, | |
| "rendered_contains_think": 0.0, | |
| "rendered_empty_think": 0.0 | |
| }, | |
| "code_only_extract_rows": { | |
| "eval": 1000, | |
| "train": 20000 | |
| }, | |
| "code_only_gate_summary": { | |
| "checks": 8, | |
| "failed_checks": 0, | |
| "files": 2, | |
| "issues": 0 | |
| }, | |
| "config": "configs/sft_repair_blend.yaml", | |
| "format_gate_config": "configs/sft_format_gates.yaml", | |
| "local_only_generated_data": [ | |
| "data/train/coding_sft_code_only_messages.jsonl", | |
| "data/eval/coding_sft_code_only_eval_messages.jsonl", | |
| "data/train/coding_sft_prod_repair_strong_messages.jsonl", | |
| "data/eval/coding_sft_prod_repair_strong_eval_messages.jsonl", | |
| "data/train/coding_sft_prod_repair_strong.jsonl", | |
| "data/eval/coding_sft_prod_repair_strong_eval.jsonl" | |
| ], | |
| "published_synthetic_data": [ | |
| "data/train/coding_sft_repair_messages.jsonl", | |
| "data/eval/coding_sft_repair_eval_messages.jsonl" | |
| ], | |
| "recommended_strong_blend_eval_rows": 2312, | |
| "recommended_strong_blend_rows": 44096, | |
| "recommended_strong_gate_summary": { | |
| "checks": 10, | |
| "failed_checks": 0, | |
| "files": 2, | |
| "issues": 0 | |
| }, | |
| "recommended_strong_train_format": { | |
| "assistant_code_fence": 54.4267, | |
| "assistant_contains_heres": 30.4948, | |
| "assistant_mentions_json": 3.252, | |
| "assistant_short_under_80_chars": 8.8942, | |
| "assistant_starts_heres": 15.0694, | |
| "assistant_starts_the_function": 0.4037, | |
| "assistant_starts_to_solve": 1.8755, | |
| "rendered_contains_qwen_markers": 0.0, | |
| "rendered_contains_think": 0.0, | |
| "rendered_empty_think": 0.0 | |
| }, | |
| "recommended_strong_validation_issue_count": 0, | |
| "recommended_strong_validation_warnings": [ | |
| { | |
| "detail": "77 rows exceed 1024 tokens", | |
| "name": "train:max_length", | |
| "recommendation": "Chunk, shorten, or raise max_length only if memory allows it.", | |
| "status": "warn" | |
| }, | |
| { | |
| "detail": "7 rows exceed 1024 tokens", | |
| "name": "eval:max_length", | |
| "recommendation": "Chunk, shorten, or raise max_length only if memory allows it.", | |
| "status": "warn" | |
| } | |
| ], | |
| "repair_set_rows": { | |
| "eval": 512, | |
| "train": 4096 | |
| }, | |
| "reports": [ | |
| "probes/sft-repair-set.json", | |
| "probes/sft-code-only-extract.json", | |
| "probes/sft-repair-strong-blend-train.json", | |
| "probes/sft-repair-strong-blend-eval.json", | |
| "probes/sft-data-validation-prod-repair-strong.json", | |
| "probes/sft-format-audit-prod-repair-strong.json", | |
| "probes/sft-format-gate-code-only-extract.json", | |
| "probes/sft-format-gate-prod-repair-strong.json", | |
| "probes/sft-resume-preflight-strong.json" | |
| ], | |
| "resume_command_preview": "CUDA_VISIBLE_DEVICES=1 RUN_NAME=ornith-35b-coding-lora-prod-repair-20k OUTPUT_DIR=artifacts/train/ornith-35b-coding-lora-prod-repair-20k TRAIN_JSONL=data/train/coding_sft_prod_repair_strong.jsonl EVAL_JSONL=data/eval/coding_sft_prod_repair_strong_eval.jsonl MIN_TRAIN_ROWS=44096 VALIDATION_REPORT=runs/sft-train-validation-prod-repair-strong.json RESUME_FROM_CHECKPOINT=artifacts/train/ornith-35b-coding-lora-prod-20k/checkpoint-8000 scripts/launch_sft_prod_20k_gpu1.sh", | |
| "resume_preflight_script": "scripts/preflight_sft_resume.py", | |
| "resume_preflight_status": "pass", | |
| "resume_preflight_summary": { | |
| "checks": 16, | |
| "failures": 0, | |
| "warnings": 0 | |
| }, | |
| "scripts": [ | |
| "scripts/build_sft_repair_set.py", | |
| "scripts/build_sft_code_only_from_fences.py", | |
| "scripts/build_sft_blend.py", | |
| "scripts/render_sft_jsonl.py", | |
| "scripts/validate_sft_jsonl.py", | |
| "scripts/check_sft_format_gates.py", | |
| "scripts/preflight_sft_resume.py", | |
| "scripts/eval_lora_behavior.py", | |
| "scripts/launch_sft_prod_20k_gpu1.sh" | |
| ], | |
| "sft_status": "stopped; no GPU training is running; no LoRA adapter released" | |
| }, | |
| "repo_id": "LordNeel/Ornith-1.0-35B-GGUF-llamacpp-tp1", | |
| "serving_profiles": { | |
| "config": "configs/serving_profiles.yaml", | |
| "latest_report_generated_at": "2026-06-28T00:56:49.528851+00:00", | |
| "markdown_report": "probes/serving-profile-validation.md", | |
| "note": "Machine-readable single-GPU llama.cpp serving profiles with Q4 default, Q3 lowest-memory, IQ4_XS middle-footprint, and adaptive MTP entries.", | |
| "report": "probes/serving-profile-validation.json", | |
| "script": "scripts/validate_serving_profiles.py", | |
| "summary": { | |
| "checks": 43, | |
| "failed_checks": 0, | |
| "status": "pass", | |
| "status_counts": { | |
| "pass": 43 | |
| }, | |
| "warnings": 0 | |
| } | |
| }, | |
| "staged_file_count_excluding_generated_audit_files": 217, | |
| "staged_files": [ | |
| { | |
| "bytes": 12795, | |
| "path": "MODEL_INVESTIGATION_HARNESS.md", | |
| "remote_before_upload": { | |
| "blob_id": "11d19ea8434b8a6b792692c62612340ab47f22c4", | |
| "bytes": 12198, | |
| "exists": true | |
| }, | |
| "sha256": "0275706ac68b747d6ab6b2e65131f8d621b109937939779aa354227effeb367f" | |
| }, | |
| { | |
| "bytes": 9338, | |
| "path": "PROJECT_STATUS_AUDIT.md", | |
| "remote_before_upload": { | |
| "blob_id": "12abd37fee2e13cdc59ac09f34ad41047c37532c", | |
| "bytes": 8575, | |
| "exists": true | |
| }, | |
| "sha256": "1f38f8f0ef4085cfbc0a7e708af86f2ea200130e8df84316e3a5f1258e36f3e9" | |
| }, | |
| { | |
| "bytes": 11157, | |
| "path": "README.md", | |
| "remote_before_upload": { | |
| "blob_id": "fcbe763783bc5975c28adec65acd1c66a9b7cbdf", | |
| "bytes": 10523, | |
| "exists": true | |
| }, | |
| "sha256": "f67e32ef769791b92ea113ccc825d783edae9e514ed4304f114d80da551a365d" | |
| }, | |
| { | |
| "bytes": 12029, | |
| "path": "SFT_REMEDIATION_PLAN.md", | |
| "remote_before_upload": { | |
| "blob_id": "a5ccbb3aec62956257b9ac243a2cf5ee448ee355", | |
| "bytes": 12029, | |
| "exists": true | |
| }, | |
| "sha256": "a8f929e6f3bdc6a26d3671dded4394dfbe80846a13077e9192d6297ffce65af3" | |
| }, | |
| { | |
| "bytes": 3294, | |
| "path": "benchmarks/kld-quant-vs-bf16-top64.md", | |
| "remote_before_upload": { | |
| "blob_id": "376892b1847c3b98e8bd00b690466970de9fc910", | |
| "bytes": 3294, | |
| "exists": true | |
| }, | |
| "sha256": "82d0722c04bfd08d911342e0599e0fa1b71b104cc832dc8812b3e981a62ceb47" | |
| }, | |
| { | |
| "bytes": 5414, | |
| "path": "benchmarks/llamacpp-iq4-xs-mtp-bootstrap-profile.md", | |
| "remote_before_upload": { | |
| "blob_id": "d9ef82a3e750d4e14c1b78b0948cc0b672b54537", | |
| "bytes": 5414, | |
| "exists": true | |
| }, | |
| "sha256": "4cc8f3f7893fc4f9f2386fbbf4ed27cb73ecdf968a429cdeefcad81ba5613006" | |
| }, | |
| { | |
| "bytes": 29733, | |
| "path": "benchmarks/llamacpp-iq4-xs-mtp-chaincorr-profile.md", | |
| "remote_before_upload": { | |
| "blob_id": "18d36d59fe066f6065ffc9c417419df9ab2bce9c", | |
| "bytes": 29733, | |
| "exists": true | |
| }, | |
| "sha256": "e26bd22133c7f91755ab3dd25a984e004fd5a77057a64f77a2db3d356d8199ac" | |
| }, | |
| { | |
| "bytes": 5566, | |
| "path": "benchmarks/llamacpp-iq4-xs-mtp-graft-adaptive-profile.md", | |
| "remote_before_upload": { | |
| "blob_id": "df0ab1ae4916ec9426ce7b58452ef0a979944af4", | |
| "bytes": 5566, | |
| "exists": true | |
| }, | |
| "sha256": "a3103f4373fd120dcddb3982b7afa66e3e82415ee8f3be97aac4437ce949471e" | |
| }, | |
| { | |
| "bytes": 3829, | |
| "path": "benchmarks/llamacpp-iq4-xs-profile.md", | |
| "remote_before_upload": { | |
| "blob_id": "d86d542d50447e01feebc2508a0b21c8cdfcbf7c", | |
| "bytes": 3829, | |
| "exists": true | |
| }, | |
| "sha256": "1b96697d747d54ef1eefb6c6260d4bb33a7924a6b874b382d12efbfa2461c6c6" | |
| }, | |
| { | |
| "bytes": 2638, | |
| "path": "benchmarks/llamacpp-q3-k-m-profile.md", | |
| "remote_before_upload": { | |
| "blob_id": "b11c69c02ffbd3f14f98fd1a47010a4a43134b9f", | |
| "bytes": 2638, | |
| "exists": true | |
| }, | |
| "sha256": "f5a3fbb3328dd4df6fa4c676754f867a41bbeeb5ba3f628846725d3abada067d" | |
| }, | |
| { | |
| "bytes": 1932, | |
| "path": "benchmarks/llamacpp-q4-reasoning-off-fix.md", | |
| "remote_before_upload": { | |
| "blob_id": "fc3ffff7ad7cd261e62b89fcda7b3d06e663076f", | |
| "bytes": 1932, | |
| "exists": true | |
| }, | |
| "sha256": "4a66511468c6bc150faccd4fcb0dfabbf500f005a0fd8c682acb4877ebf8917c" | |
| }, | |
| { | |
| "bytes": 15106, | |
| "path": "benchmarks/llamacpp-quant-benchmarks.md", | |
| "remote_before_upload": { | |
| "blob_id": "5d2afc62b5b47faeab64cb323a741b1dcbd03bbb", | |
| "bytes": 15106, | |
| "exists": true | |
| }, | |
| "sha256": "a3771dd7f81872665dc1e736c2b7bd1dc3b689415720984f550dcbdcfdb80aba" | |
| }, | |
| { | |
| "bytes": 540525, | |
| "path": "benchmarks/raw/kld-native-bf16-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "0f06d4902366d440c6d7a78193bcd82397445e7d", | |
| "bytes": 540525, | |
| "exists": true | |
| }, | |
| "sha256": "6561f70553ec5c39127bc5a20faee02e4bc950fe447e5c463d631ff27609d877" | |
| }, | |
| { | |
| "bytes": 528560, | |
| "path": "benchmarks/raw/kld-native-iq4-xs-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "3bc36166d34b52507abc2d1d3f454003823a8c65", | |
| "bytes": 528560, | |
| "exists": true | |
| }, | |
| "sha256": "e3b531b145b90f4a2d9c2dbdc8b754b630723cc375e1e49a581efac374cffccf" | |
| }, | |
| { | |
| "bytes": 17531, | |
| "path": "benchmarks/raw/kld-native-iq4-xs-vs-bf16.json", | |
| "remote_before_upload": { | |
| "blob_id": "e44ae703feb379132303e961de63478460d3a66f", | |
| "bytes": 17531, | |
| "exists": true | |
| }, | |
| "sha256": "e9f43b3f13496a63e2a99c176cd7ae525eba6e8e18e164f5bd3f9ed6209d900b" | |
| }, | |
| { | |
| "bytes": 530982, | |
| "path": "benchmarks/raw/kld-native-q3-k-m-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "da7ef6e6ea29ae5cf5be403b670404986aaadf35", | |
| "bytes": 530982, | |
| "exists": true | |
| }, | |
| "sha256": "340b60468d5d6623f476b5d9e0478189cd1c9e95208207b85d326526ef8e1cdd" | |
| }, | |
| { | |
| "bytes": 17496, | |
| "path": "benchmarks/raw/kld-native-q3-k-m-vs-bf16.json", | |
| "remote_before_upload": { | |
| "blob_id": "339a4a765739b3330c0cd9a8cecf3b47794bf27e", | |
| "bytes": 17496, | |
| "exists": true | |
| }, | |
| "sha256": "973a211dda675c26c6e588c0a93d417eed454f0fae3874f2edfd43acaac54ee6" | |
| }, | |
| { | |
| "bytes": 528071, | |
| "path": "benchmarks/raw/kld-native-q4-k-m-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "a26028f6d8ef2676d21b1c8a1669ccf6a31f8460", | |
| "bytes": 528071, | |
| "exists": true | |
| }, | |
| "sha256": "7fc99271628c0eef156bee37d8dc15f3826417a5e22d39954fa4c5860917d4a5" | |
| }, | |
| { | |
| "bytes": 17562, | |
| "path": "benchmarks/raw/kld-native-q4-k-m-vs-bf16.json", | |
| "remote_before_upload": { | |
| "blob_id": "7a4904241836d5abd7d25332c96d0a9d224b98df", | |
| "bytes": 17562, | |
| "exists": true | |
| }, | |
| "sha256": "a1e5e7e49ecddf51ab642ed83a3616d1b4fafe2a94ce5bb93161dc756a794a48" | |
| }, | |
| { | |
| "bytes": 538320, | |
| "path": "benchmarks/raw/kld-native-q5-k-m-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "84ab482383a423c11454aea6201482f5714aef30", | |
| "bytes": 538320, | |
| "exists": true | |
| }, | |
| "sha256": "2aebef6964e648a2c36c3467665b7a95912fa0b0a534cbbc3e6a6b85f1e735cf" | |
| }, | |
| { | |
| "bytes": 17572, | |
| "path": "benchmarks/raw/kld-native-q5-k-m-vs-bf16.json", | |
| "remote_before_upload": { | |
| "blob_id": "83801d1b1f08a70cfa7847cace27229581328c73", | |
| "bytes": 17572, | |
| "exists": true | |
| }, | |
| "sha256": "c3dd781285b82d42264836b5d3f2770b99b64edbb5384708d19269dabd84ca58" | |
| }, | |
| { | |
| "bytes": 539580, | |
| "path": "benchmarks/raw/kld-native-q6-k-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "765658a1d3f829e6f241afc32565ffebdb3dbf6e", | |
| "bytes": 539580, | |
| "exists": true | |
| }, | |
| "sha256": "5288a90e7900287a0b217906315adbdd80b75421ef6550226d3351d4e3465a26" | |
| }, | |
| { | |
| "bytes": 17588, | |
| "path": "benchmarks/raw/kld-native-q6-k-vs-bf16.json", | |
| "remote_before_upload": { | |
| "blob_id": "debba39c4082f6ace6132870addb4d23ca89891f", | |
| "bytes": 17588, | |
| "exists": true | |
| }, | |
| "sha256": "1c1014dec96d0bd6a063e8e05a7ceef16c50118666652fadcef02452854efa59" | |
| }, | |
| { | |
| "bytes": 538777, | |
| "path": "benchmarks/raw/kld-native-q8-0-top64-32prompts.json", | |
| "remote_before_upload": { | |
| "blob_id": "bfba8f7fd0f038da40d4c721d132508e72a251d0", | |
| "bytes": 538777, | |
| "exists": true | |
| }, | |
| "sha256": "137e8cd9eba416ea9bd876075aced2062c0fce2571b4c0c4ad28a9a91f2c48df" | |
| }, | |
| { | |
| "bytes": 17611, | |
| "path": "benchmarks/raw/kld-native-q8-0-vs-bf16.json", | |
| "remote_before_upload": { | |
| "blob_id": "ba23e8935251dac2198c91192e16453386c24fbc", | |
| "bytes": 17611, | |
| "exists": true | |
| }, | |
| "sha256": "6b7ea9c396c4a74f9ec2da02a8392bf83b6a84db41ca7a7ff7fa140e867b9c33" | |
| }, | |
| { | |
| "bytes": 121, | |
| "path": "benchmarks/raw/kld-native-vram.csv", | |
| "remote_before_upload": { | |
| "blob_id": "1c8ef970ff7d1797933a7ade2ba4b4b519012c82", | |
| "bytes": 121, | |
| "exists": true | |
| }, | |
| "sha256": "19c1aab8bf0ff499aba9a5cf01d66a7c0b0952d5ccb273823e28404ea0057934" | |
| }, | |
| { | |
| "bytes": 3803, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "12f7cb79599340df380c205783e59326d40db685", | |
| "bytes": 3803, | |
| "exists": true | |
| }, | |
| "sha256": "984754eb43404ba827832e988153e2f62e8bcf65b6bac7e93ddc548d353c454b" | |
| }, | |
| { | |
| "bytes": 7176, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-c16-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "63c33c4cd2dbb9b830e0600698ab945454b5c9d9", | |
| "bytes": 7176, | |
| "exists": true | |
| }, | |
| "sha256": "63915b4a0f7749a5822adeb21c020e54f57a59f6b1d6a69188f8b0df324b53fd" | |
| }, | |
| { | |
| "bytes": 3777, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "b4a6396c20f6fd2caa0fbd1e0b12053e47600bd0", | |
| "bytes": 3777, | |
| "exists": true | |
| }, | |
| "sha256": "0540bd2dd3820b45af6f8d78b350f9c91c4face422fb1712538f90b3e46b2b69" | |
| }, | |
| { | |
| "bytes": 3780, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "e1cde2a2e9a9711b5a994efcd89cda81e6657c22", | |
| "bytes": 3780, | |
| "exists": true | |
| }, | |
| "sha256": "be391aee1da72d8c9e0e4c09bbf763fd1818ac809e8e77e95530eeeb354a73b1" | |
| }, | |
| { | |
| "bytes": 223925, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r10prefix1000-q6k-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "d607dcc9153e90417adaf4c71717526adba5cc8b", | |
| "bytes": 223925, | |
| "exists": true | |
| }, | |
| "sha256": "4dc7cbbb82837b42170b2df17e053c2eba8ddfe6ce020f246e0731d5cc43ca0f" | |
| }, | |
| { | |
| "bytes": 27569, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r10prefix1000-q6k-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "9aa8089daac2f63f09dc41bf0f12c523330cccce", | |
| "bytes": 27569, | |
| "exists": true | |
| }, | |
| "sha256": "da582f2ba8b88bac45b0ac2d8342cc6423ef7aae79eead58cf041307e894c283" | |
| }, | |
| { | |
| "bytes": 223923, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r10prefix250-q6k-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "7e97a255805f67359db1f7f98468a0860f7ec508", | |
| "bytes": 223923, | |
| "exists": true | |
| }, | |
| "sha256": "c7da2d17edd72eb1a162500b2d38f090ed1c999657527a025a3c9a818ef0c5a3" | |
| }, | |
| { | |
| "bytes": 27567, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r10prefix250-q6k-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "fc0accd4a6ed8c7ff031969465eed52ed99992c2", | |
| "bytes": 27567, | |
| "exists": true | |
| }, | |
| "sha256": "0ce397e2584b48855378b4afdeb67e127df0d9d213502871f9335932e688c4c8" | |
| }, | |
| { | |
| "bytes": 223924, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r10prefix500-q6k-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "948defd60ea7288e0519a2d5fbd6f1a0f0ce8ef7", | |
| "bytes": 223924, | |
| "exists": true | |
| }, | |
| "sha256": "6226a2505f7b0d45fa48911ddb486dd00530e51c274b1b12637a898a1c64d874" | |
| }, | |
| { | |
| "bytes": 27572, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r10prefix500-q6k-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "d8d91c36f89b151611a5195def62ac012e500d54", | |
| "bytes": 27572, | |
| "exists": true | |
| }, | |
| "sha256": "e1476c397955d08ddd9630bfe05f9d08aa361e563d0e1f8d4856949ec16b50ea" | |
| }, | |
| { | |
| "bytes": 224324, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r9-q6-nmax2-perhead-defer-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "e0f88692a01a1369681e34229951d91944394eef", | |
| "bytes": 224324, | |
| "exists": true | |
| }, | |
| "sha256": "c11da52ee1228aa2ad1be4238b1a6fb96f6918d1ce8da07eb45eaaab193298c9" | |
| }, | |
| { | |
| "bytes": 27592, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-h2r9-q6-nmax2-perhead-defer-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "46657c5b33ed79cf4e4ee6d51a61473c36aee5ce", | |
| "bytes": 27592, | |
| "exists": true | |
| }, | |
| "sha256": "3c309575058b8cd300b3276cdb6c250cd66d3b15e0c12b8c1809cae1d950c296" | |
| }, | |
| { | |
| "bytes": 27562, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-nmax2-perhead-backend-topk1-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "988d49b7da6833cbda47b37641004da1ae0de01f", | |
| "bytes": 27562, | |
| "exists": true | |
| }, | |
| "sha256": "5c1d6bf0f6f4f0180e26bae2262998b6ec90b348d508ae060fba4ba861744af6" | |
| }, | |
| { | |
| "bytes": 237737, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-nmax2-perhead-backend-topk1-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "516372439d4101908e77a0cc21450baab1c13bb1", | |
| "bytes": 237737, | |
| "exists": true | |
| }, | |
| "sha256": "aa9b0451774e844b074891444a6ac44d891ba58e796c2687383a66a3386dcf80" | |
| }, | |
| { | |
| "bytes": 27574, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-nmax2-q6-batched-defer-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "61c29db10412c856adfa97a2645f01337745580b", | |
| "bytes": 27574, | |
| "exists": true | |
| }, | |
| "sha256": "4833bdec51b261415b1e8b242eaba37877c4b1377af01ade17752baf4fd35ab8" | |
| }, | |
| { | |
| "bytes": 373194, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-nmax2-q6-batched-defer-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "6c8bae1b7725e1d770bbdccb5bee7ff828880ba4", | |
| "bytes": 373194, | |
| "exists": true | |
| }, | |
| "sha256": "d60655422240c3f716a272826da31a8ce59897b0b5da6e699531b45fcf63d439" | |
| }, | |
| { | |
| "bytes": 27564, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-nmax3-q6-fast-topk1-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "319ca14c6ab7c6b5abd47179ce52b430b0ec6ad5", | |
| "bytes": 27564, | |
| "exists": true | |
| }, | |
| "sha256": "9e13ef59bca754f9a1ce4566e5d0e8c6125e5045f8d2c9037c20337a3da07307" | |
| }, | |
| { | |
| "bytes": 376607, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-nmax3-q6-fast-topk1-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "ca56a16b358e34491201605cf4deec2e5e894e93", | |
| "bytes": 376607, | |
| "exists": true | |
| }, | |
| "sha256": "85d80e58eb08a7e49f7bc1844b23d36909c1edf6ae59a830fdb9a07c876aba32" | |
| }, | |
| { | |
| "bytes": 3823, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-perhead-q6-nmax2-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "a32c868cf7912fa732744025c8494cb07be59e66", | |
| "bytes": 3823, | |
| "exists": true | |
| }, | |
| "sha256": "09110288052799a98cbdeb2ae71d9d0ca134f47601e3d280aecb864a71064787" | |
| }, | |
| { | |
| "bytes": 3785, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-perhead-q6-nmax2-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "8bc8884b33b7c6ec3fd1369fcfd3da305c2717cc", | |
| "bytes": 3785, | |
| "exists": true | |
| }, | |
| "sha256": "27270dd7abb78ffe8ac9938a3fd2d10891ccef64aacf042580bd8d29e01b111b" | |
| }, | |
| { | |
| "bytes": 3774, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-perhead-q6-nmax2-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "99accc422b8e2b90f15817ec1de2d718f9a9ffc6", | |
| "bytes": 3774, | |
| "exists": true | |
| }, | |
| "sha256": "31e4a2181dedcc6f1c771359ce81bdcbad236b094113c5aa863b0c621c3c9120" | |
| }, | |
| { | |
| "bytes": 84533, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-perhead-q6-nmax2-lowc-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "a7f7c798d4045202edfe873305b94b3d2f7ee48c", | |
| "bytes": 84533, | |
| "exists": true | |
| }, | |
| "sha256": "309661ff79be22b92aec281ea1873d94e9dde25d93352bd0c600a7a06576dd21" | |
| }, | |
| { | |
| "bytes": 3781, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-seqverify-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "2e40066a71538f6e2aaec119ea0afab0aa2dabc6", | |
| "bytes": 3781, | |
| "exists": true | |
| }, | |
| "sha256": "c80b0872423b9be36903306394592b1b87ba208a262d8b2d86a7325114b22508" | |
| }, | |
| { | |
| "bytes": 3810, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-seqverify-fast-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "abda3eefeec3dba77e0225ac999f23cf6f50cbbe", | |
| "bytes": 3810, | |
| "exists": true | |
| }, | |
| "sha256": "b3e6875e306f6ea623a65846fdb144ec38e3740876e798c661132aee5bd71312" | |
| }, | |
| { | |
| "bytes": 27585, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-seqverify-fast-c16-128-r128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "b624ccb122e4d07e9e4dcebbbfc443fa011fe2c5", | |
| "bytes": 27585, | |
| "exists": true | |
| }, | |
| "sha256": "d446c1b31ea9f04b461ccc41e5cfcca762ab17a88a259f3bcec9d2caf6762dc2" | |
| }, | |
| { | |
| "bytes": 3782, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-seqverify-fast-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "5cbe5b82c43495b59d2d8e93cdfb84d6c742efb8", | |
| "bytes": 3782, | |
| "exists": true | |
| }, | |
| "sha256": "8c748120730960f9bb4df97d3512ef0de5ab612a7fc4efd4855ce809f1167d12" | |
| }, | |
| { | |
| "bytes": 3791, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-mtp-seqverify-fast-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "a91a90070929f90c618f11050bd9ad2c4ac2821c", | |
| "bytes": 3791, | |
| "exists": true | |
| }, | |
| "sha256": "c3d068af0d2cd699dd27a3a7285952b651438cc314d4c1e8af96698aa96e2e52" | |
| }, | |
| { | |
| "bytes": 27601, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-c16-128-r128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "00f37c7ff41ad858bc2698206b5a0aad9c139618", | |
| "bytes": 27601, | |
| "exists": true | |
| }, | |
| "sha256": "ffed328c557a9e68ef366e7a1d55b1d6c40e6bc5978b3fe20977535d898c3861" | |
| }, | |
| { | |
| "bytes": 535606, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "f87cd94f830f75eb5c3c8b3d98aba1c301baa67b", | |
| "bytes": 535606, | |
| "exists": true | |
| }, | |
| "sha256": "260775f17dc28040c91fe4d5ec2eaaf1d89bb78f323762bc54d88dfcb22f2adc" | |
| }, | |
| { | |
| "bytes": 3814, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-nocache-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "9038a7368dd41de79d069b5061add7778576bb11", | |
| "bytes": 3814, | |
| "exists": true | |
| }, | |
| "sha256": "8c8abd7f0c3056751124c1da90622e75f917d1f5cd14d4613c5c925e400cb259" | |
| }, | |
| { | |
| "bytes": 27620, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-nocache-c16-128-r128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "407498ae0c818b22a029c2373b1b90d24e70d2f9", | |
| "bytes": 27620, | |
| "exists": true | |
| }, | |
| "sha256": "a04778a5aa8d10e4bc51d2eec9590e44c8ba4e36d83641ef87000a772f733ca9" | |
| }, | |
| { | |
| "bytes": 184168, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-nocache-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "01498c978ed75dfc6d076aa547f4b69c48840d99", | |
| "bytes": 184168, | |
| "exists": true | |
| }, | |
| "sha256": "353254a8dc21faaa43ceb119d1c880662957e6f1497fcb0bc8bd4bb1d5ed5103" | |
| }, | |
| { | |
| "bytes": 3804, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-nocache-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "63dde552bcd9d460e9bba2e7a9e71bdb461b7f54", | |
| "bytes": 3804, | |
| "exists": true | |
| }, | |
| "sha256": "e37fc4b3e76b934e02afc583bee5389a9de09147471dabc3a3f7b86c80e424ac" | |
| }, | |
| { | |
| "bytes": 3787, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-nocache-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "7ddb518f391f7c9948a44086413ae095b27924a3", | |
| "bytes": 3787, | |
| "exists": true | |
| }, | |
| "sha256": "4e8fe4a2a1229f4dfb38de28412df5562331d193cb73e068b943c97e72e5d540" | |
| }, | |
| { | |
| "bytes": 74853, | |
| "path": "benchmarks/raw/llamacpp-iq4-xs-target-nocache-lowc-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "e7b33283a88c224f8f7a84d6ae295c865494cc8b", | |
| "bytes": 74853, | |
| "exists": true | |
| }, | |
| "sha256": "27d4942bd5e55994bc44fa2dbb735baf6f29747a88a22fcf55c47c8147931e4a" | |
| }, | |
| { | |
| "bytes": 584265, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-ar-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "9e0b06da84c7f1d1b8d12a9c43ed884ea1b3549c", | |
| "bytes": 584265, | |
| "exists": true | |
| }, | |
| "sha256": "e7fcae66fb85541b693204415863d9cda078a123ac3bcec2421d1022c41aaf35" | |
| }, | |
| { | |
| "bytes": 27611, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-ar-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "c850fd061d5ee63501cb5e261be85806fbd58196", | |
| "bytes": 27611, | |
| "exists": true | |
| }, | |
| "sha256": "2a3bd26effee4e5764846aea3313764a0325f81bcbd33d4968a3900c5d8a3117" | |
| }, | |
| { | |
| "bytes": 41931, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-ar-proctime-trace-c16-32-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "8277ed3949fae2c86eefdc5a14ab2c3c3ec69f06", | |
| "bytes": 41931, | |
| "exists": true | |
| }, | |
| "sha256": "35b45995f4502b3dcc1485a9a41d77ab7f16c95f7ab41003325dd53cbf6ac432" | |
| }, | |
| { | |
| "bytes": 3763, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-ar-proctime-trace-c16-32.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "d107bfdd1da54d2e04543f95466c68044d13319f", | |
| "bytes": 3763, | |
| "exists": true | |
| }, | |
| "sha256": "f15fc547b5a28629dc14751254eccfda65aca8c5f258b9dab1e844f9b59e71c7" | |
| }, | |
| { | |
| "bytes": 28372, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-ar-rollbackdst2-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "47a08fcc5412884ef9ee252df7cb404bc30196cb", | |
| "bytes": 28372, | |
| "exists": true | |
| }, | |
| "sha256": "dcf7df77e0d28401b84fd59374d004db6426cb044414e59540f7990e98d6e1f2" | |
| }, | |
| { | |
| "bytes": 27609, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-ar-rollbackdst2-c16-128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "7707413671d056a8ef0721c42795e5263b169e65", | |
| "bytes": 27609, | |
| "exists": true | |
| }, | |
| "sha256": "209ab95b9e74f5a8e07166990c4c9277dcaf82357203511e04f1b5c70d73e71f" | |
| }, | |
| { | |
| "bytes": 382980, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax1-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "e10496fca41a7037cf8aa9b09c9c5b08204b577b", | |
| "bytes": 382980, | |
| "exists": true | |
| }, | |
| "sha256": "1c2d49ec9487a565636827a017ecb65480cb1bf9c9f2c43103e047aca46bffc0" | |
| }, | |
| { | |
| "bytes": 27555, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax1-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "efb1550d3fd8b0db3cde849f513fa966db757f7e", | |
| "bytes": 27555, | |
| "exists": true | |
| }, | |
| "sha256": "7fe9ac72ab6ddc1ee6f1f605133cecae94ad47a0a302aecb6ca7a64e0e3a8992" | |
| }, | |
| { | |
| "bytes": 31944, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax1-fast-topk1-rollbackdst-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "44d03b52d5b4028f84f12b67b021762e446ff2f4", | |
| "bytes": 31944, | |
| "exists": true | |
| }, | |
| "sha256": "c69cffb486378db47c3aab7a21714c1ddde54309788bd5a9fc3c211f1405ceda" | |
| }, | |
| { | |
| "bytes": 27575, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax1-fast-topk1-rollbackdst-c16-128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "7e04015573299bcdeb8d3547a9216290fa864ca4", | |
| "bytes": 27575, | |
| "exists": true | |
| }, | |
| "sha256": "619f90dfe44a9ef48833cfcbf5683cb45fccdcb59ca2bfb0af46fcccec3ba65c" | |
| }, | |
| { | |
| "bytes": 47640, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-batchdepth-trace-c16-32-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "a2b9ee68e026751f33dcf92c7808d2f2e2aede8d", | |
| "bytes": 47640, | |
| "exists": true | |
| }, | |
| "sha256": "48cad3e1ac21892f5bd3a123654036ed90d065452d1d8c51b42f29daa1676617" | |
| }, | |
| { | |
| "bytes": 3762, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-batchdepth-trace-c16-32.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "dfe744b93232a7cdeb6c955485d1b4e4702a4020", | |
| "bytes": 3762, | |
| "exists": true | |
| }, | |
| "sha256": "9da6413796c7416998030e10d1f3d11e3c85adfb4c886085916e429e5fecc789" | |
| }, | |
| { | |
| "bytes": 948002, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-proctime-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "3ef9efd16f86320b59c2a84e4a93141d1833e78c", | |
| "bytes": 948002, | |
| "exists": true | |
| }, | |
| "sha256": "d63eeac751919de7aa69b9ff53a049e96154c71c0265dd5499d0014111a8aefd" | |
| }, | |
| { | |
| "bytes": 27579, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-proctime-c16-128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "33525c555becd9365a59be70e143722002d4aa2f", | |
| "bytes": 27579, | |
| "exists": true | |
| }, | |
| "sha256": "2fbe9d3ca6001459aef942868b24c74ca2f054116b536e718244528dbbb194a2" | |
| }, | |
| { | |
| "bytes": 47544, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-proctime-trace-c16-32-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "019bd31cecb2974d67191b86684c77b20d68907d", | |
| "bytes": 47544, | |
| "exists": true | |
| }, | |
| "sha256": "0deb6859d011a9f0de9489f539176971f7d045b1a4c5b6ce1c0f03b07e0c2bb2" | |
| }, | |
| { | |
| "bytes": 3767, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-proctime-trace-c16-32.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "4695a8805e30acbf173fe32f051660bf40287f23", | |
| "bytes": 3767, | |
| "exists": true | |
| }, | |
| "sha256": "5bbfac5026b1d9764544a417a646a8d80682b3de9ead0a4ed79f746dd2e1830a" | |
| }, | |
| { | |
| "bytes": 31671, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-rollbackdst-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "c88ba84cda5f38c602b21d433109a0e2a27ec0d9", | |
| "bytes": 31671, | |
| "exists": true | |
| }, | |
| "sha256": "a0c722fa65331f33bcffec065150ef7cc066c34c0f12bdbc39eb8bdab1a009a0" | |
| }, | |
| { | |
| "bytes": 27576, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-rollbackdst-c16-128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "8b770828ba46c3aa550c14514c4b54e788593996", | |
| "bytes": 27576, | |
| "exists": true | |
| }, | |
| "sha256": "a447dbbb838d75861a76430558d95f4938e0b05fc53298994304c86ee5206c98" | |
| }, | |
| { | |
| "bytes": 19080, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-tracev-rollbackdst-lv3-c2-32-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "895a8d3f94cea00bb0395ec3e18f393871c753fb", | |
| "bytes": 19080, | |
| "exists": true | |
| }, | |
| "sha256": "b92da2ca30253429ad3d03d45070a31a9e70a6f3fa8853f87182eaf15e67ea9e" | |
| }, | |
| { | |
| "bytes": 2083, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-fast-topk1-tracev-rollbackdst-lv3-c2-32.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "a35f701e20150859906241e21610a34229eae950", | |
| "bytes": 2083, | |
| "exists": true | |
| }, | |
| "sha256": "23d28bc0a5dd6a97b98f38134812c3fc6523d25e8d9a5f2c345079bbf1bd7b41" | |
| }, | |
| { | |
| "bytes": 392903, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-targetbackend-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "9f0f27d2323bfd0e37c89b0770d5adcd22886b0f", | |
| "bytes": 392903, | |
| "exists": true | |
| }, | |
| "sha256": "86a0431c923332d0f86bc9c8d6ba707a16b0ce8dca11e9a33c21454edad8df3e" | |
| }, | |
| { | |
| "bytes": 27570, | |
| "path": "benchmarks/raw/llamacpp-iq4xs-mtp-graft-headq6-nmax2-targetbackend-c16-128.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "d71d88b2777262c9f0a4a3afebe754ca792bba16", | |
| "bytes": 27570, | |
| "exists": true | |
| }, | |
| "sha256": "f5a0776c7cb98a18a33879d726dcd099431d06b9959d12868ed0ecfb26006abd" | |
| }, | |
| { | |
| "bytes": 3807, | |
| "path": "benchmarks/raw/llamacpp-q3-k-m-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "586b312b45dbf8e6b370cac720bda31116844a6e", | |
| "bytes": 3807, | |
| "exists": true | |
| }, | |
| "sha256": "2c0da0a8565b523b95fe050e6700534f1a49565c30b2a485a4c858b8351dc8c8" | |
| }, | |
| { | |
| "bytes": 7175, | |
| "path": "benchmarks/raw/llamacpp-q3-k-m-c16-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "8ac7faff4be54556c079bdff0f48b538d3cb3f29", | |
| "bytes": 7175, | |
| "exists": true | |
| }, | |
| "sha256": "9ceaa3a73222c5e236dfc83f834e577baaf1e5078b83e794d5f09722334c4dbf" | |
| }, | |
| { | |
| "bytes": 3797, | |
| "path": "benchmarks/raw/llamacpp-q3-k-m-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "38c83fee15c472eb9b4c94a5f91bf320481db074", | |
| "bytes": 3797, | |
| "exists": true | |
| }, | |
| "sha256": "01e14866b431b8cb237cea7fad91ae2bbd9a6188cc8ca2b096097944f2ce3d31" | |
| }, | |
| { | |
| "bytes": 3761, | |
| "path": "benchmarks/raw/llamacpp-q3-k-m-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "2cfab637e033f976f1d04c0e745cc91951bb0d69", | |
| "bytes": 3761, | |
| "exists": true | |
| }, | |
| "sha256": "e00d6d111eccccb2cd6aeb44f560d8fc5091ac7d3a8a25265fe4ca0335bb2a69" | |
| }, | |
| { | |
| "bytes": 3807, | |
| "path": "benchmarks/raw/llamacpp-q4-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "a0c966d29753afbcaca269c3f3220373dbe0f2f1", | |
| "bytes": 3807, | |
| "exists": true | |
| }, | |
| "sha256": "2385b6f04740f2063f7ff03f84754392b5e54668ecf885372430415aa4a6e52a" | |
| }, | |
| { | |
| "bytes": 7167, | |
| "path": "benchmarks/raw/llamacpp-q4-c16-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "44567f048292e7eee02aee419a9efe80cd8ecd72", | |
| "bytes": 7167, | |
| "exists": true | |
| }, | |
| "sha256": "eebc326884540abe38f7fdb6f763e3ed74bccde07f21d959f10a4bd20565cacc" | |
| }, | |
| { | |
| "bytes": 7219, | |
| "path": "benchmarks/raw/llamacpp-q4-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "8d1d2938577094056975d996e15b42a76e36d493", | |
| "bytes": 7219, | |
| "exists": true | |
| }, | |
| "sha256": "07e133e6617c00f9677f27389388a7852075d5ff78f3400d77dc4b0ddecd65e4" | |
| }, | |
| { | |
| "bytes": 7174, | |
| "path": "benchmarks/raw/llamacpp-q4-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "5ed014e3212c4127b499a00307b0a2c5e0a97f1d", | |
| "bytes": 7174, | |
| "exists": true | |
| }, | |
| "sha256": "1bed6575afb5755f09843edbeedfb40ff7acb5a3a542968271a48b87068c11d4" | |
| }, | |
| { | |
| "bytes": 3805, | |
| "path": "benchmarks/raw/llamacpp-q5-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "8a35242d5b8a99a1701e89a72c451823a6f5264e", | |
| "bytes": 3805, | |
| "exists": true | |
| }, | |
| "sha256": "88a2cb26289671cb75e16f17cae02b9e05e3b5c1a7f9f4fc0cc1a3d33cd8667c" | |
| }, | |
| { | |
| "bytes": 7161, | |
| "path": "benchmarks/raw/llamacpp-q5-c16-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "d6d6f254fb0cecd8ec27d65c984dca6ef0dffa6f", | |
| "bytes": 7161, | |
| "exists": true | |
| }, | |
| "sha256": "86aed78128a9a87691f1da7b06e726d10c7ef668f66f1f16db31f33ee3620c79" | |
| }, | |
| { | |
| "bytes": 7182, | |
| "path": "benchmarks/raw/llamacpp-q5-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "ba99e3671095443cdc623c8f882ea770937798bf", | |
| "bytes": 7182, | |
| "exists": true | |
| }, | |
| "sha256": "041349df861777e18d7a03fe9e978034b4b38abbb5b1b204d1358eeb6bd4db39" | |
| }, | |
| { | |
| "bytes": 7167, | |
| "path": "benchmarks/raw/llamacpp-q5-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "2189099677423ebf9a736628e9d6917539d19b5a", | |
| "bytes": 7167, | |
| "exists": true | |
| }, | |
| "sha256": "d21245ab1f6dcf64614dcd542c5c1d7e72d51d8cc7915a14610bdadad17bb65f" | |
| }, | |
| { | |
| "bytes": 3807, | |
| "path": "benchmarks/raw/llamacpp-q6-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "f2372a9859300a71623a25c3fe91df626c89c28f", | |
| "bytes": 3807, | |
| "exists": true | |
| }, | |
| "sha256": "8c4ed15b42aea31588b0b03ef98db4609d46ad93ddff27005e7b6f29c860e637" | |
| }, | |
| { | |
| "bytes": 7169, | |
| "path": "benchmarks/raw/llamacpp-q6-c16-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "771c5ad0833226faa610f66b26a23a4b379fab97", | |
| "bytes": 7169, | |
| "exists": true | |
| }, | |
| "sha256": "d8dbd3f2e84aa83b051567175f23eb5afe78f5439bc6e8f07fd7b355720be073" | |
| }, | |
| { | |
| "bytes": 7194, | |
| "path": "benchmarks/raw/llamacpp-q6-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "2204ab4194d33056d44942cf44f2109936cca4cc", | |
| "bytes": 7194, | |
| "exists": true | |
| }, | |
| "sha256": "c869dbd07c0efe66fdfe4e67ce394c1cae7d0f02e43dd054ac9aabdafec57e8a" | |
| }, | |
| { | |
| "bytes": 7165, | |
| "path": "benchmarks/raw/llamacpp-q6-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "704701e3a5302ec34a48b78f08f69e9af9bc7121", | |
| "bytes": 7165, | |
| "exists": true | |
| }, | |
| "sha256": "7d03d04a1e4fa74440685880d00c0d98bce1580382a14daeeb4869d43cf936a3" | |
| }, | |
| { | |
| "bytes": 3807, | |
| "path": "benchmarks/raw/llamacpp-q8-c1-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "9944f6b3d9471822c4b7ce331bb6c5f7b19a89bc", | |
| "bytes": 3807, | |
| "exists": true | |
| }, | |
| "sha256": "1222b0e21bbefb5d1189b8d9f0343cf85faa7684db39cada951e3cac9965e379" | |
| }, | |
| { | |
| "bytes": 7176, | |
| "path": "benchmarks/raw/llamacpp-q8-c16-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "06659cd27308f07772e564a607a8ba5b5fe1a58b", | |
| "bytes": 7176, | |
| "exists": true | |
| }, | |
| "sha256": "ae0d7743022fdb9e5497fc9e18a35e88f1623f7e2cbd23ac07544f99d46d0c35" | |
| }, | |
| { | |
| "bytes": 7185, | |
| "path": "benchmarks/raw/llamacpp-q8-c4-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "d0eb115941c9399b912b944fdc01e1d217387b36", | |
| "bytes": 7185, | |
| "exists": true | |
| }, | |
| "sha256": "55523a2f6c1af5000012436b37ee999d3b4b34f1e014c4c4a47137c71cc182c0" | |
| }, | |
| { | |
| "bytes": 7179, | |
| "path": "benchmarks/raw/llamacpp-q8-c8-256.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "1009f069552d04c031e8dcc2feb20bdc26176796", | |
| "bytes": 7179, | |
| "exists": true | |
| }, | |
| "sha256": "c651063aba93e03f12bcc5d527e921b4b93d64ef88c72607d07720bb83255549" | |
| }, | |
| { | |
| "bytes": 459524, | |
| "path": "benchmarks/raw/llamacpp-wang-ornith-q6-mtp-ar-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "0c6440a9775e2d886bf82088d5a7bde90a7c4562", | |
| "bytes": 459524, | |
| "exists": true | |
| }, | |
| "sha256": "81526142ae4ffc21e38afb1ec1ec4137a294c0ca44153f613eb442c65b7efa66" | |
| }, | |
| { | |
| "bytes": 27615, | |
| "path": "benchmarks/raw/llamacpp-wang-ornith-q6-mtp-ar-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "e78ca93ef96d68be81267602d3ad4960f8f17f23", | |
| "bytes": 27615, | |
| "exists": true | |
| }, | |
| "sha256": "e025f7b64762e82b3d801f24a4c0946e88ca68beadf421431ff980758784d031" | |
| }, | |
| { | |
| "bytes": 383573, | |
| "path": "benchmarks/raw/llamacpp-wang-ornith-q6-mtp-nmax1-c16-128-server.log", | |
| "remote_before_upload": { | |
| "blob_id": "c35c6c0eca95ed0f02e1ae4033b20078ea6f9f07", | |
| "bytes": 383573, | |
| "exists": true | |
| }, | |
| "sha256": "a9858d19bd80e25a741d71ce6e12d669d1ec96ec83aa67c32e799dafa8fc02be" | |
| }, | |
| { | |
| "bytes": 27564, | |
| "path": "benchmarks/raw/llamacpp-wang-ornith-q6-mtp-nmax1-c16-128-temp0.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "a18a44c05bbfb33e5d4e1b00532b603c136c6325", | |
| "bytes": 27564, | |
| "exists": true | |
| }, | |
| "sha256": "bf3954712a92c189a9bd71dd2ac1c0b2d9995e0e74346ed183ada0aca7afb484" | |
| }, | |
| { | |
| "bytes": 3785, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-nmax1-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "d9cef937bbfcd410d3c49475401060dfe056026f", | |
| "bytes": 3785, | |
| "exists": true | |
| }, | |
| "sha256": "1eacd053ebdc56dbd39e8f536cb980b4490913df56e6b529f7ade40de22083c6" | |
| }, | |
| { | |
| "bytes": 1464, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-nmax1-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "d659e3110b45b10b98c61f3e0b60fe94b2507d42", | |
| "bytes": 1464, | |
| "exists": true | |
| }, | |
| "sha256": "bd630b2c8600e582dbd8cc717702eb96f53a789c809d7ffe5bb1bd21276d35d6" | |
| }, | |
| { | |
| "bytes": 3500, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-no-fa-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "562303659ac50efafe229baf2ed951083dbd40d4", | |
| "bytes": 3500, | |
| "exists": true | |
| }, | |
| "sha256": "a3a67b5e8f6ebfb22b738fecdfc430f42bea5c568f052459a7d708c48915251b" | |
| }, | |
| { | |
| "bytes": 1470, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-no-fa-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "c1244fcaa0603596bdd137b35d2ed6faedfefa3b", | |
| "bytes": 1470, | |
| "exists": true | |
| }, | |
| "sha256": "7c92acb6e0db6e8b1b9714bead957d19dee1234174da359beb85114e5a2339d1" | |
| }, | |
| { | |
| "bytes": 3475, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-nofast-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "8846dd0d3bf6764d275976ffba9537bdffbcf6bb", | |
| "bytes": 3475, | |
| "exists": true | |
| }, | |
| "sha256": "e756476a9aa1c50ff0f1c665c4fb9756b4f2f021184beed95931b932e75cb14d" | |
| }, | |
| { | |
| "bytes": 1465, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-nofast-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "a885466e2055812c11dffd6d9857928aaeb484c6", | |
| "bytes": 1465, | |
| "exists": true | |
| }, | |
| "sha256": "d5722b2b7a8bea47f8956aaf1046bee347f33f77a11ee24e3b7f1860614ad2e1" | |
| }, | |
| { | |
| "bytes": 3482, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-nospecbackend-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "f17b0ad7dc59f179b7d05ffd9e5947f99d3fb5fb", | |
| "bytes": 3482, | |
| "exists": true | |
| }, | |
| "sha256": "4c1c911da02437210adb5f9fb99c493885ed6685a85e91aa21edc7aab1f673f9" | |
| }, | |
| { | |
| "bytes": 1472, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-nospecbackend-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "009291e0da2bca3c19880bf24c3b6ad0b7d4bfa9", | |
| "bytes": 1472, | |
| "exists": true | |
| }, | |
| "sha256": "b37d6df09662ee651f2e94a1dce85acd93fb4e31ae5216689baf41465109bdd0" | |
| }, | |
| { | |
| "bytes": 3485, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-perhead-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "e2205a8da2e551ffeddf8208b372f671c639066a", | |
| "bytes": 3485, | |
| "exists": true | |
| }, | |
| "sha256": "5bd3cd20b64d2d965b4f48cc84564c8e04820ef03840fc35281dfb273c09bc3c" | |
| }, | |
| { | |
| "bytes": 1466, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-perhead-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "14d78960ca5b9cbba8465036fd1d240154a1e962", | |
| "bytes": 1466, | |
| "exists": true | |
| }, | |
| "sha256": "892303ec126338457cbe986f0c20e1dc76a6bb41e94d27ec7c50c026704cfa60" | |
| }, | |
| { | |
| "bytes": 3740, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-seqverify-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "bd93a055af0a4d27100cfac6762f2bb85bd2cdd6", | |
| "bytes": 3740, | |
| "exists": true | |
| }, | |
| "sha256": "dfd66afbfce85aa4347261ba53cb1f5ed2af9c1832b592e3b873a7665c491ec9" | |
| }, | |
| { | |
| "bytes": 1465, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-seqverify-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "3baea2700f8cc84935a25e961c041c12b304b263", | |
| "bytes": 1465, | |
| "exists": true | |
| }, | |
| "sha256": "91524dc6d9f799c385416fbe0678999a03ddbab89d8d8fad7ba26d82b5a2c074" | |
| }, | |
| { | |
| "bytes": 3745, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-seqverify-fast-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "4352a0aa2042ab1180abf1bffaf01a431c1bbafc", | |
| "bytes": 3745, | |
| "exists": true | |
| }, | |
| "sha256": "92d7cef48661d3585ae8f39d3d937b5cd9732f49db757279de3f3e94e6d3d61a" | |
| }, | |
| { | |
| "bytes": 1470, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-seqverify-fast-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "05ff091065130f23dff5d04adaa049e8961ec6ad", | |
| "bytes": 1470, | |
| "exists": true | |
| }, | |
| "sha256": "ac292815bb017d940021d9aabe0086020ebc26651fefe66b445cd432b02c4584" | |
| }, | |
| { | |
| "bytes": 3477, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-standard-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "430108a805e4a9a361130279dc1b79bfd403d2ef", | |
| "bytes": 3477, | |
| "exists": true | |
| }, | |
| "sha256": "c286c45f9c78082ed95c36f53bb620c344267b6855c7d0f55b6e23df5c087c40" | |
| }, | |
| { | |
| "bytes": 1467, | |
| "path": "benchmarks/raw/ornith-iq4-xs-mtp-standard-det-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "3f4ec53b705e681e627127b14035ef11118c0281", | |
| "bytes": 1467, | |
| "exists": true | |
| }, | |
| "sha256": "b5633ed6bb9533de2efe366b499c0c4894867de000f736119083ea3bcb21e58c" | |
| }, | |
| { | |
| "bytes": 3733, | |
| "path": "benchmarks/raw/ornith-iq4-xs-target-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "1e35b53919922cf6cd7310cc9ef7554329c7a97b", | |
| "bytes": 3733, | |
| "exists": true | |
| }, | |
| "sha256": "51fc90847cfde768ac5f577bafb6c8e6b325abbddd41e340809a6ef1f71f8ee5" | |
| }, | |
| { | |
| "bytes": 3734, | |
| "path": "benchmarks/raw/ornith-iq4-xs-target-det-repeat-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "b3603f5d6631215c7e54f3005cdf11763de3da0d", | |
| "bytes": 3734, | |
| "exists": true | |
| }, | |
| "sha256": "3130916de1334c5d8d3ef908d405163a07e0e5db28f1af88fb5a4916ffcd447e" | |
| }, | |
| { | |
| "bytes": 1465, | |
| "path": "benchmarks/raw/ornith-iq4-xs-target-det-repeat-compare.json", | |
| "remote_before_upload": { | |
| "blob_id": "254c2fd19fd39670eaee5828e7986bb98afbba15", | |
| "bytes": 1465, | |
| "exists": true | |
| }, | |
| "sha256": "72030aed3e2c433ab547fbaa821d08d522404ed602aa7d1a94f3566c9a4fba1a" | |
| }, | |
| { | |
| "bytes": 3470, | |
| "path": "benchmarks/raw/ornith-iq4-xs-target-no-fa-det-capture.json", | |
| "remote_before_upload": { | |
| "blob_id": "0c2bed5f0fd20705d2e7efa9535315df9a92c832", | |
| "bytes": 3470, | |
| "exists": true | |
| }, | |
| "sha256": "0587d9cd065689941d702949d8ed5c4ee4c1367e44cf37693cdc3ffa8e52f78a" | |
| }, | |
| { | |
| "bytes": 114484, | |
| "path": "benchmarks/raw/quantize-iq4xs-mtp-graft-headq6.log", | |
| "remote_before_upload": { | |
| "blob_id": "a9bf8546e9d9c5dba797d43bc85b580c2c92702e", | |
| "bytes": 114484, | |
| "exists": true | |
| }, | |
| "sha256": "c07f6d7d1d2763f016d6d596d9ca4d72515ce94a0929ea06788a7824c04aab83" | |
| }, | |
| { | |
| "bytes": 3270, | |
| "path": "benchmarks/sft-lora-smoke-bigcode.md", | |
| "remote_before_upload": { | |
| "blob_id": "a01c654e3754773b502149fac55efb1b4f77d6ce", | |
| "bytes": 3270, | |
| "exists": true | |
| }, | |
| "sha256": "78a27788b71fee4805a38bcb5c4d4bb86af7f45d933a3ed361109bb920ac519b" | |
| }, | |
| { | |
| "bytes": 5962, | |
| "path": "benchmarks/sft-prod-20k-preflight.md", | |
| "remote_before_upload": { | |
| "blob_id": "18e0e00637602514a0c8b9d26805fe84e80bc471", | |
| "bytes": 5962, | |
| "exists": true | |
| }, | |
| "sha256": "0c67386c20a0af96740677f9ffc9aa48c5cc2f8a04e61e1770114c2cb492c519" | |
| }, | |
| { | |
| "bytes": 842, | |
| "path": "configs/experiment_lanes.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "93aa261c54ddf6804d2f62bb2f52e4d3a1d4a668", | |
| "bytes": 842, | |
| "exists": true | |
| }, | |
| "sha256": "981c9a1efb1bc904092533c3e8fc1fbd0d6698d669e316c2961c3e3c16b7c6f6" | |
| }, | |
| { | |
| "bytes": 4597, | |
| "path": "configs/model_behavior_suite.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "21ddcf93dfaae55111281e925f0c9974be2efd7b", | |
| "bytes": 4597, | |
| "exists": true | |
| }, | |
| "sha256": "cf64f993e6802f7a53869aba46fb8909588f69ca9d8eedfa52c2ff203bb90322" | |
| }, | |
| { | |
| "bytes": 3621, | |
| "path": "configs/quantization_matrix.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "6ed937004209b063a95372ece3422f013996f3fe", | |
| "bytes": 3621, | |
| "exists": true | |
| }, | |
| "sha256": "84efb88c5d571d9942e118cd9cde458fda9ce327b5e71b671c55c9c2836a6a43" | |
| }, | |
| { | |
| "bytes": 2630, | |
| "path": "configs/serving_matrix.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "63d4c96c5aaace66eff3a86ce72c379c948422bc", | |
| "bytes": 2287, | |
| "exists": true | |
| }, | |
| "sha256": "580b74248e913b8208bbe040267b8bc40e440c7b8643b7621884dfa1a49f86c1" | |
| }, | |
| { | |
| "bytes": 5432, | |
| "path": "configs/serving_profiles.yaml", | |
| "remote_before_upload": { | |
| "exists": false | |
| }, | |
| "sha256": "f3a8638b6aae46ac552984f655a39a000f3ebf188524cc24a28ae6e97cbdeee6" | |
| }, | |
| { | |
| "bytes": 5232, | |
| "path": "configs/sft_format_gates.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "2299593784cf68e1499a9ad96512a704693a52a3", | |
| "bytes": 5232, | |
| "exists": true | |
| }, | |
| "sha256": "f18d6dcdce4c4f4a77864bd8f2109ea52fb0783600c9e14ed64f2bcf79375ff8" | |
| }, | |
| { | |
| "bytes": 8004, | |
| "path": "configs/sft_repair_blend.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "bcf4fe0b3d310ef7beb4d6b24cbe937a869a7818", | |
| "bytes": 8004, | |
| "exists": true | |
| }, | |
| "sha256": "d3c32df84dd66ba6ccd79a5596ba54738cb266c9b7ede0e1f766cd0e94222374" | |
| }, | |
| { | |
| "bytes": 3814, | |
| "path": "configs/training_plan.yaml", | |
| "remote_before_upload": { | |
| "blob_id": "a836683d57d7f174d9a99eaf4a409349e0e81aa8", | |
| "bytes": 3814, | |
| "exists": true | |
| }, | |
| "sha256": "73fdd108b4c2f879084680e70197f67c9c8d8ab5cd3944bb57626a61f37233cf" | |
| }, | |
| { | |
| "bytes": 1149, | |
| "path": "data/eval/README.md", | |
| "remote_before_upload": { | |
| "blob_id": "2ab0f697c5dc4a7fc3b979c8e23d022c3ff7ca54", | |
| "bytes": 1149, | |
| "exists": true | |
| }, | |
| "sha256": "c714d72bfafe1df48478c3db2ca24d0ee64b11b3c00f60026b170043ccb1bb3f" | |
| }, | |
| { | |
| "bytes": 376090, | |
| "path": "data/eval/coding_sft_repair_eval_messages.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "00787d04520da80c5e637f61e63739e1271fe1c0", | |
| "bytes": 376090, | |
| "exists": true | |
| }, | |
| "sha256": "abf8b701b4b9f8f691f4212aedea20dd2c0f5aeac01e601d713ff127c81bd9be" | |
| }, | |
| { | |
| "bytes": 1663, | |
| "path": "data/train/README.md", | |
| "remote_before_upload": { | |
| "blob_id": "6f0e2eea7f234f30e3c72a75a1de92412a34dcb5", | |
| "bytes": 1663, | |
| "exists": true | |
| }, | |
| "sha256": "6b62b3ce9b03ca9ca45aa0d20261310f56abe54b1f89fef5db3c309f5f7cc78f" | |
| }, | |
| { | |
| "bytes": 3015307, | |
| "path": "data/train/coding_sft_repair_messages.jsonl", | |
| "remote_before_upload": { | |
| "blob_id": "26fc677f5ec6e847a8c6f09e1eaf099fd36c2909", | |
| "bytes": 3015307, | |
| "exists": true | |
| }, | |
| "sha256": "bbc6f035b663d5da98e6556b5e40db8bde95ee9665fac009f3072652b1d224c6" | |
| }, | |
| { | |
| "bytes": 148531, | |
| "path": "patches/llamacpp-mtp-adaptive-serving-and-recurrent-rollback.patch", | |
| "remote_before_upload": { | |
| "blob_id": "097d6db43a3ed071abb74e3d1d5bb6a89ecad2b1", | |
| "bytes": 148531, | |
| "exists": true | |
| }, | |
| "sha256": "85ac5b87198808cb0bf484f52ba52b7c696b537af5924c9984cdaf194fa127b4" | |
| }, | |
| { | |
| "bytes": 7408, | |
| "path": "patches/llamacpp-qwen35moe-mtp-recurrent-row-index.patch", | |
| "remote_before_upload": { | |
| "blob_id": "420c507b6a95e0a4babfcf951b836fb89063a933", | |
| "bytes": 7408, | |
| "exists": true | |
| }, | |
| "sha256": "9920acd215e1c76fa99e2744d1b9fea1a1a7f9a83206006e125cbf911b31ff04" | |
| }, | |
| { | |
| "bytes": 102858, | |
| "path": "patches/llamacpp-server-mtp-seqverify-and-perhead.patch", | |
| "remote_before_upload": { | |
| "blob_id": "153ce013c233ea95c17d0b58665ef279abf3c4bc", | |
| "bytes": 102858, | |
| "exists": true | |
| }, | |
| "sha256": "a6d71cc81f15771527c386d7f689b40e2ed4a66fc1a50fb2c2f7d7b29ccb6b11" | |
| }, | |
| { | |
| "bytes": 9002, | |
| "path": "probes/behavior-llamacpp-iq4-xs-parallel16.json", | |
| "remote_before_upload": { | |
| "blob_id": "d3935aae6472ed6f6f9e6959c93ed791b0fe1620", | |
| "bytes": 9002, | |
| "exists": true | |
| }, | |
| "sha256": "bd979c80a913f411c8e4b1182d7dffff1fce32e85e4285ad91202a7eb04531ef" | |
| }, | |
| { | |
| "bytes": 9010, | |
| "path": "probes/behavior-llamacpp-q3-k-m-parallel16.json", | |
| "remote_before_upload": { | |
| "blob_id": "942f9ce5b6af97487ab78feb844d8b6009a778f1", | |
| "bytes": 9010, | |
| "exists": true | |
| }, | |
| "sha256": "05b8fdc912af46101d488ae23f6b7460ce770792cf69b1061edb2ed5a7b90418" | |
| }, | |
| { | |
| "bytes": 9029, | |
| "path": "probes/behavior-llamacpp-q4-script-default.json", | |
| "remote_before_upload": { | |
| "blob_id": "7f9609ca10253abc3593d6763faa2d0649974c88", | |
| "bytes": 9029, | |
| "exists": true | |
| }, | |
| "sha256": "f30e429840b15f2c5b39c83d39a1d2fb0321a586eda1951eaa2df9f49c376b5d" | |
| }, | |
| { | |
| "bytes": 15288, | |
| "path": "probes/behavior-llamacpp-q4.json", | |
| "remote_before_upload": { | |
| "blob_id": "9e52b20873ad62f34f12dbcc41c19ec349a72546", | |
| "bytes": 15288, | |
| "exists": true | |
| }, | |
| "sha256": "359d285644f68caa7deaa929add6f1e49770a1a825383466989c0213885581c3" | |
| }, | |
| { | |
| "bytes": 12289, | |
| "path": "probes/behavior-regression-matrix.json", | |
| "remote_before_upload": { | |
| "blob_id": "f9b04fe0110c18e77954e2b935b9ed36e419b73e", | |
| "bytes": 12289, | |
| "exists": true | |
| }, | |
| "sha256": "ab5bb09ce2cbf14404c87865c75f636dd5d92e22f75ad9190701e5a89ad16fd9" | |
| }, | |
| { | |
| "bytes": 3937, | |
| "path": "probes/behavior-regression-matrix.md", | |
| "remote_before_upload": { | |
| "blob_id": "5d750a815ed980083da1f1c5633d618acc0a2b1b", | |
| "bytes": 3937, | |
| "exists": true | |
| }, | |
| "sha256": "ab483b3139fc3b08f1b0de18e6f99e7fc5760d3db7689928ade7eb6772b415b0" | |
| }, | |
| { | |
| "bytes": 1049, | |
| "path": "probes/eval-lora-behavior-checkpoint-8000-fixed.gate.log", | |
| "remote_before_upload": { | |
| "blob_id": "041fb5bb56dc25cf23b634437948011ae77ac1da", | |
| "bytes": 1049, | |
| "exists": true | |
| }, | |
| "sha256": "1c848099e35001e1e29ef6dd2e78b986b20fcec1affa5b060c314bbc7b2b7088" | |
| }, | |
| { | |
| "bytes": 21512, | |
| "path": "probes/eval-lora-behavior-checkpoint-8000-fixed.json", | |
| "remote_before_upload": { | |
| "blob_id": "c0376b5f05405e52dc747a1017c1860b45229c34", | |
| "bytes": 21512, | |
| "exists": true | |
| }, | |
| "sha256": "76517d6ffbb33a2db3100b46ef7407e0c6d2ce57332784e1af4fbdfb4188bda0" | |
| }, | |
| { | |
| "bytes": 44591, | |
| "path": "probes/gguf-materialization-q3-k-m.json", | |
| "remote_before_upload": { | |
| "blob_id": "673df299dea1d65393687805b61adbec09f4917a", | |
| "bytes": 44591, | |
| "exists": true | |
| }, | |
| "sha256": "83ff40e6dbc398f1484469ddeb113a4369c7eaff486457e76de85c1effd87895" | |
| }, | |
| { | |
| "bytes": 28352, | |
| "path": "probes/investigation-ornith-q4-live.json", | |
| "remote_before_upload": { | |
| "blob_id": "470ec1394c86b38eedb2a97ae32530b5a3329f48", | |
| "bytes": 28352, | |
| "exists": true | |
| }, | |
| "sha256": "91f3d6d3a51a0b2a6a841e710a55f31a4bb3f8cf452f1eceea039cc26d7f97f8" | |
| }, | |
| { | |
| "bytes": 1304, | |
| "path": "probes/investigation-ornith-q4-live.md", | |
| "remote_before_upload": { | |
| "blob_id": "a6fe7fccd66e2d29e1d02571c54fbc1f415cf1fd", | |
| "bytes": 1304, | |
| "exists": true | |
| }, | |
| "sha256": "9fabb8bdbb0cda54da958e868abbc75c063a510b0f414c1c5c1bd9e03344421f" | |
| }, | |
| { | |
| "bytes": 826, | |
| "path": "probes/mtp-support-ornith-iq4-xs.json", | |
| "remote_before_upload": { | |
| "blob_id": "86e138820d98eabdf11686139674b4007af82e55", | |
| "bytes": 826, | |
| "exists": true | |
| }, | |
| "sha256": "166cdb3141fd55196e86364c441d2b55a31640ae2ff717a0931664e9d0c81d41" | |
| }, | |
| { | |
| "bytes": 4390, | |
| "path": "probes/probe-llamacpp-iq4-xs-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "19709db97aa20c6554281940880b5ca3ee9b4474", | |
| "bytes": 4390, | |
| "exists": true | |
| }, | |
| "sha256": "f9e1db3561bfa568a92d9fa590d44eb8bae895c9d7cdf8add34e46a77b53e779" | |
| }, | |
| { | |
| "bytes": 4341, | |
| "path": "probes/probe-llamacpp-iq4-xs-mtp-bootstrap-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "7b48408c6871d2914b2a0396cd81ccbbc3f3155c", | |
| "bytes": 4341, | |
| "exists": true | |
| }, | |
| "sha256": "7240aa6f9b8c0b38257e3efd747a99d3ebdbd021147d4ec0a9a3cce2f1d0aaaf" | |
| }, | |
| { | |
| "bytes": 4457, | |
| "path": "probes/probe-llamacpp-iq4-xs-mtp-bootstrap-iq4draft-nmax1-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "b7d97b77ce6fa6fd2a2a71bdaa521a88a19daf92", | |
| "bytes": 4457, | |
| "exists": true | |
| }, | |
| "sha256": "1ea6c398d16973bdbb154d79e0f233fd76a79c3c6e2a33704288585cfe75ecf3" | |
| }, | |
| { | |
| "bytes": 4403, | |
| "path": "probes/probe-llamacpp-iq4-xs-mtp-bootstrap-nmax1-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "dc3e6e93c043f303e73c1a5aa9d88d5b2e4ff981", | |
| "bytes": 4403, | |
| "exists": true | |
| }, | |
| "sha256": "9bf864843be7674bb02798f2f1ce65eddcc2cda7c0ee484cb0313aec775a2728" | |
| }, | |
| { | |
| "bytes": 5833, | |
| "path": "probes/probe-llamacpp-q4-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "453a6b70c3fb2af7fd427cefd54c36c3931a0882", | |
| "bytes": 5833, | |
| "exists": true | |
| }, | |
| "sha256": "d23e14d7c8fcb2fa2e249aaf89bb494e1e9bea9cf10608b12a25fe3b3e8859e3" | |
| }, | |
| { | |
| "bytes": 5876, | |
| "path": "probes/probe-llamacpp-q5-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "58566533b8dd2dc3de4c1cbd0e5535a18799ca1a", | |
| "bytes": 5876, | |
| "exists": true | |
| }, | |
| "sha256": "e7cb01b1d2cc93935f7e679c66b357a099ca9ccac48efc9afd4cea01bcdc01dd" | |
| }, | |
| { | |
| "bytes": 5820, | |
| "path": "probes/probe-llamacpp-q6-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "78c6af38d171ae07f3ee33b62b3d2d8535ad0e27", | |
| "bytes": 5820, | |
| "exists": true | |
| }, | |
| "sha256": "f93e794a6e38d6a4eee15ac419b42aef59b634feb83b80c293823a9e9b4481f7" | |
| }, | |
| { | |
| "bytes": 5840, | |
| "path": "probes/probe-llamacpp-q8-correctness.json", | |
| "remote_before_upload": { | |
| "blob_id": "03221c4f507cd75e4ef02c838d2b9be65e2f8c64", | |
| "bytes": 5840, | |
| "exists": true | |
| }, | |
| "sha256": "fa01e4d58c37d581786ad78b0b773547acefb1dbce0a08373ca36eb6c7229eb7" | |
| }, | |
| { | |
| "bytes": 9923, | |
| "path": "probes/release-readiness-report.json", | |
| "remote_before_upload": { | |
| "blob_id": "6b35d98f285cb24ab5b918bc78143860a85d1d97", | |
| "bytes": 8562, | |
| "exists": true | |
| }, | |
| "sha256": "7cb6f2ca33e64d751a833a16cbed4206321fcf031b5f09fcb85c09e88d423e4d" | |
| }, | |
| { | |
| "bytes": 3287, | |
| "path": "probes/release-readiness-report.md", | |
| "remote_before_upload": { | |
| "blob_id": "d0cc1a5f7a22ef1656f0b17850127d0cbb20d325", | |
| "bytes": 3017, | |
| "exists": true | |
| }, | |
| "sha256": "92ea357c21517714878c1024543ca2100da8b80f0c23a0590dbeaa22d76b68e0" | |
| }, | |
| { | |
| "bytes": 17664, | |
| "path": "probes/serving-profile-validation.json", | |
| "remote_before_upload": { | |
| "exists": false | |
| }, | |
| "sha256": "1e272a261e35d60c710890471a3adb2dbc03e4685a3ee179fadf6bed48c1dac0" | |
| }, | |
| { | |
| "bytes": 5737, | |
| "path": "probes/serving-profile-validation.md", | |
| "remote_before_upload": { | |
| "exists": false | |
| }, | |
| "sha256": "0e4d13af8d1f1c7d7694361e16e0d121f04c45700b89fe773d01c8534e6b7824" | |
| }, | |
| { | |
| "bytes": 1267, | |
| "path": "probes/sft-code-only-extract.json", | |
| "remote_before_upload": { | |
| "blob_id": "05e01c81d74abb75944ab6ce97bf6ae156f9ec15", | |
| "bytes": 1267, | |
| "exists": true | |
| }, | |
| "sha256": "24698cc0db27b8d960685259a26f36e7ddd304c9698bd4ab224528177532e2eb" | |
| }, | |
| { | |
| "bytes": 3937, | |
| "path": "probes/sft-data-validation-prod-repair-strong.json", | |
| "remote_before_upload": { | |
| "blob_id": "b1ebb23076277a01e290a53ecf0f97d90225707a", | |
| "bytes": 3937, | |
| "exists": true | |
| }, | |
| "sha256": "59048bffa885751485075b29ea4265abee9c371ea2cd276b64b4efacad933d60" | |
| }, | |
| { | |
| "bytes": 3925, | |
| "path": "probes/sft-data-validation-prod-repair.json", | |
| "remote_before_upload": { | |
| "blob_id": "a468e98a965417e12135dc46e5d8129bfea3441a", | |
| "bytes": 3925, | |
| "exists": true | |
| }, | |
| "sha256": "a19cd71f1338fa6bdfb1547c13b51db726fbf66243e28d431575f377b8d504b0" | |
| }, | |
| { | |
| "bytes": 17652, | |
| "path": "probes/sft-format-audit-prod-repair-strong.json", | |
| "remote_before_upload": { | |
| "blob_id": "8cc8bf5b892c2b66e1a188a0c35613854bf04e72", | |
| "bytes": 17652, | |
| "exists": true | |
| }, | |
| "sha256": "4e322938537485fae4e8f59b507fd3aa3d1445f0033af99b81ed32e8cfe6454b" | |
| }, | |
| { | |
| "bytes": 17718, | |
| "path": "probes/sft-format-audit-prod-repair.json", | |
| "remote_before_upload": { | |
| "blob_id": "40ebc4051196e3a51053896f142c14a3164057cc", | |
| "bytes": 17718, | |
| "exists": true | |
| }, | |
| "sha256": "494c16a57b554a7c662e731bca6e6502a3423ab63e35a9ca371d2d37e0c60f09" | |
| }, | |
| { | |
| "bytes": 10312, | |
| "path": "probes/sft-format-audit-prod.json", | |
| "remote_before_upload": { | |
| "blob_id": "998fbfd0102c3ade16465d368dd1ba82efdc7b66", | |
| "bytes": 10312, | |
| "exists": true | |
| }, | |
| "sha256": "8a7b54a9652c7961aca20ba172a5ec4826d299e46af1ed6017373fe35f9ae0c0" | |
| }, | |
| { | |
| "bytes": 3932, | |
| "path": "probes/sft-format-gate-code-only-extract.json", | |
| "remote_before_upload": { | |
| "blob_id": "37363e254908d8a9390487ce61c077c6f24973bc", | |
| "bytes": 3932, | |
| "exists": true | |
| }, | |
| "sha256": "5280f4ee59a32efc74ffd5623feb4b76c5d445748de3c06a6cb53527a1fa2f76" | |
| }, | |
| { | |
| "bytes": 5056, | |
| "path": "probes/sft-format-gate-prod-repair-strong.json", | |
| "remote_before_upload": { | |
| "blob_id": "236e7d0415cf9c5e6ce6fcd5ac088303bb6b8a2f", | |
| "bytes": 5056, | |
| "exists": true | |
| }, | |
| "sha256": "44505da1f37c3ee7dd28306307b8bfd6cad54ae5cbfdc461c7974182ce4489bf" | |
| }, | |
| { | |
| "bytes": 5015, | |
| "path": "probes/sft-format-gate-prod-repair.json", | |
| "remote_before_upload": { | |
| "blob_id": "748490ea42a37e4c01e8bcda6de85f803f4859c4", | |
| "bytes": 5015, | |
| "exists": true | |
| }, | |
| "sha256": "121c8b14bd3634ddec64cfa5192776c44f60b29d9934301ad580736b8d24c1d2" | |
| }, | |
| { | |
| "bytes": 4039, | |
| "path": "probes/sft-format-gate-strict-repair.json", | |
| "remote_before_upload": { | |
| "blob_id": "da4a9ab78392c8898c6441ac061f8ddc3c0aecc7", | |
| "bytes": 4039, | |
| "exists": true | |
| }, | |
| "sha256": "861f879469e59eb78eecb497b733775da5408796f92af735edf2b3d0eb8ede24" | |
| }, | |
| { | |
| "bytes": 1252, | |
| "path": "probes/sft-prod-20k-stopped.json", | |
| "remote_before_upload": { | |
| "blob_id": "ac4882041cf88837beecde1ead7418fd5262b28c", | |
| "bytes": 1252, | |
| "exists": true | |
| }, | |
| "sha256": "bc0563fbdf62434b98eecf6094b34921f1b70cdb13d2614a8eb129d38602ad0b" | |
| }, | |
| { | |
| "bytes": 495, | |
| "path": "probes/sft-repair-blend-eval.json", | |
| "remote_before_upload": { | |
| "blob_id": "0dfe974fa074d2458bc684a63011184ea24b17cc", | |
| "bytes": 495, | |
| "exists": true | |
| }, | |
| "sha256": "2e585730cfdd855bda70e25ae64ee3833ec61f3e34ba32abc37f6b879996e99a" | |
| }, | |
| { | |
| "bytes": 489, | |
| "path": "probes/sft-repair-blend-train.json", | |
| "remote_before_upload": { | |
| "blob_id": "a598216321485864da09b925383434421809e588", | |
| "bytes": 489, | |
| "exists": true | |
| }, | |
| "sha256": "5745855fc38abcb13bdb8ada381d1a4f1d3d61279d1c1f6c82f45cdaa5b1ae78" | |
| }, | |
| { | |
| "bytes": 1239, | |
| "path": "probes/sft-repair-set.json", | |
| "remote_before_upload": { | |
| "blob_id": "ec3b7af811917991997c66d358a1db0a3dae811c", | |
| "bytes": 1239, | |
| "exists": true | |
| }, | |
| "sha256": "a7e8124a4b34c32895a0da66056a2c6d39f751e249ca66b10bf93e27d61eeccf" | |
| }, | |
| { | |
| "bytes": 666, | |
| "path": "probes/sft-repair-strong-blend-eval.json", | |
| "remote_before_upload": { | |
| "blob_id": "de9fc0f9e734e869237043858ce6a28672c3731a", | |
| "bytes": 666, | |
| "exists": true | |
| }, | |
| "sha256": "f9d73ebe0c87add5cb4e4adee078887576122220a923a81f567dabec0f31aa07" | |
| }, | |
| { | |
| "bytes": 659, | |
| "path": "probes/sft-repair-strong-blend-train.json", | |
| "remote_before_upload": { | |
| "blob_id": "866a156c6d8706010468307c35f85342fc309e3a", | |
| "bytes": 659, | |
| "exists": true | |
| }, | |
| "sha256": "d712d4e0eb1c874795e46a46810f880abbd55cead71d84987721dd4aa8e35989" | |
| }, | |
| { | |
| "bytes": 3745, | |
| "path": "probes/sft-resume-preflight-strong.json", | |
| "remote_before_upload": { | |
| "blob_id": "bf8478d01d88eb845e37d0d618979c32b8a98150", | |
| "bytes": 3745, | |
| "exists": true | |
| }, | |
| "sha256": "d76edb62486e3e4a190825010e39109136a53f3e7cb7fa386dcbe67164ffcd31" | |
| }, | |
| { | |
| "bytes": 134, | |
| "path": "requirements-lab.txt", | |
| "remote_before_upload": { | |
| "blob_id": "b526e5c40a476b8edb38591dd2d72ad818a087a2", | |
| "bytes": 134, | |
| "exists": true | |
| }, | |
| "sha256": "3292913fb123daa3431bfc0a9b84301eee2e957abe249d35722ac7dca8d26e11" | |
| }, | |
| { | |
| "bytes": 22567, | |
| "path": "scripts/audit_gguf_vllm_materialization.py", | |
| "remote_before_upload": { | |
| "blob_id": "a1df912ce4ac635b80d1927dbe595d42a4c7d685", | |
| "bytes": 22567, | |
| "exists": true | |
| }, | |
| "sha256": "217a31e4df3817d9b765f9055b8592d94d023b6f6b5ff0a92acdbf2c3eed454a" | |
| }, | |
| { | |
| "bytes": 16017, | |
| "path": "scripts/audit_model.py", | |
| "remote_before_upload": { | |
| "blob_id": "9a1232550356afcbde16a6eaf54a6bdbf466947d", | |
| "bytes": 16017, | |
| "exists": true | |
| }, | |
| "sha256": "dc34af1da98312aa2cbd5bf7886d03c0ced32bb838d6f41d03277a7328d59c7f" | |
| }, | |
| { | |
| "bytes": 5139, | |
| "path": "scripts/audit_sft_format.py", | |
| "remote_before_upload": { | |
| "blob_id": "66a3c95ecb74d43984c303b0b6e19820a911e147", | |
| "bytes": 5139, | |
| "exists": true | |
| }, | |
| "sha256": "471f1929156fd4df794a61f5cf82236e0890eb92d36cdb50cbb4a91372fb3959" | |
| }, | |
| { | |
| "bytes": 8169, | |
| "path": "scripts/bench_openai.py", | |
| "remote_before_upload": { | |
| "blob_id": "a5d63caae222f5df761668c58d36a158fa73653f", | |
| "bytes": 8169, | |
| "exists": true | |
| }, | |
| "sha256": "e699059bedb1e0ae399c95570ae1a1f8cecf986f60ee576b6447d599f04f72a2" | |
| }, | |
| { | |
| "bytes": 7615, | |
| "path": "scripts/build_bootstrap_mtp_checkpoint.py", | |
| "remote_before_upload": { | |
| "blob_id": "832542c41db2ba872aba8ee463b3abca415c1338", | |
| "bytes": 7615, | |
| "exists": true | |
| }, | |
| "sha256": "cf2d52ac14ac23b9c84aa35a8a4c965afed5573f711221411eb93acd634ef526" | |
| }, | |
| { | |
| "bytes": 16856, | |
| "path": "scripts/build_release_readiness_report.py", | |
| "remote_before_upload": { | |
| "blob_id": "a7dc67e2fce48ab06d6a9afe0c24f8e992b4c064", | |
| "bytes": 15496, | |
| "exists": true | |
| }, | |
| "sha256": "05190a4ce370af14c88853a566b52410d62abd562b49179a55bb2fe3bc6c42d0" | |
| }, | |
| { | |
| "bytes": 4467, | |
| "path": "scripts/build_sft_blend.py", | |
| "remote_before_upload": { | |
| "blob_id": "fc8c12bbce47eb3e7ce1358882574f5e3b82e941", | |
| "bytes": 4467, | |
| "exists": true | |
| }, | |
| "sha256": "0a7a463952856e166170ab46a625e22fe73cc1905df33714399af80acdd51ba4" | |
| }, | |
| { | |
| "bytes": 9069, | |
| "path": "scripts/build_sft_code_only_from_fences.py", | |
| "remote_before_upload": { | |
| "blob_id": "cbb0eebd259e540890fe3a6a0274f2c200545968", | |
| "bytes": 9069, | |
| "exists": true | |
| }, | |
| "sha256": "2445bf3c36cb4afa3524784cead8a4c1b610d65a161217c6d9dd025f82844855" | |
| }, | |
| { | |
| "bytes": 10235, | |
| "path": "scripts/build_sft_repair_set.py", | |
| "remote_before_upload": { | |
| "blob_id": "989a39569126daef0ea0f4298d281a10da5c36f9", | |
| "bytes": 10235, | |
| "exists": true | |
| }, | |
| "sha256": "835c534808f3fd72c5995dd28e32543fbc6318b5458dd8fd113f1362171547ed" | |
| }, | |
| { | |
| "bytes": 2200, | |
| "path": "scripts/check_audit_gates.py", | |
| "remote_before_upload": { | |
| "blob_id": "846f1500d0f2aceeb2c97388d3e4b68439742e18", | |
| "bytes": 2200, | |
| "exists": true | |
| }, | |
| "sha256": "0bdbf74406a80ce7dd80342095eb06fbe9ec80f8877638d672a26d1e1f2b3285" | |
| }, | |
| { | |
| "bytes": 5718, | |
| "path": "scripts/check_mtp_support.py", | |
| "remote_before_upload": { | |
| "blob_id": "6e674b480252381cd367b480095ffa0d4e65df3a", | |
| "bytes": 5718, | |
| "exists": true | |
| }, | |
| "sha256": "c5f7994e90122971dd6972e7c40855d6afad3e7a8d9de378eab7f378a259e296" | |
| }, | |
| { | |
| "bytes": 6357, | |
| "path": "scripts/check_sft_format_gates.py", | |
| "remote_before_upload": { | |
| "blob_id": "5f54db5bfee4d2e61a32a2bb88f461155520133a", | |
| "bytes": 6357, | |
| "exists": true | |
| }, | |
| "sha256": "b65b3a405b35b3e920a78f08d138c4668637e11da75e389315d65a0740a49e2b" | |
| }, | |
| { | |
| "bytes": 4379, | |
| "path": "scripts/collect_next_token_logprobs.py", | |
| "remote_before_upload": { | |
| "blob_id": "1fefc910e4b1ebf41ca54c332d404918583f97a6", | |
| "bytes": 4379, | |
| "exists": true | |
| }, | |
| "sha256": "dcad13feab27fbb4a9d63e95b77649fbf82cf8149fff69a393ed57e56dc96b1f" | |
| }, | |
| { | |
| "bytes": 6926, | |
| "path": "scripts/compare_kld_logprobs.py", | |
| "remote_before_upload": { | |
| "blob_id": "aaf11e0827f98fe413959c07296cf1021d4def71", | |
| "bytes": 6926, | |
| "exists": true | |
| }, | |
| "sha256": "371da2dd45b2a240c5cfb329a6a2c97d90dae7bf56422e655e62151e842f25c9" | |
| }, | |
| { | |
| "bytes": 11075, | |
| "path": "scripts/eval_lora_behavior.py", | |
| "remote_before_upload": { | |
| "blob_id": "f28d4bf97c8b51972c2d295da2a71641cbf863b8", | |
| "bytes": 11075, | |
| "exists": true | |
| }, | |
| "sha256": "47726dab593caa4863efcf2d1f33404cc23143811799e3b1fccfd9000ad24995" | |
| }, | |
| { | |
| "bytes": 2313, | |
| "path": "scripts/launch_sft_prod_20k_gpu1.sh", | |
| "remote_before_upload": { | |
| "blob_id": "49a69fe9d565ff02e346814009f4f648b4cd1c57", | |
| "bytes": 2313, | |
| "exists": true | |
| }, | |
| "sha256": "2c879a9b608eee2d9dbfb96c20fdca5f2ccfb495efcef62affbaa84aa4c7a6ca" | |
| }, | |
| { | |
| "bytes": 13085, | |
| "path": "scripts/preflight_sft_resume.py", | |
| "remote_before_upload": { | |
| "blob_id": "4d0b73a80cfd7cc8856d28df6f8b240025509181", | |
| "bytes": 13085, | |
| "exists": true | |
| }, | |
| "sha256": "9249cb1697d8104b91d5b58a84e5dfc1e0716f1956af0467273ca41d27ae1977" | |
| }, | |
| { | |
| "bytes": 16665, | |
| "path": "scripts/probe_model_behavior.py", | |
| "remote_before_upload": { | |
| "blob_id": "700ec81ab96b0573afdac1ffbaa84a9f0f94b903", | |
| "bytes": 16665, | |
| "exists": true | |
| }, | |
| "sha256": "80bf223764395794ce3359860e58742a6798c6b4c5815ecbf649d39cbf0b0060" | |
| }, | |
| { | |
| "bytes": 7877, | |
| "path": "scripts/probe_openai_contract.py", | |
| "remote_before_upload": { | |
| "blob_id": "3b9acd1e52f8203a59f1d72369f148e2bc672304", | |
| "bytes": 7877, | |
| "exists": true | |
| }, | |
| "sha256": "dd4187dcfa8973dc120dd492b09d7c6fb172461b22911e2675b253ba09e9de94" | |
| }, | |
| { | |
| "bytes": 6082, | |
| "path": "scripts/probe_openai_determinism.py", | |
| "remote_before_upload": { | |
| "blob_id": "50a6c2c88371612ad72c9bf3a79f05785ad66fc2", | |
| "bytes": 6082, | |
| "exists": true | |
| }, | |
| "sha256": "89f2dbe49d563b5537c935d54be3682b7d23e3dbdab2c793f63e7125454646f4" | |
| }, | |
| { | |
| "bytes": 3115, | |
| "path": "scripts/render_sft_jsonl.py", | |
| "remote_before_upload": { | |
| "blob_id": "02dd2101009bf622d8dfe92fedc0d52c2aca30a6", | |
| "bytes": 3115, | |
| "exists": true | |
| }, | |
| "sha256": "7495bdc31867c2c6cc52fb761bf4321b62376f3a8a98f699999b6a7b41b731f7" | |
| }, | |
| { | |
| "bytes": 4573, | |
| "path": "scripts/run_model_investigation.py", | |
| "remote_before_upload": { | |
| "blob_id": "7b1a137d8ffe3d79652141a04cd9477bef67d831", | |
| "bytes": 4573, | |
| "exists": true | |
| }, | |
| "sha256": "b1dab876292279a13380d0e6045c94b3077a8501ae8f836682e447dc84361b3c" | |
| }, | |
| { | |
| "bytes": 4382, | |
| "path": "scripts/serve_llamacpp_gpu0.sh", | |
| "remote_before_upload": { | |
| "blob_id": "a12b1a8154ba4603d8c61d316a8efbf8eb2378f9", | |
| "bytes": 4382, | |
| "exists": true | |
| }, | |
| "sha256": "02992430ab841bc77586a63f9e4756b070abfc1eac8ba0042cb1db55e3261709" | |
| }, | |
| { | |
| "bytes": 171, | |
| "path": "scripts/serve_llamacpp_gpu1.sh", | |
| "remote_before_upload": { | |
| "blob_id": "548586de5c0b343bafdfaa28fab7138e28e9f0f5", | |
| "bytes": 171, | |
| "exists": true | |
| }, | |
| "sha256": "d1d1c7d102bc40255352cd176a3e44a97e84b3ff85557c3e4a9a3475c625ae33" | |
| }, | |
| { | |
| "bytes": 15606, | |
| "path": "scripts/summarize_behavior_matrix.py", | |
| "remote_before_upload": { | |
| "blob_id": "74882f40d304682e7f9fbaa2ea484ef927917df4", | |
| "bytes": 15606, | |
| "exists": true | |
| }, | |
| "sha256": "d4f479fc61f9ceb959503329df7eb3a807a81a0cb738d07315717747068f0c84" | |
| }, | |
| { | |
| "bytes": 5117, | |
| "path": "scripts/summarize_investigation.py", | |
| "remote_before_upload": { | |
| "blob_id": "d723430849c22f53b2a4d91a5fea9a427819edf0", | |
| "bytes": 5117, | |
| "exists": true | |
| }, | |
| "sha256": "2125556f7b4f9eea5fe4b925ac5022632a5a2b8ff42c54fca20d80185cfc1e14" | |
| }, | |
| { | |
| "bytes": 6488, | |
| "path": "scripts/train_sft_lora.py", | |
| "remote_before_upload": { | |
| "blob_id": "544320532ad24cee2c7df4dcf14429a760605fed", | |
| "bytes": 6488, | |
| "exists": true | |
| }, | |
| "sha256": "340edc3ee4e104e9bf8145195b05ce9f106c63f3b128c32d181ed0512140868a" | |
| }, | |
| { | |
| "bytes": 9335, | |
| "path": "scripts/validate_serving_profiles.py", | |
| "remote_before_upload": { | |
| "exists": false | |
| }, | |
| "sha256": "7cd47c2fb7b723daa2f1b493e6cc8642499eac0f50057463786ed4dac26cc9f2" | |
| }, | |
| { | |
| "bytes": 15231, | |
| "path": "scripts/validate_sft_jsonl.py", | |
| "remote_before_upload": { | |
| "blob_id": "a4e76160b56e5bea6289b5e981e6b89f70a481ca", | |
| "bytes": 15231, | |
| "exists": true | |
| }, | |
| "sha256": "b1db75a43b9b3415cba337b868638a496f960cf492bbdfa4c31ad978c277908c" | |
| }, | |
| { | |
| "bytes": 20402, | |
| "path": "scripts/verify_hf_release.py", | |
| "remote_before_upload": { | |
| "blob_id": "8aa8b46de86b2f23902e09b03ecd0d76d6079759", | |
| "bytes": 19576, | |
| "exists": true | |
| }, | |
| "sha256": "a4afcad099491fa52fbaffe10927966c82ac9c4c8d532144432e441a8f31bdd0" | |
| } | |
| ] | |
| } | |