FDN r1+r2: federated distillation rounds (3 independent trainers, novelty dedup, composed gate)
Browse files- README.md +44 -0
- r1/README.md +207 -0
- r1/adapter_config.json +45 -0
- r1/adapter_model.safetensors +3 -0
- r2/miner-a/adapter/README.md +207 -0
- r2/miner-a/adapter/adapter_config.json +45 -0
- r2/miner-a/adapter/adapter_model.safetensors +3 -0
- r2/miner-a/manifest.json +204 -0
- r2/miner-a/summary.json +15 -0
- r2/miner-b/adapter/README.md +207 -0
- r2/miner-b/adapter/adapter_config.json +45 -0
- r2/miner-b/adapter/adapter_model.safetensors +3 -0
- r2/miner-b/manifest.json +179 -0
- r2/miner-b/summary.json +15 -0
- r2/miner-c/adapter/README.md +207 -0
- r2/miner-c/adapter/adapter_config.json +45 -0
- r2/miner-c/adapter/adapter_model.safetensors +3 -0
- r2/miner-c/manifest.json +207 -0
- r2/miner-c/summary.json +15 -0
- r2/round-report-v2.json +195 -0
README.md
CHANGED
|
@@ -1,3 +1,47 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3.5-4B
|
| 4 |
+
tags: [lora, federated-distillation, code, golang, fdn]
|
| 5 |
---
|
| 6 |
+
|
| 7 |
+
# FDN Adapters — Federated Distillation Network (subject: programming/go/concurrency)
|
| 8 |
+
|
| 9 |
+
LoRA adapters produced by FDN's federated distillation loop: **many independent
|
| 10 |
+
trainers distill open teachers into one student per subject — and only verified
|
| 11 |
+
improvement gets accepted.** Every training sample is machine-verified
|
| 12 |
+
(`go build && go test -race`) before it may train anything; every adapter is
|
| 13 |
+
graded on held-out exams with contamination structurally excluded
|
| 14 |
+
(solution-class splits). Teachers are open, distillation-permissive models only
|
| 15 |
+
(DeepSeek V4 Flash, MIT) — enforced in code, with license texts verified.
|
| 16 |
+
|
| 17 |
+
Code, methodology and all raw evidence: https://github.com/chainswarm/fdn-subnet
|
| 18 |
+
|
| 19 |
+
## Student progression (held-out, contamination-free, bucket/200)
|
| 20 |
+
|
| 21 |
+
| Round | Student | Score | Notes |
|
| 22 |
+
|---|---|---|---|
|
| 23 |
+
| R0 | base Qwen3.5-4B | 36/200 (7 families) | concurrency-bug fixing baseline |
|
| 24 |
+
| R1 | `r1/` adapter (1017 verified samples) | **200/200** (7 families) | full miner loop, ≈$1.50 |
|
| 25 |
+
| R2 | `r2/` — 3 independent trainers | every unsolved target 0→200 (3 new harder families) | composed router-student: no regression anywhere |
|
| 26 |
+
|
| 27 |
+
## Round R2 — federation in action
|
| 28 |
+
|
| 29 |
+
Three trainers on separate cloud machines, same public curriculum, independent
|
| 30 |
+
verified datasets (194/169/197 samples): miner **a** and **b** accepted at full
|
| 31 |
+
reward; miner **c** deliberately duplicated a's assignment — MinHash manifest
|
| 32 |
+
overlap (41%) was detected and its reward discounted 30% (novelty economics).
|
| 33 |
+
Full verdicts: `r2/round-report-v2.json`; per-miner dataset provenance:
|
| 34 |
+
`r2/miner-*/manifest.json`.
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
from peft import PeftModel
|
| 40 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 41 |
+
|
| 42 |
+
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.5-4B", dtype="bfloat16", device_map="auto")
|
| 43 |
+
model = PeftModel.from_pretrained(base, "aphex5/fdn-adapters", subfolder="r1")
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
Adapters compose router-style per subject family; greedy decoding for
|
| 47 |
+
reproducible evals (prompt format: see `fdn/eval/harness/prompts.py`, go-fix-v1).
|
r1/README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 7 |
+
- lora
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
### Model Description
|
| 20 |
+
|
| 21 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
+
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
+
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
+
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
| 40 |
+
|
| 41 |
+
## Uses
|
| 42 |
+
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
+
|
| 45 |
+
### Direct Use
|
| 46 |
+
|
| 47 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
+
|
| 49 |
+
[More Information Needed]
|
| 50 |
+
|
| 51 |
+
### Downstream Use [optional]
|
| 52 |
+
|
| 53 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
+
|
| 55 |
+
[More Information Needed]
|
| 56 |
+
|
| 57 |
+
### Out-of-Scope Use
|
| 58 |
+
|
| 59 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
+
|
| 61 |
+
[More Information Needed]
|
| 62 |
+
|
| 63 |
+
## Bias, Risks, and Limitations
|
| 64 |
+
|
| 65 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
+
|
| 67 |
+
[More Information Needed]
|
| 68 |
+
|
| 69 |
+
### Recommendations
|
| 70 |
+
|
| 71 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
+
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 74 |
+
|
| 75 |
+
## How to Get Started with the Model
|
| 76 |
+
|
| 77 |
+
Use the code below to get started with the model.
|
| 78 |
+
|
| 79 |
+
[More Information Needed]
|
| 80 |
+
|
| 81 |
+
## Training Details
|
| 82 |
+
|
| 83 |
+
### Training Data
|
| 84 |
+
|
| 85 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 86 |
+
|
| 87 |
+
[More Information Needed]
|
| 88 |
+
|
| 89 |
+
### Training Procedure
|
| 90 |
+
|
| 91 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 92 |
+
|
| 93 |
+
#### Preprocessing [optional]
|
| 94 |
+
|
| 95 |
+
[More Information Needed]
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
#### Training Hyperparameters
|
| 99 |
+
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 101 |
+
|
| 102 |
+
#### Speeds, Sizes, Times [optional]
|
| 103 |
+
|
| 104 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 105 |
+
|
| 106 |
+
[More Information Needed]
|
| 107 |
+
|
| 108 |
+
## Evaluation
|
| 109 |
+
|
| 110 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 111 |
+
|
| 112 |
+
### Testing Data, Factors & Metrics
|
| 113 |
+
|
| 114 |
+
#### Testing Data
|
| 115 |
+
|
| 116 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 117 |
+
|
| 118 |
+
[More Information Needed]
|
| 119 |
+
|
| 120 |
+
#### Factors
|
| 121 |
+
|
| 122 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
+
|
| 124 |
+
[More Information Needed]
|
| 125 |
+
|
| 126 |
+
#### Metrics
|
| 127 |
+
|
| 128 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
+
|
| 130 |
+
[More Information Needed]
|
| 131 |
+
|
| 132 |
+
### Results
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
#### Summary
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
## Model Examination [optional]
|
| 141 |
+
|
| 142 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 143 |
+
|
| 144 |
+
[More Information Needed]
|
| 145 |
+
|
| 146 |
+
## Environmental Impact
|
| 147 |
+
|
| 148 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
+
|
| 150 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 151 |
+
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
+
- **Cloud Provider:** [More Information Needed]
|
| 155 |
+
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
+
|
| 158 |
+
## Technical Specifications [optional]
|
| 159 |
+
|
| 160 |
+
### Model Architecture and Objective
|
| 161 |
+
|
| 162 |
+
[More Information Needed]
|
| 163 |
+
|
| 164 |
+
### Compute Infrastructure
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
#### Hardware
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Software
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
## Citation [optional]
|
| 177 |
+
|
| 178 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
| 180 |
+
**BibTeX:**
|
| 181 |
+
|
| 182 |
+
[More Information Needed]
|
| 183 |
+
|
| 184 |
+
**APA:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
## Glossary [optional]
|
| 189 |
+
|
| 190 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 191 |
+
|
| 192 |
+
[More Information Needed]
|
| 193 |
+
|
| 194 |
+
## More Information [optional]
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## Model Card Authors [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Contact
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
### Framework versions
|
| 206 |
+
|
| 207 |
+
- PEFT 0.19.1
|
r1/adapter_config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.0,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 8,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"q_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"o_proj"
|
| 37 |
+
],
|
| 38 |
+
"target_parameters": null,
|
| 39 |
+
"task_type": "CAUSAL_LM",
|
| 40 |
+
"trainable_token_indices": null,
|
| 41 |
+
"use_bdlora": null,
|
| 42 |
+
"use_dora": false,
|
| 43 |
+
"use_qalora": false,
|
| 44 |
+
"use_rslora": false
|
| 45 |
+
}
|
r1/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1c0efb576f25fb2a64e8b8ae48a0c297b0d784cac8b40df5df1c1f0d2a45f05
|
| 3 |
+
size 6299904
|
r2/miner-a/adapter/README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 7 |
+
- lora
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
### Model Description
|
| 20 |
+
|
| 21 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
+
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
+
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
+
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
| 40 |
+
|
| 41 |
+
## Uses
|
| 42 |
+
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
+
|
| 45 |
+
### Direct Use
|
| 46 |
+
|
| 47 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
+
|
| 49 |
+
[More Information Needed]
|
| 50 |
+
|
| 51 |
+
### Downstream Use [optional]
|
| 52 |
+
|
| 53 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
+
|
| 55 |
+
[More Information Needed]
|
| 56 |
+
|
| 57 |
+
### Out-of-Scope Use
|
| 58 |
+
|
| 59 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
+
|
| 61 |
+
[More Information Needed]
|
| 62 |
+
|
| 63 |
+
## Bias, Risks, and Limitations
|
| 64 |
+
|
| 65 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
+
|
| 67 |
+
[More Information Needed]
|
| 68 |
+
|
| 69 |
+
### Recommendations
|
| 70 |
+
|
| 71 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
+
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 74 |
+
|
| 75 |
+
## How to Get Started with the Model
|
| 76 |
+
|
| 77 |
+
Use the code below to get started with the model.
|
| 78 |
+
|
| 79 |
+
[More Information Needed]
|
| 80 |
+
|
| 81 |
+
## Training Details
|
| 82 |
+
|
| 83 |
+
### Training Data
|
| 84 |
+
|
| 85 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 86 |
+
|
| 87 |
+
[More Information Needed]
|
| 88 |
+
|
| 89 |
+
### Training Procedure
|
| 90 |
+
|
| 91 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 92 |
+
|
| 93 |
+
#### Preprocessing [optional]
|
| 94 |
+
|
| 95 |
+
[More Information Needed]
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
#### Training Hyperparameters
|
| 99 |
+
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 101 |
+
|
| 102 |
+
#### Speeds, Sizes, Times [optional]
|
| 103 |
+
|
| 104 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 105 |
+
|
| 106 |
+
[More Information Needed]
|
| 107 |
+
|
| 108 |
+
## Evaluation
|
| 109 |
+
|
| 110 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 111 |
+
|
| 112 |
+
### Testing Data, Factors & Metrics
|
| 113 |
+
|
| 114 |
+
#### Testing Data
|
| 115 |
+
|
| 116 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 117 |
+
|
| 118 |
+
[More Information Needed]
|
| 119 |
+
|
| 120 |
+
#### Factors
|
| 121 |
+
|
| 122 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
+
|
| 124 |
+
[More Information Needed]
|
| 125 |
+
|
| 126 |
+
#### Metrics
|
| 127 |
+
|
| 128 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
+
|
| 130 |
+
[More Information Needed]
|
| 131 |
+
|
| 132 |
+
### Results
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
#### Summary
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
## Model Examination [optional]
|
| 141 |
+
|
| 142 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 143 |
+
|
| 144 |
+
[More Information Needed]
|
| 145 |
+
|
| 146 |
+
## Environmental Impact
|
| 147 |
+
|
| 148 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
+
|
| 150 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 151 |
+
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
+
- **Cloud Provider:** [More Information Needed]
|
| 155 |
+
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
+
|
| 158 |
+
## Technical Specifications [optional]
|
| 159 |
+
|
| 160 |
+
### Model Architecture and Objective
|
| 161 |
+
|
| 162 |
+
[More Information Needed]
|
| 163 |
+
|
| 164 |
+
### Compute Infrastructure
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
#### Hardware
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Software
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
## Citation [optional]
|
| 177 |
+
|
| 178 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
| 180 |
+
**BibTeX:**
|
| 181 |
+
|
| 182 |
+
[More Information Needed]
|
| 183 |
+
|
| 184 |
+
**APA:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
## Glossary [optional]
|
| 189 |
+
|
| 190 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 191 |
+
|
| 192 |
+
[More Information Needed]
|
| 193 |
+
|
| 194 |
+
## More Information [optional]
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## Model Card Authors [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Contact
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
### Framework versions
|
| 206 |
+
|
| 207 |
+
- PEFT 0.19.1
|
r2/miner-a/adapter/adapter_config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.0,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 8,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"o_proj",
|
| 34 |
+
"q_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"k_proj"
|
| 37 |
+
],
|
| 38 |
+
"target_parameters": null,
|
| 39 |
+
"task_type": "CAUSAL_LM",
|
| 40 |
+
"trainable_token_indices": null,
|
| 41 |
+
"use_bdlora": null,
|
| 42 |
+
"use_dora": false,
|
| 43 |
+
"use_qalora": false,
|
| 44 |
+
"use_rslora": false
|
| 45 |
+
}
|
r2/miner-a/adapter/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe926346641f71478b91ac57cbfc7b993baacb5aaae2ec3d656078c690d1cf5c
|
| 3 |
+
size 6299904
|
r2/miner-a/manifest.json
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"author_node_id": 1,
|
| 3 |
+
"kind": "manifest",
|
| 4 |
+
"license_tag": "mit",
|
| 5 |
+
"manifest_hash": "sha256:975040b982102737c80c8264be8221fa020240c552cead3ef51e1b7b39116cab",
|
| 6 |
+
"sample_hashes": [
|
| 7 |
+
"sha256:0003f1137f2d0db0d7cf7f40efb07a34e0921f8b04b9a6155a3238417ce8e7c1",
|
| 8 |
+
"sha256:019a3f6c34891b80cb7acffa6f033d2111eddaf2b8b4d0f4c9f5dd434992299b",
|
| 9 |
+
"sha256:040d0d64f699be1b11cc496bccb721e1d91f79827123c95e8e654c8c929af53d",
|
| 10 |
+
"sha256:043472491c614dec26f0acb2ee78b1c630afa79a5fdd74c4587bec00e25b0ac1",
|
| 11 |
+
"sha256:050255fc17687097a147a849d3923fa6ed089ca96fbd49c5dd127008b3c9239d",
|
| 12 |
+
"sha256:05e18a8cf84cb4fac0e85f3187810cad6d510470d2ed2391a8de975321296fac",
|
| 13 |
+
"sha256:0bb2ed601342f8137be0b861449166fa5873a939524e51f482111ce3c08b2de7",
|
| 14 |
+
"sha256:0ebbaacddeb5372573189a986b34637730ce74fa48ecb31499e68f825d172d23",
|
| 15 |
+
"sha256:0ebcc15ad6becb3592ef5d311cd4f73b445042bf50fcfe6532c8a45f60722ed4",
|
| 16 |
+
"sha256:105c708efe7a6fb714f9467f3005cc7c98e0a71e9d253af8aeaf3d00ac103ae7",
|
| 17 |
+
"sha256:1245d0190bdc487ccefd4a94bfc7f8ad9f5853778adc1822686ed8b7cb696788",
|
| 18 |
+
"sha256:12823e04421c65c896221652e5ec69f7b8cf30cc465abec6ade7a4826848ef81",
|
| 19 |
+
"sha256:12ad800a48c73eb9ebe07ab08d29dc6ad4c84855afe13c7120acb63edbfe1cc0",
|
| 20 |
+
"sha256:12fd8450390c2cb76a8240fb65d3579a9e87f8408100843b0944d3588f520bd4",
|
| 21 |
+
"sha256:13f7fb7204fecaa517cc9e50ca5291345b5ec994fad94248ed96495cea6d870b",
|
| 22 |
+
"sha256:16ccdd9a9eaa6b8d234c0c5c29a576b3ab5a17d061f5032d45dd155ed0a97d84",
|
| 23 |
+
"sha256:17803ce7592c4416004e5cf20c94fac5ff250de57669c553573b67dc0d2ace70",
|
| 24 |
+
"sha256:17ad732c847e9e29e6ff09d4b3379b127d17fbea90fda9079f3bc0235697dac7",
|
| 25 |
+
"sha256:1a2837dbc7019c9733d958f9cfd336fb7598f6317135e4be468ea9dfdbac4f2f",
|
| 26 |
+
"sha256:1a9c16f8a89a59b7ca370b2ada26141abac25baeef0816ba4687384415ddee5f",
|
| 27 |
+
"sha256:1b73f37c6a678ddde367a9d44c564bf931c735a4050a52de37edd6f7575638b6",
|
| 28 |
+
"sha256:1ff529c02d198577d4858315e075e1fda18fe65713355810f0aa3a8497189665",
|
| 29 |
+
"sha256:209ecebba22e3a7581f2f7c83cad7904519d89dcf7e0800254e81efdebcd9e31",
|
| 30 |
+
"sha256:210d6d11a3adf0712bf093cdcfe4bbb557364cbfce9d3c759a3c79205036df9f",
|
| 31 |
+
"sha256:21c9a3643a8fe2382ca1ebda56d3eb195d01fa0e6f5814ab1883c864281b37fb",
|
| 32 |
+
"sha256:225d8b11366d6dc7d957e1b2dce7ed18311b5ac9f7b7b5c0173bc555e465191b",
|
| 33 |
+
"sha256:24470530ded10d6567c32948de70602fc7b3c5dd2a3cb0498f7dbb8c088c54b0",
|
| 34 |
+
"sha256:25c757a468e4fea4062124b17a3b5e6e63176e741fd52d2a0bdef1ec0c686992",
|
| 35 |
+
"sha256:27f5072c124c7c92a021652197c4bc393b1d2cc0065cc47738614b55169f2cf6",
|
| 36 |
+
"sha256:2a81a4a6dd11b36a5b4725ec4c846a5936464d9ed2c92d8201252a6e7d5b12ed",
|
| 37 |
+
"sha256:2e2a2becac81834bea4817d9302a88b6f7df9e5e23b408277ee48182f8033d7a",
|
| 38 |
+
"sha256:31bf0564fd52ed1dbe36a1f123a9ffc919cbf71639bb0596ec8745377650ff42",
|
| 39 |
+
"sha256:339157a1084aeb5b29063e7af7e5694b5b4fe6271b1d3fe67895a731f873dd51",
|
| 40 |
+
"sha256:33d2ba64254de28d16c4869d24f836cac1c43f0e44c433900d02dd9e5ba0f091",
|
| 41 |
+
"sha256:39790ef0bae9ad892e599adff4bf6644d2d10c8881c363a59db8383fef064936",
|
| 42 |
+
"sha256:39fbbbcf79e383b19cc99504b5ddc24ccfd1beb9e44bd2bb87de845238cde918",
|
| 43 |
+
"sha256:3a2162cafc9e00086cc5abdd5ed11181e525941b8ce071dafb2bd9a3931d0ad4",
|
| 44 |
+
"sha256:3a7ebdb84581ed0ae782c804124ede23d9f87c0f1ff4678e839f811181001a61",
|
| 45 |
+
"sha256:3b2bbdd5163c52f5dfa4fc9272a17379d245e65e1d69901f8eb14a53d0d8277c",
|
| 46 |
+
"sha256:3c5de99ca66d873df253cc502cf83666b0b59fc61b3f642135c1931078eac71d",
|
| 47 |
+
"sha256:3cf7bb25523ba25481816c5344401bd85ef71dfac7915f86e21a260ec2fb9f67",
|
| 48 |
+
"sha256:3d0017d23325f110c593c6c9b491b4f912f0f32df2a3348d7f21d5979039da41",
|
| 49 |
+
"sha256:3d1a6aa4233dfe91e38f5c56035b760013409ac0cd0ebafac4d7e8f1bf73a2bb",
|
| 50 |
+
"sha256:3e2b479676be87f4ca377132c3ff09f0ce913d060ac4c2ac8d709a6abbbeb361",
|
| 51 |
+
"sha256:3fcadab483d5bbe68e4ce4eeea0d4797a487fe771c979a4c9b06a2344c16d7c7",
|
| 52 |
+
"sha256:41d7fd9a4f67c0f5b3f678d35009929dc12f63dcc093825ba7285936cfb40e33",
|
| 53 |
+
"sha256:4443522d3af63023f7e8a67e67c07b2fa09635a06dc1e2163c6e90f3508d867e",
|
| 54 |
+
"sha256:4487f07d1fa7b55a7093d41274d134681a1042b98dfbf2e484b10ec50aa6d2fd",
|
| 55 |
+
"sha256:477fabae69b9c50bead477db64f83f17b4a69b82b7e446ac3a7c31bd1e03e3f9",
|
| 56 |
+
"sha256:483d1ae032b95898de6053c10adc176bf0d5fef15b9168a6ae40fc48b1cb15be",
|
| 57 |
+
"sha256:48ec456ebc291bdc7b96c74441155a336946f8baae662b401f13f4efa15cf035",
|
| 58 |
+
"sha256:4b510274d3dd35716b896e88444029d91031b1376de7d875f2c93250d12057ad",
|
| 59 |
+
"sha256:4b57bb4b166bb1a4bc6090d0ee170e001a13a14a8e10149eceac85fc82982336",
|
| 60 |
+
"sha256:508971a9428ac852be94bb54e7fa04258663bf49197e98dcbd86a5e9455b69d0",
|
| 61 |
+
"sha256:512875c322e6906009687ec47fd3ded31d6310f50aa38befc9aaa1eec4442567",
|
| 62 |
+
"sha256:51a5737cd50c52ebe467cbaeb605f9da9c6dc0aeb2a1c6594338ad43b1c6b5e7",
|
| 63 |
+
"sha256:51a8010476433a77f2b4f709d1200876d5218434d9584f95dc84c0dfa8dac913",
|
| 64 |
+
"sha256:524a443a0999323dd1ff7500482e02c182340139d59ee64d15eccd198b1328c1",
|
| 65 |
+
"sha256:5497f6c1b5e86b05f4a7bde6d5fd600fe66511741a69ae87b093a0e6dba6de2a",
|
| 66 |
+
"sha256:5537d08062b2efbf598f1503ec07ee00792cf74f089a92e733ab60fdbf59d882",
|
| 67 |
+
"sha256:5590c7bf6136c482c4615b864f726bffbb6c0fd314b33e59b852e84998962515",
|
| 68 |
+
"sha256:559cfbca2d1b187aa58bf537ea263eeb5af20eb75c807f1b133a8882325fad14",
|
| 69 |
+
"sha256:55c2c2ef70adabed4d0f7323aa5fc9d37913f799b40d48431254b21e7d931e7f",
|
| 70 |
+
"sha256:57b6db55114351bfbe142869f0bd539495c5c4a42c7b2a7c90e8826b921d4e0e",
|
| 71 |
+
"sha256:59ba64f2549f57af4ed764903428416238116ff4142f1c8655e260bf6f3a4dbc",
|
| 72 |
+
"sha256:5a668862492e5aa3c402a022989337c26e5aa37f58e5e102ebd8db6c39a704fd",
|
| 73 |
+
"sha256:5b70451aac331090379e6f41323d9256f745c9efe17c2a5e312651dc072b1966",
|
| 74 |
+
"sha256:5d1bd062030ab0032dddffb6c8bcff48845c2e16e17a9edb2f52d8718a1392ab",
|
| 75 |
+
"sha256:5e8150fa7aed785348420c645f262e96aec0c9aac658cd03ea6ef4b265d52e0d",
|
| 76 |
+
"sha256:5ec4cb1291e7ca4c97ffdc730ca21d744faedc9cab618a7e5845b8fefa3a725a",
|
| 77 |
+
"sha256:5eece2a35f5f9206718e5cc0f290e6dfaf05fcba0bd745f87236d9ba057fd40c",
|
| 78 |
+
"sha256:5f3d5c099cd7dae652b2925bff2d31a60ab9e2a40c7bce290e899582b662292e",
|
| 79 |
+
"sha256:5fc0323b78df21108db8ad295809c79d3ae7c5042d0828e65f49ab6d2172bad3",
|
| 80 |
+
"sha256:601fc17fda2968780400c6d2dcf03e7af0b5e31c7d4cdacbc59e815e34fce6f9",
|
| 81 |
+
"sha256:6184e059658fc766490e204ac582ccedc8794a25cb86ed1b3c977ddcde89ade6",
|
| 82 |
+
"sha256:63a3e690a6e866757d2e616a06099d04e88aad51d090f92b37cc3db87e69f1bf",
|
| 83 |
+
"sha256:658068f0e76bd871dd2e7f84f2832f3425c8ef30841c525df11712119ebe164d",
|
| 84 |
+
"sha256:67ec737cd8e837d7c65efab351c590195a1864b84f9e8d070c0cdf007e433b1a",
|
| 85 |
+
"sha256:680cd5d49c5653a0989810e3d6b4415814bc38872b59dfbbe4c108ebde66a434",
|
| 86 |
+
"sha256:681a3f4721affed222b5ad176c08854c833c40d704443b588b585c6080462e34",
|
| 87 |
+
"sha256:6ac43f3651c153a3ee6ba190ccfe59c9b412dc536e3cf327c6a17ca78cc302bc",
|
| 88 |
+
"sha256:6c01a6f1059a919bcdb3c77344c6bb18d98ee3275e22a0ce1aa374ea0728a12c",
|
| 89 |
+
"sha256:6ca2bf0b5c81df4fd55375260c820a5a1fd2dccd60a8c302207f2552623237ed",
|
| 90 |
+
"sha256:6eda72c4f478e409c4dcec74111758e32196d0dc63892d34fdfe8d82d3ec8c56",
|
| 91 |
+
"sha256:70b18e2f85fef82c18af3022fe03afc98268849430ef595f912d1fd06c36ce03",
|
| 92 |
+
"sha256:7101849d3cdfca4c0ca56b199c636c2335552b9728b0c6252b5daf60c3e0c599",
|
| 93 |
+
"sha256:7236f303bf1437f4fbeeed353e85f6f0cfb57497b02059332bb17aef987836e0",
|
| 94 |
+
"sha256:7255b499219a5daed557eb5809bcc20dfc38b8b84d460f96ff1e1933d2bb91db",
|
| 95 |
+
"sha256:72708a4ab2e7d8e4cb994e1355a5cb4e7ecfd48ad85090dae427014dac90745b",
|
| 96 |
+
"sha256:75f96963f0ef3fc8d747b8da4ccdfb4d986518fc447cdbcb012177f6b213b4a8",
|
| 97 |
+
"sha256:7638908ef44effcc406e01e0d4dfe77a9f4576407377a608b95ce4e645e9f336",
|
| 98 |
+
"sha256:7675ddfd510932e6b1f5df5913cf64ba3b997cb71da21e7c609b368774c93681",
|
| 99 |
+
"sha256:769b51f5d489340760972e906011031bf853110a11d216b5f24fd9294722752c",
|
| 100 |
+
"sha256:76f4ee91b0437007f03fc2059e002bac2e74b4005155803f6fa908eb9d9fe375",
|
| 101 |
+
"sha256:792efe67f2c831f1019fb42da592fff4d9ded9fb1eca6c27b5b231c678adc482",
|
| 102 |
+
"sha256:79fa55f77c29be4faa9fc8566edbe041b9f77542fa321bd6407f3b4fb98e2d0f",
|
| 103 |
+
"sha256:7a12f38b8660bb38729c390037bf1c9044180106a1b9fed5ee5c8ae98b41a1e6",
|
| 104 |
+
"sha256:7a345e50359814c60866e9fc086335f69029ff0ce6c6fb7c6937eb0fdc0722d0",
|
| 105 |
+
"sha256:7a6b534a366f5d404fabbcfef999fb993fb206c37d216c508214b484e07e7194",
|
| 106 |
+
"sha256:7aa5bcc5f395f95dfcc377547977ce1fe9d189e6d44262a2a4c2c214e8396987",
|
| 107 |
+
"sha256:7ba0d1568ef34fe3f20b0bd8f33e514601404fce6886978219d132c23a743caa",
|
| 108 |
+
"sha256:7df5abe3f8d9d190c46119b4c8ba90aeb4d0b9625fa19abc37f290e3291a2320",
|
| 109 |
+
"sha256:7e9909032e347950eb9437e694792267f92627f1536231f1af685edb43b64d37",
|
| 110 |
+
"sha256:7ef58b1e567739cec3a3283535977210a70b326581dc581c525e219ee1616a3c",
|
| 111 |
+
"sha256:7fa90a78d3c161ec268d8a6ba267e1fc575e618dd56ae752c2059fc25d6b945d",
|
| 112 |
+
"sha256:817dafb5bf8bb67a82982d259681afd8a17534ef2688fe9b90ff707aa20d5303",
|
| 113 |
+
"sha256:843c41161ab4f0509d2fcd1bc40f7c801531401ac10a5c0c321d9a44b81c4896",
|
| 114 |
+
"sha256:87d0a0f9e1f85ea5f711ac0fe68a0862764032b5f00e075410403b8a4082b695",
|
| 115 |
+
"sha256:888ddbd74cdaefc942d0c43c19cc683d438aeb5b65e76a58a3c4f07a8bf13a8e",
|
| 116 |
+
"sha256:8a025c7eb89873ded40f6647ea06e6022851eb33f5be65be8563a91995266aed",
|
| 117 |
+
"sha256:8aa165e54945d82ea3a6b327dd3b3b99df1bc82e2d741019e11ba1068165acc6",
|
| 118 |
+
"sha256:8b0cb893dc6f9c77fa366c13a74d9bc1f4de63cf42e7fc27acbd4ab338f028f5",
|
| 119 |
+
"sha256:8be8bf83371bbef17edc2ddd8d5441965343d9709657192147fdba00c2c28ab8",
|
| 120 |
+
"sha256:8f15bae932bef77bee46279c0397ddd3197662fdd742578e2fac877e42180d0d",
|
| 121 |
+
"sha256:90ba28182efd2c4dd4f803749e8891d5ca0deea5bb820f864ab559b1dcc455ef",
|
| 122 |
+
"sha256:914f9a2dc1854e76997888525884b32907abcffdf35a8c2dfe40da1b9b5a86c6",
|
| 123 |
+
"sha256:91e7190f1a4913787fd20ea9e50c90691b0bc7b6978730564cd7704d37eb3f3b",
|
| 124 |
+
"sha256:9371700a6e1c93babb67c54a6f5a7b526479eb161aec4221ff69961f46109ab7",
|
| 125 |
+
"sha256:93bca0235cc7154aa7e305bfe925f9f70ba9bcb381084dfd10120e31de35d58e",
|
| 126 |
+
"sha256:941f585063c488556fb4b47a8ee3e15897fdde23d9a6194db6ba0f387ba904f7",
|
| 127 |
+
"sha256:945fe9e7cdc80f7a9af590c4f645e2a08eee4cda2198ef1df276b98b21329494",
|
| 128 |
+
"sha256:990cfc6a90a78a8949ae8a098acdec0fb3da861d93b6532dfb3e15b1e25b897a",
|
| 129 |
+
"sha256:9b1fe3fc8a94afaf4c4d3d4f37eb67343d8c00534e3c8386ff5e280a8544b867",
|
| 130 |
+
"sha256:9c493dc4c6353da361779ecc7537c2facfc0e82a210d4ac3dab99f1aa1b74185",
|
| 131 |
+
"sha256:9e1274a7ed6b282f97c8bebad9d0862da41ca4f594ac85765793caef32bbdd38",
|
| 132 |
+
"sha256:9f085ea0ce39dbbe0e9095688d253931b15c8131dfcf4a86c7749673d4946ab0",
|
| 133 |
+
"sha256:a0923b04266c02ae306c9dfdb39ab321a2bc2ce00428d2c60ef9328594570326",
|
| 134 |
+
"sha256:a0a3cd07335e82e7d9d87ca9e9f5ad05a01670cd08ae13324bec52bb7eacd741",
|
| 135 |
+
"sha256:a1ad5db2dfc43b64433008abac33d171e683f179ce52cb0ccae925fda885ee34",
|
| 136 |
+
"sha256:a34d0a47d55a56f463c37be3da852556253197fcc07bb960f2d8c77f52150905",
|
| 137 |
+
"sha256:a51279d3255868a2040583784688b82f01a0c135ce42c106748358c9dbf655b3",
|
| 138 |
+
"sha256:a52413cd15bd98acd12ab83b932e3fa61b78ee06ab8bac177257e132aef2b5cd",
|
| 139 |
+
"sha256:a5a529a3106dc0285024d81e9ca355518fda5fd19e96336d3cbab8501c50a9ea",
|
| 140 |
+
"sha256:a6f7dc4116123cddb3779102eaa73d1a101381245e69875c63b8f23c49d7f055",
|
| 141 |
+
"sha256:a8094b5d3a279afeee9d45d9c9aeae908b61bb863bb253e419c1ae5ae58c6845",
|
| 142 |
+
"sha256:aca35f06e70933d3aa4a257f5933c02a442f51150e3cd9e897eb50e6d4d63e75",
|
| 143 |
+
"sha256:b0b24886e90117640d0b78f413445490bcb7eccc59db8668c5abd40ca78888ae",
|
| 144 |
+
"sha256:b3a95854fe1d4e4a351a016a74edf332aa1a76365e961db02b29a4534d92742b",
|
| 145 |
+
"sha256:b6da8f1aa09bed7c5f0061284dabda0ba6590445aaa382f4b05918a85e968b20",
|
| 146 |
+
"sha256:b8885fb01abe4c73da759bd49406e89bc509b0c6bf96c584b990d6cf3d2473ea",
|
| 147 |
+
"sha256:bba34472db08070e84762bc9d76515277797c5a5e119e5baf31b1fb3d2ad1765",
|
| 148 |
+
"sha256:bd5c35adfba926b02e4b842abfd37348925dec6c462ab7c1c536783b4d0cb2d8",
|
| 149 |
+
"sha256:bd73cc5529a7f61a7ac9a522e76ef12622978f23afb443c9908a74dfe41077cc",
|
| 150 |
+
"sha256:bdc24cd9f6ffb1d415de49d693d8bb7afab1337d85db78734063d7f390696bfe",
|
| 151 |
+
"sha256:be50635e1eb3b198a2b6599830ec810b5ba4676a33abea221eb87970d9e40856",
|
| 152 |
+
"sha256:bf03849b89226109111b0d86c02ce3dabee07dd3d71bfe577f8e0877178740ea",
|
| 153 |
+
"sha256:bf38b34457202daaeaea43bd23faafa5cee65a190e1be42978c791c3f1079b53",
|
| 154 |
+
"sha256:bf760a11dc5586434f75c7524fe2de38faf100c089225121fa662c1934f2285c",
|
| 155 |
+
"sha256:c083148bd7997025d32c37e3737ce9ef214a928e1bc08b204a3dec66063a6dbf",
|
| 156 |
+
"sha256:c1abe0983b5132b259c2c704c32f227ea1a89cda06e23ebf3f4235b380242be4",
|
| 157 |
+
"sha256:c1f0ccef17aa7bcfcc9195244f54f331df98c54dba5bd847f637e7e5fe81d36f",
|
| 158 |
+
"sha256:c3c1bc3fc4ccb66ed4deb143470c260e069e87b5478b314261c7b28ed75e3905",
|
| 159 |
+
"sha256:c4dfc615c020765f657a424aa8395b00e95927d8b2e6e1b64ed19555e7514d76",
|
| 160 |
+
"sha256:c55b4b5e53f98ee17d6ee65f25f4fd94cce8c163fa4cd8f9f59342451a287225",
|
| 161 |
+
"sha256:c6a27b73640c72f3b59f3fe4e1b149771026aecf70c289f6560152ce2cc901c5",
|
| 162 |
+
"sha256:c6b449d4d639f9ab28b70185887561af9d4082079bb0b160b6dfc5f121a0b840",
|
| 163 |
+
"sha256:c6db62dabe6de3f03045686ac3bb0ec2214945e0220947782bd43ceb10c685f2",
|
| 164 |
+
"sha256:c83200da9a1520d75c058542ee73a1584af054fd4067dfac86c93aacc73ffa6e",
|
| 165 |
+
"sha256:c9ca04d567ec9bda7640805124836bfa8ea7c15dacb38c61502c5179736b7dfe",
|
| 166 |
+
"sha256:cb05a208419b194daa66dae11bcd580754820a74ac1eea0b1d27ea2d89ba1686",
|
| 167 |
+
"sha256:cd428b7f945e97bb75ca34d895dffdaef8a105c7a3b78e7c0633ab7f1be75410",
|
| 168 |
+
"sha256:cea5efc98bf100b6f7ff4b0e39e3a9261663e81652902df3bae55714339c318b",
|
| 169 |
+
"sha256:cfc4824d38bb961ddfbf7cc988dfecd0a2ad84f632351c1f09f451969a06f1aa",
|
| 170 |
+
"sha256:cff3760a9feec703b6f74554e3c7b777db02989aaa23a4c381a5e49ab473c679",
|
| 171 |
+
"sha256:d040b61abb51e6164c0b9fc8e50559bfc827da69f29219b5082eb08bc928ff76",
|
| 172 |
+
"sha256:d0cd6c092b21a9d4466b05744eed2a1ad5a9b8d80fe6b9750d2b883734cd13d5",
|
| 173 |
+
"sha256:d5783cbfecd3cb4fafc6fb52173ee16a114a30f71189847080231cab3aadb41d",
|
| 174 |
+
"sha256:d7183a356904a26c036557b378aa7c8145c5920f8d27f6471de3509d4be98ffe",
|
| 175 |
+
"sha256:d823b5332c1e4905db2782b25654cac61f7a0d4832f088174359f193b7402c06",
|
| 176 |
+
"sha256:d98da7516aaa352347f13a226706f16f35474f71f574e1b6371f27f0cf91d937",
|
| 177 |
+
"sha256:da63132462056f3d3ff528734b597e35dd04525674f712d1f19b14b993342c29",
|
| 178 |
+
"sha256:dbb7bd030e44c36d83accf1f4e58f73a3a9f2aef449b4327b3eb0a1b1ed87df9",
|
| 179 |
+
"sha256:de85ef8be5a4de21225ad320de7ad30d2c32b5b74fcb26c3599d2f5112d5d24d",
|
| 180 |
+
"sha256:dec841563252c4128f920c1ec544d6118e875271ae08c90441d64a9bc59ba85d",
|
| 181 |
+
"sha256:e1b2475f226339a079dbcc1878fd24cce7cf143748aa0a28027a5b2daf94d361",
|
| 182 |
+
"sha256:e2de2aded09c29caeacce6fc417b1686382c070a2c3856b444c87336b65ff255",
|
| 183 |
+
"sha256:e50a268178dc8c0d70e5acdb8dd8315a8d641d7b285205a2aa924091b7ed4a6e",
|
| 184 |
+
"sha256:e5d36e6a1cdd1cda38ce56d26431c3a8a53cfbfed080ca3ebf6950975c00b91b",
|
| 185 |
+
"sha256:e87907f9cb5da3ae95b054a208431f977cd8368d561ea82a085aaadfef3f9f91",
|
| 186 |
+
"sha256:e8d9b5bf309ea027ef1cda0d376702a40f314a03d7a9239e2189ba8d4421c6ad",
|
| 187 |
+
"sha256:e9b611a2857493860bde41db4ef63a306d784faef2b5c234c10ae66fdd3f6be7",
|
| 188 |
+
"sha256:e9ef50f687b2a671c52e9a36f647f6c59ecad8776cf960c3e55bace96241ac0e",
|
| 189 |
+
"sha256:ec916f4a510bef70023fcec606dc22b06ec3433d5cfdb8846e22e87fd6e6fcb9",
|
| 190 |
+
"sha256:ecefc73bfbad7aabc7ff2e1240a79cf1fcdf04be4937aa10b1c873fe9c9dc082",
|
| 191 |
+
"sha256:ef203591071bf25440bb22605bb3cd5aa6976bd7df827661c9dcb387c0116490",
|
| 192 |
+
"sha256:f1d5671f8c70a7f0f02f9798543158db913cc6d8c6612127357fec12eea0460c",
|
| 193 |
+
"sha256:f753e64e712fcb61b6418901e09c216456e4dbc9353c93d06cf9d1f7fd0ece19",
|
| 194 |
+
"sha256:f8403d6916d79f3cdba3ef48d699950487c1d8ef3d28fa4bb221735401b4ae24",
|
| 195 |
+
"sha256:f86101db44d5eee3c57272e3015980736b317a220b651bb29d8b9338c00c4a6d",
|
| 196 |
+
"sha256:f866cedbd819b69858faec1165f04ef8ad45dc256da6aafdb6da412ef08fef8d",
|
| 197 |
+
"sha256:fa00a70eb691a21daf923878529b5b373f97217934891a13d815938555a949e7",
|
| 198 |
+
"sha256:fa098c3d8f665392687d833e7802b90f5e80d9c851ad2a3cb0bbc5ee1c069832",
|
| 199 |
+
"sha256:fd5b0919c7d72b5074b345da9d878b8f840a457ec7a00824555476791d82d48e",
|
| 200 |
+
"sha256:fdb30a9e60334a1e242ecd3fec5624257d6d0574d86cae5c2ab1e170721875b6"
|
| 201 |
+
],
|
| 202 |
+
"teacher_model": "deepseek/deepseek-v4-flash",
|
| 203 |
+
"v": 1
|
| 204 |
+
}
|
r2/miner-a/summary.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"adapter_hash": "sha256:fe926346641f71478b91ac57cbfc7b993baacb5aaae2ec3d656078c690d1cf5c",
|
| 3 |
+
"final_loss_milli": 4,
|
| 4 |
+
"miner_id": "a",
|
| 5 |
+
"rejected_failed_grading": 1,
|
| 6 |
+
"rejected_no_solution": 5,
|
| 7 |
+
"samples_verified": 194,
|
| 8 |
+
"teacher": "deepseek/deepseek-v4-flash",
|
| 9 |
+
"templates": [
|
| 10 |
+
"mutex_copy",
|
| 11 |
+
"ctx_cancel_leak"
|
| 12 |
+
],
|
| 13 |
+
"train_steps": 388,
|
| 14 |
+
"wall_min_milli": 39406
|
| 15 |
+
}
|
r2/miner-b/adapter/README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 7 |
+
- lora
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
### Model Description
|
| 20 |
+
|
| 21 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
+
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
+
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
+
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
| 40 |
+
|
| 41 |
+
## Uses
|
| 42 |
+
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
+
|
| 45 |
+
### Direct Use
|
| 46 |
+
|
| 47 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
+
|
| 49 |
+
[More Information Needed]
|
| 50 |
+
|
| 51 |
+
### Downstream Use [optional]
|
| 52 |
+
|
| 53 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
+
|
| 55 |
+
[More Information Needed]
|
| 56 |
+
|
| 57 |
+
### Out-of-Scope Use
|
| 58 |
+
|
| 59 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
+
|
| 61 |
+
[More Information Needed]
|
| 62 |
+
|
| 63 |
+
## Bias, Risks, and Limitations
|
| 64 |
+
|
| 65 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
+
|
| 67 |
+
[More Information Needed]
|
| 68 |
+
|
| 69 |
+
### Recommendations
|
| 70 |
+
|
| 71 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
+
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 74 |
+
|
| 75 |
+
## How to Get Started with the Model
|
| 76 |
+
|
| 77 |
+
Use the code below to get started with the model.
|
| 78 |
+
|
| 79 |
+
[More Information Needed]
|
| 80 |
+
|
| 81 |
+
## Training Details
|
| 82 |
+
|
| 83 |
+
### Training Data
|
| 84 |
+
|
| 85 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 86 |
+
|
| 87 |
+
[More Information Needed]
|
| 88 |
+
|
| 89 |
+
### Training Procedure
|
| 90 |
+
|
| 91 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 92 |
+
|
| 93 |
+
#### Preprocessing [optional]
|
| 94 |
+
|
| 95 |
+
[More Information Needed]
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
#### Training Hyperparameters
|
| 99 |
+
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 101 |
+
|
| 102 |
+
#### Speeds, Sizes, Times [optional]
|
| 103 |
+
|
| 104 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 105 |
+
|
| 106 |
+
[More Information Needed]
|
| 107 |
+
|
| 108 |
+
## Evaluation
|
| 109 |
+
|
| 110 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 111 |
+
|
| 112 |
+
### Testing Data, Factors & Metrics
|
| 113 |
+
|
| 114 |
+
#### Testing Data
|
| 115 |
+
|
| 116 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 117 |
+
|
| 118 |
+
[More Information Needed]
|
| 119 |
+
|
| 120 |
+
#### Factors
|
| 121 |
+
|
| 122 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
+
|
| 124 |
+
[More Information Needed]
|
| 125 |
+
|
| 126 |
+
#### Metrics
|
| 127 |
+
|
| 128 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
+
|
| 130 |
+
[More Information Needed]
|
| 131 |
+
|
| 132 |
+
### Results
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
#### Summary
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
## Model Examination [optional]
|
| 141 |
+
|
| 142 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 143 |
+
|
| 144 |
+
[More Information Needed]
|
| 145 |
+
|
| 146 |
+
## Environmental Impact
|
| 147 |
+
|
| 148 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
+
|
| 150 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 151 |
+
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
+
- **Cloud Provider:** [More Information Needed]
|
| 155 |
+
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
+
|
| 158 |
+
## Technical Specifications [optional]
|
| 159 |
+
|
| 160 |
+
### Model Architecture and Objective
|
| 161 |
+
|
| 162 |
+
[More Information Needed]
|
| 163 |
+
|
| 164 |
+
### Compute Infrastructure
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
#### Hardware
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Software
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
## Citation [optional]
|
| 177 |
+
|
| 178 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
| 180 |
+
**BibTeX:**
|
| 181 |
+
|
| 182 |
+
[More Information Needed]
|
| 183 |
+
|
| 184 |
+
**APA:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
## Glossary [optional]
|
| 189 |
+
|
| 190 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 191 |
+
|
| 192 |
+
[More Information Needed]
|
| 193 |
+
|
| 194 |
+
## More Information [optional]
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## Model Card Authors [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Contact
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
### Framework versions
|
| 206 |
+
|
| 207 |
+
- PEFT 0.19.1
|
r2/miner-b/adapter/adapter_config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.0,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 8,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"k_proj",
|
| 34 |
+
"q_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"v_proj"
|
| 37 |
+
],
|
| 38 |
+
"target_parameters": null,
|
| 39 |
+
"task_type": "CAUSAL_LM",
|
| 40 |
+
"trainable_token_indices": null,
|
| 41 |
+
"use_bdlora": null,
|
| 42 |
+
"use_dora": false,
|
| 43 |
+
"use_qalora": false,
|
| 44 |
+
"use_rslora": false
|
| 45 |
+
}
|
r2/miner-b/adapter/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aec2ba10d52246192cab66e9dad471f436e688cb6e4a57bb188564f9c35ac164
|
| 3 |
+
size 6299904
|
r2/miner-b/manifest.json
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"author_node_id": 1,
|
| 3 |
+
"kind": "manifest",
|
| 4 |
+
"license_tag": "mit",
|
| 5 |
+
"manifest_hash": "sha256:1f4689c53e23d97a614b52156cc0d8558f3fbe49b0607eead0d69c2387ebbb9e",
|
| 6 |
+
"sample_hashes": [
|
| 7 |
+
"sha256:023a8135a55c44c545fb221c98e84e177b4e0ba39693c781464ef43654cfa916",
|
| 8 |
+
"sha256:041a0504bbe51f9504d652166aa93861655bf52f417d552b5530dbd98268ec1a",
|
| 9 |
+
"sha256:04ed927895008a653d2fa1b48361fcbca24f232ab72e455479b0c82078cfbf41",
|
| 10 |
+
"sha256:05099f09f22ddae4594f6a38a5f83f919bee9a227f6f0bd7d7c94437f790fe6c",
|
| 11 |
+
"sha256:0779118d5b84904fa55eddba29855e8298d1cf49bdd7b084c39f7bd210a916e3",
|
| 12 |
+
"sha256:081d079b75a3f7763ca97e86a2a17c7d628370b1afd6bac7ba45c937504e4563",
|
| 13 |
+
"sha256:08a2a5e0e10990cb2fc8d912eb667c3449ddd46268bace0c768202da5f108b94",
|
| 14 |
+
"sha256:08a49d847035171e87259c3cd5b5fbf4d6e31b274aa0d9a7fd31fb4b9970f4ea",
|
| 15 |
+
"sha256:09d6347608cba78e8c36850ae024a778fba2f84faa6501f92d10da36e5d4c290",
|
| 16 |
+
"sha256:0ac26c4d208dc36995e30ebdfe27d87434a3ec9cfcb40f61f25413be72f33b2b",
|
| 17 |
+
"sha256:0d7665b20cec41b1a14ba9d12637b01283622628f6ce241b554f79672e2e3afd",
|
| 18 |
+
"sha256:10492506dac2cf9045e7ae9a40b1306a853aadcb5a8c8ba549e4b917341c9d64",
|
| 19 |
+
"sha256:121ab2a678ef6e1996e2e1b2c4946a7f2c1579d216391ca2c40a4fbf43dfb995",
|
| 20 |
+
"sha256:12ff72f22f3bb86a4de3f1b7814586fb1d8e647b1e71e9c179c412204c0af34f",
|
| 21 |
+
"sha256:13dedb961d967522e963d6eb3fa17ae5546f0a0a37d2a9db950067503134ef23",
|
| 22 |
+
"sha256:154e5b0f3b4977225bfb9c5809bd9e8332f030eb374016c05dc7b5c67d746cde",
|
| 23 |
+
"sha256:1747975e2f7989dbe990575e4bb47dc1f9c9af220eab5c90b1df1fc3ee4b83d9",
|
| 24 |
+
"sha256:18fcc942eae52e6c572daddb6a5a1651754035d688b49a6e8a66e6c62e88b68a",
|
| 25 |
+
"sha256:19339dd861e5e93a5661239fc966bf0d3056858387822960b61e65559f4f7685",
|
| 26 |
+
"sha256:19b709df3c709c9409a920dddab525a4ca3eb4f35d54ffb5a252207723dc7ee2",
|
| 27 |
+
"sha256:1a32b89b9b34d52a20b57fd98345064f40459af278d4e844bca70692093cffc1",
|
| 28 |
+
"sha256:1b18bc7bf0fafdf734351128a2052cbead4a7f9e13602ba666518c0488135909",
|
| 29 |
+
"sha256:1c342d7066b9d6fe7fb06751ff22823447373977656330ab837bc76b67d2e5d5",
|
| 30 |
+
"sha256:1ccc34be28b276869a12d7014bc07e0ef16f382d36be7e4c7474b287ca3d5956",
|
| 31 |
+
"sha256:1e020b36cc48e265b26e6d2e8c0b471a14d1ef641556b5897e4c4ef9e15f3df5",
|
| 32 |
+
"sha256:2002920e5bcaebf1aa4c9798809ed144ce0afc3e51e9f0765fde7ed8ded509b7",
|
| 33 |
+
"sha256:21340452c2b4f2c36fa644f171006207d11b9e41693bd4b0b2e05d54e6db7683",
|
| 34 |
+
"sha256:21dfa0257c757bc7b09641100d7ea70e2ec74a5ce048dbd5e550732c5f9a0d8d",
|
| 35 |
+
"sha256:229dee2aa186f21ac7a4c52a1a3d9bd1ccbd82165c2fd050067cc58ffca1818c",
|
| 36 |
+
"sha256:23a8f376ab447f84ffa452837881f8b31f7be4b651b62b1d953c51f80806436c",
|
| 37 |
+
"sha256:24bd4e945afffc220ef86287f2aab45ab9bb678df10e0c59c8ec4591bd5c1020",
|
| 38 |
+
"sha256:269d9ba8541de3cd871b0edae2390299f00d94da17822a09c1da66895ee0791c",
|
| 39 |
+
"sha256:272872c42d99408b7e77ae505827c43a49bb362d71ed1b47cd846cd616432075",
|
| 40 |
+
"sha256:2a5ef924eab5e987635c6172ee3e12df07918912f5f1f2c91434021ac618ce4b",
|
| 41 |
+
"sha256:2b281310f12cf488dce5f816206762eee0c5bc101e4e31381b6de468f6247336",
|
| 42 |
+
"sha256:2b800a71cc9dc11f230d16dce95156871ac5d935cdc817406ea98987137138eb",
|
| 43 |
+
"sha256:2c55edf642470b579415b5fd322906119e68e7ed1881c2d3a11014e2f4c0e52a",
|
| 44 |
+
"sha256:2c840e645eb7415a330da92f0ac1bc2b6f5ecf80968c35237b48a8f075b23414",
|
| 45 |
+
"sha256:2e221c1bc36be04429126340e7add000c7d0fa61a74fb76a36b72eb8806912b8",
|
| 46 |
+
"sha256:2fe97880dfaa57f71b0d9396f23d731d962bde68adb4eeec17b82134c906c681",
|
| 47 |
+
"sha256:34feea4f3ac44573dc0fd24c1c67d3275fdd2e5397759460ca1b67e5f109943f",
|
| 48 |
+
"sha256:350f5212915d98b1effc61d7b148f9db002a0bc5d02b1f51c36dc315f529c302",
|
| 49 |
+
"sha256:363e0dbb1dc91c9024297e81f6c6726481949cf8a7ef5a99be342fafe902d927",
|
| 50 |
+
"sha256:3700a7dba1398a66bdd18f803fe0f0f7354082e1eb70ee56bc3300f4e6cfd767",
|
| 51 |
+
"sha256:382f599078a2328a91f80919b4dc220d19acdfa2a5b16526324b642680d5dbdf",
|
| 52 |
+
"sha256:38abff7f52facc57f9265511718afe3137160e0bd5f07ba6105713277862af58",
|
| 53 |
+
"sha256:390ef6dfb5ec7803f86f569f8832da9ee91ff1eb9d8d2a7465263175efbdb12d",
|
| 54 |
+
"sha256:3a4f67973a5d4bcbfd6ac00ff26886ea34966891d67117f0b960882f47b6807c",
|
| 55 |
+
"sha256:3ce3f441499a14a40a3ebf055120a44eba07142867c4835ac84ee23c8d421934",
|
| 56 |
+
"sha256:3cf1654cd4003dd7ca54fd9b2009a45cccbbfa1f5156c38fac167f2d32315006",
|
| 57 |
+
"sha256:4226ed73845b9e67ff3bd3c48fe90976cfcdaa4f6890e7ce5b45b87046f25c8e",
|
| 58 |
+
"sha256:4544736ed7fa2f6ee78acd51b8b99d3fbbe9a34a35ce6b27c242db4f78bddedc",
|
| 59 |
+
"sha256:46b95ae439ed527995eeca2371b6e98b0bd0d64ad07e52fa4e26a51c7e459f87",
|
| 60 |
+
"sha256:47a936957a4869afe286d494cb3d563bf0750d9fc6b8161c7708a03f40c02566",
|
| 61 |
+
"sha256:483cd849f37b4a9466d505234bda7d58f8f2f2b59827926fcd74004f9df3d4a3",
|
| 62 |
+
"sha256:4a52ceea7193bc0f6bb6328c3120f0f67f88387bf937f34545c8efc4b7dec6c3",
|
| 63 |
+
"sha256:4b27cdf24d10582d40ba8c6abff18cb00076245d4e8a12d6bc4a14f74dbb303d",
|
| 64 |
+
"sha256:4b92b430870dcbf84271ec99b84a0d77e5d4877e93c275562b5e4982eeae76e7",
|
| 65 |
+
"sha256:4cda33b8ce5e20f4b049279f496c20bb1098cd9da194e40dca293cdb04aad43d",
|
| 66 |
+
"sha256:4d3fdb846ff070588eb2f503df2b4880daa6ddd49fcf8a61b7d34667e269ace5",
|
| 67 |
+
"sha256:5080cc5c09d9b491153c2b442afa40695d1a284465b70a13fa7d58ee0ec9b013",
|
| 68 |
+
"sha256:50a42f2a091980b465cfeeb89807b290f6adbef6c40da1c37196ce7b6f83ef5c",
|
| 69 |
+
"sha256:50fac581c8f8c82af23f25c31ccb0aa766d38dc6a23ca2e6592e53bf6f496203",
|
| 70 |
+
"sha256:5106800ff2bd63381ae91996a90f99a1859f2efe3d947212aefe4bae9cc9fd62",
|
| 71 |
+
"sha256:54312046a3207d98728a76f327fc40b75fd1ea7d3b58b01a4f8640e80e42e17e",
|
| 72 |
+
"sha256:572256fc9a1083b34772d90bc2979377997eba39297eabb3c680090d95bd37b4",
|
| 73 |
+
"sha256:578ecd7175b1827d600b8c63a4dcb80158736ea8781e0dd5eb24cbf8c9f7be5f",
|
| 74 |
+
"sha256:5803e21de7ff8b520489fb874d8588f8e37bbd1c30e7e6ce0a781829f8a0ae19",
|
| 75 |
+
"sha256:5844c548d872ec69c6e1ffb55ef55aecc478b9860b29347a8528d2bb07c9d513",
|
| 76 |
+
"sha256:58565c0646ccb3f62af03137285b4a82efd999e6799716c6d79ed33df126e7c8",
|
| 77 |
+
"sha256:5a97466ca18352a4f73e1a41564cd15ac45012f9c78b05da7b34a378c64934b6",
|
| 78 |
+
"sha256:5b112f296a519a46e58f35f34b838e1539f446e375f97d7063903aa46714e604",
|
| 79 |
+
"sha256:5bd93fb51677a80fc4ebe196ef0849c15eacf0995cf1d1e4273724186a6e8eaa",
|
| 80 |
+
"sha256:5dfb7a3fef1974cdc2d5b0625315e7921c1096d2911dd5d1e7348779581378ee",
|
| 81 |
+
"sha256:6006d49ae6cc0c085f8d24fa61baef455ce200c74537d45eae12c48d1e5d0912",
|
| 82 |
+
"sha256:6305321067c2a64ce0c776c02c578493cf1e9f5ce986bfd03a76b2a8b9fa798c",
|
| 83 |
+
"sha256:64d2b3c25e2430a4a4b9f293e4195dcfb483d810e12db03f2b5c5a6f61979a77",
|
| 84 |
+
"sha256:64d9ee2504536cd91d10197a802f461ebd8ce1a6c88c57544f869258e0bff43e",
|
| 85 |
+
"sha256:6754987461728cf5976bf548295c7cb2ec43e1825ceea26b2a87426164f7cd3e",
|
| 86 |
+
"sha256:6f331ddfa803528716dbbe637499bdc742867c090464205d2ea50c8916bf9614",
|
| 87 |
+
"sha256:701189d048e4e64be55b09e5ee43fb64e8b0b070f6082315f499880dfdc40c94",
|
| 88 |
+
"sha256:719fae8c6eb385bfe408e8b557b324de110aba278fb9619abaf6a8d67ee78a09",
|
| 89 |
+
"sha256:71cf7e27a0752fe8ae8163d22f9f45689146239cb900a4eb2efb1bf04220c100",
|
| 90 |
+
"sha256:721a910fbd7ce3f490ea0a12ec9de1b3d2ee00dc5ce9eb662979d0b04dedd777",
|
| 91 |
+
"sha256:750eded699c40ace3b51beab91de47b48c9039201b9d128c298e875524653977",
|
| 92 |
+
"sha256:751be9fc67fa5e7942feb110ae0ba78f84c1e5ac13567b15c9a774111e694794",
|
| 93 |
+
"sha256:77bcc8cbe3ef96f2b3614a7c201b3f4dd9afc1994fc3223a2126419c4d03fdcf",
|
| 94 |
+
"sha256:7aba44d5890d4591e638fa4a0307274d404e27ab291e72676efead27f6742ded",
|
| 95 |
+
"sha256:7ae17c81801d64b6d11bb8d6f06b2581d8a4b9293557bb9ff7667295a64f2250",
|
| 96 |
+
"sha256:7f8c9af1fc0008993480e1f3a1f5cb1c520353b3f98082ef0750eb2f3fe37056",
|
| 97 |
+
"sha256:80f918f2859529e01396ed745ab0446bdbf0c54c783ed9e18a42685412c191b5",
|
| 98 |
+
"sha256:84fed26896633a8405c0c4a911179c8a6972fadf6f0a52ce4f4d44643b64bcab",
|
| 99 |
+
"sha256:8665cfd3ef92c179f9b075e3c8d618dc82866bfb3429b5d42d2f2303adcc97bf",
|
| 100 |
+
"sha256:867a65c606df73bc2a2b684b46eb7d626d0fa0b66e77ca566d30a18c4cbe53e9",
|
| 101 |
+
"sha256:8990c505242f97c6d94b129b9ab15c894136a5724f1477ecb9b562a06115cc8a",
|
| 102 |
+
"sha256:8d3bf6ba8c5d18a3c78aad2e3185878e3de9aa0cb4358b7e971da37f0fd8d05a",
|
| 103 |
+
"sha256:8dc54e0b2f82907430b3504e5dea246c9509436947f609ecc3510400d77ccb2a",
|
| 104 |
+
"sha256:8f6ddbb5210910cee11d7634fae058b851bee1d5fab9a15804630a3d8e1bc403",
|
| 105 |
+
"sha256:918f3ce2d3fc1c4f0473fb35a26952d3d3b741981b0c65e6e9b8a05f999d2e2d",
|
| 106 |
+
"sha256:93930da0093257f0074320555ff41958b5ee9cc212f533fd10b699a4def3ac36",
|
| 107 |
+
"sha256:95883859b5fe53a242725a18120138d601077d4aef13e3a11150ac24d36cf029",
|
| 108 |
+
"sha256:962a9c8a2616f93a5b7cea6bdea24b9375ebf268b29ca6e2953157a42e7c9c0c",
|
| 109 |
+
"sha256:96c80f298aebd0dbb8a2c0bb496f0df32690864fa103f5c71b2fa038ae019ae8",
|
| 110 |
+
"sha256:97223e25b48af0cb0878ffe34890b24303140601f1e40c14c32b0ab68e887928",
|
| 111 |
+
"sha256:9732ef6ca89c04597a87e933ca010840fabe873db9113483fede811319cd8e18",
|
| 112 |
+
"sha256:982dadf7dc3c775db4c12866405030a6906c79a0ef9fcaf6c575caef4cc4c710",
|
| 113 |
+
"sha256:996ffcac1516e67ac235d8bc11539d9076a608702cfd8993ba2c26b880f72ada",
|
| 114 |
+
"sha256:9ac5e1234707484234a51bb6a9059e1d989711c2dfda3c6c1b026082ec02d08f",
|
| 115 |
+
"sha256:9c23de63e29083eb745a297a8dfa3ccbb3d77004199f18e7080133b142f48d16",
|
| 116 |
+
"sha256:9e1196e70f81d20b8e80fca34273f4024facef6b8cb759b145ef2607cd215bc7",
|
| 117 |
+
"sha256:9eb65950ba7f02c818953f130e1d6c553d8c810aaef9962aa18031a7b8db6f57",
|
| 118 |
+
"sha256:9f746b8e48c3e01a9388abee4994819fb3d511897e01a53ccbd70bc7105c70ad",
|
| 119 |
+
"sha256:9f9d0cee71e3c6bfba18351db4a2b75e261785fd87fc30386a060842e958f937",
|
| 120 |
+
"sha256:a2265b2d04c1f473fd658e3364836807bb0188664c957ee2f618f3913c11c7e4",
|
| 121 |
+
"sha256:a2be97b9728c6bba6a30c818f6205a3f7df50f409b945b9a19c6f3a28c5d27d7",
|
| 122 |
+
"sha256:a561298914818a16d2ad43c4294715a039eee5a9447c8fb1e197f86bd7290278",
|
| 123 |
+
"sha256:a8ecb855738dfb40208724e52ea83fbc082b36d50743048995d5ac665b92bb27",
|
| 124 |
+
"sha256:a971394ab493da2d8f759ba61238fde6224e94a2ec1437fb8bf1cfc8c16f0349",
|
| 125 |
+
"sha256:aa00912ac98ead58b959ebe67202fca463391a025428cb9c667cb4d1f4b4ed6c",
|
| 126 |
+
"sha256:ae7224a18dd0433948263d05094dfa129f416c9c9a8628a5d75c34abbbd011d7",
|
| 127 |
+
"sha256:ae7419b7f72853e5b4dc9505d923ab29c48fc382fa39080ef170340313b21d42",
|
| 128 |
+
"sha256:af689d667f8c082edf990e4541e8aaa046f4481bd44ba1ad5e43e9a88c8f1cf6",
|
| 129 |
+
"sha256:afbb7b29eecb93236568554ef6860057838ae4cceb5201342891124f7beb484e",
|
| 130 |
+
"sha256:b0ec65426fb8674734202acc6f55872113f015f13732fa950a552571f34825db",
|
| 131 |
+
"sha256:b5e6371c380b4776d6c905b6276193c6d708729d9f84b980008d8e05638c1aaf",
|
| 132 |
+
"sha256:b5f627ed9da8c4094f96d99e330bc9c33a9db025337fdef8bd55216d5c53fb09",
|
| 133 |
+
"sha256:ba7b356fa56e772a383ed6755e58c44581fd5a03adec82122763a95ae72882eb",
|
| 134 |
+
"sha256:bab316b0c8531375d8b5811ca376e18c0c69c990a0073c0fbe1b8867f7ab192b",
|
| 135 |
+
"sha256:bfa029552dd30290c1d5de6b87fce41bd3a9223376bcd174f97617d5e0390d14",
|
| 136 |
+
"sha256:c0f130c82c92408b2d30036680b7eb2d3180b78df619fc418324ce89e4ff1b99",
|
| 137 |
+
"sha256:c27a469de474e150cfd5696f3af89c049b8bf3f1c7ae99733f88e05c3e5f2755",
|
| 138 |
+
"sha256:c2c31d957908bac3a08ba68b8f053f177faf53d8bde0978acd54ddbbc985b802",
|
| 139 |
+
"sha256:c6e19ac043656898276cbb1d7ecaa7d9a333f4ad4fb42692b5d16336c33beb56",
|
| 140 |
+
"sha256:cc2fabd080288a6e2adc34420b2d380e00aa0424cc310320fce1ce180bfc6d81",
|
| 141 |
+
"sha256:cd9aa0f4705b6f8b071c04f258bd5c3ad70ee6e04a13f1048dcbf483a7c7a9fc",
|
| 142 |
+
"sha256:cf3619916689ca5a8181aa56a7bc69839620d4b2328c3a1be3b0b52e376c4684",
|
| 143 |
+
"sha256:d12230b57b28777f3e5a598c3cb595ce0b8d55c345de2f5b0a6805fce01a3083",
|
| 144 |
+
"sha256:d2fde58f5317c796a27b2a0a0b6109e04c470d9966c407e2f4f8edfdd3e1db7b",
|
| 145 |
+
"sha256:d32bc244ef89eabfaf3a35cb347c6531053927339b4726085a21502ccd9dd1a8",
|
| 146 |
+
"sha256:d6f15a98ea7dfb62894f3a7b457de1d66fbfafd035809f4ec73140a954baf3a8",
|
| 147 |
+
"sha256:d70ce04ed4bdf6086a903fd81dbf66cb88b8ce22bdf75480394c880dfee54939",
|
| 148 |
+
"sha256:d70e6e62299631a87d4b2509d99620c483b4745081f4e0f506356fdb0c02558d",
|
| 149 |
+
"sha256:d818cf397ab2a1a7beb5566bafb4a5aaf368bc7394d8db250ec2afae8505592b",
|
| 150 |
+
"sha256:d856c2a4862ac6feb5a9db8568ddaaf4828da147c22ea8c78bc829c58331282e",
|
| 151 |
+
"sha256:dc1ca04d49a5f7c5ebd119ca78157ab34986d78ccabd8e06667278202c1b2cd0",
|
| 152 |
+
"sha256:dd18272d5e76555a6abb0c2a7aa091ade1d906c795ba4c25a532e679f8e30a76",
|
| 153 |
+
"sha256:ddd4e84928e587f70b5f793c9fb043a010606343bdb223c1278147dfe20d4c0e",
|
| 154 |
+
"sha256:ddeede49e6ddcbea913de8e10999a5bd2b2cdad46dae6eb6aac47fe10dd3a595",
|
| 155 |
+
"sha256:de5890c24c19870a0e898eea83f4bf748b82541092ae9ffc53f9a988a153823d",
|
| 156 |
+
"sha256:de941d5b7dd8bad6e8bbcadce12204c5342a79d0e7f9197e2b576cd7fc223b91",
|
| 157 |
+
"sha256:e0135fd4196d03df360cdee83188de84e39a98e821aa2cf902cefbc8003787e3",
|
| 158 |
+
"sha256:e18246c0e49edbe7234c63738b77c56a005bde74648949081149e909af4a7940",
|
| 159 |
+
"sha256:e6367689b9b1c4fee863fd5398806674f377fccbf09edc0d03933838e4704761",
|
| 160 |
+
"sha256:e7cb3550a2edd9afd5f3551630fa3f74c455b94c50e9fb717fad8843d4d9a882",
|
| 161 |
+
"sha256:e96e6e3b1fd0c13f4655e2211edbafd3f1babaf5a07df1d758fe215f7690f04a",
|
| 162 |
+
"sha256:e9babc258d00e7f2005728cf1ad368c6c1a047d8598c201e68cc5d0a412ff321",
|
| 163 |
+
"sha256:ec672af4221253eb14ff24e174bef0f08a33432f1cf0ebc853f05fb864774265",
|
| 164 |
+
"sha256:f02568354092fa3561bad5ae43668947aee50f5aa98fffce28624ee5e25ce47e",
|
| 165 |
+
"sha256:f0eaa7320c7b242efe3b047f8664cdf1da4c8cd5f2cd1e8b2d89a41e9dda4f06",
|
| 166 |
+
"sha256:f1209f554fff7164a788d361ab5853ba013c1e96c59d2466b2bc9692dfa08bdc",
|
| 167 |
+
"sha256:f24fbec8726684373e8fb00fe583a99f2acb72e261815412d4108cb9902e99e0",
|
| 168 |
+
"sha256:f2e56ca2b1ed5729ea404a6cdaa2eb57d99c105f9b51c775d4a54c23745ad59c",
|
| 169 |
+
"sha256:f34c100232843fb6c28e57ed830069c014932faf56cfda53006f81f63d411a8d",
|
| 170 |
+
"sha256:f3535777fd9d501a918d8373dfc4820a92e01041ef6060e5eb10f1ebcb6eb421",
|
| 171 |
+
"sha256:f83306901c3477159aff65b773f46566c228e35adc52162e6e43d8aaae4e306f",
|
| 172 |
+
"sha256:f8512e1af5139d4483b381e35861126726b8cb9e247bd3e67729851070205286",
|
| 173 |
+
"sha256:fb5267b8a933c54b6dc87888285e32eef8c5de210aae4cb7619eed28001fae49",
|
| 174 |
+
"sha256:fc400c89e46a59ed93ee1fc7c5bfcc3a4ebf477651a8eba26a2c144f3bea4237",
|
| 175 |
+
"sha256:ffa704348e487df0b97d7a7ab9af47a1c41f3e9b8d4d6a2caab962d7274ef156"
|
| 176 |
+
],
|
| 177 |
+
"teacher_model": "deepseek/deepseek-v4-flash",
|
| 178 |
+
"v": 1
|
| 179 |
+
}
|
r2/miner-b/summary.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"adapter_hash": "sha256:aec2ba10d52246192cab66e9dad471f436e688cb6e4a57bb188564f9c35ac164",
|
| 3 |
+
"final_loss_milli": 6,
|
| 4 |
+
"miner_id": "b",
|
| 5 |
+
"rejected_failed_grading": 25,
|
| 6 |
+
"rejected_no_solution": 6,
|
| 7 |
+
"samples_verified": 169,
|
| 8 |
+
"teacher": "deepseek/deepseek-v4-flash",
|
| 9 |
+
"templates": [
|
| 10 |
+
"bounded_worker_pool",
|
| 11 |
+
"slice_append_race"
|
| 12 |
+
],
|
| 13 |
+
"train_steps": 338,
|
| 14 |
+
"wall_min_milli": 41312
|
| 15 |
+
}
|
r2/miner-c/adapter/README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/
|
| 7 |
+
- lora
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
### Model Description
|
| 20 |
+
|
| 21 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
+
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
+
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
+
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
| 40 |
+
|
| 41 |
+
## Uses
|
| 42 |
+
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
+
|
| 45 |
+
### Direct Use
|
| 46 |
+
|
| 47 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
+
|
| 49 |
+
[More Information Needed]
|
| 50 |
+
|
| 51 |
+
### Downstream Use [optional]
|
| 52 |
+
|
| 53 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
+
|
| 55 |
+
[More Information Needed]
|
| 56 |
+
|
| 57 |
+
### Out-of-Scope Use
|
| 58 |
+
|
| 59 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
+
|
| 61 |
+
[More Information Needed]
|
| 62 |
+
|
| 63 |
+
## Bias, Risks, and Limitations
|
| 64 |
+
|
| 65 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
+
|
| 67 |
+
[More Information Needed]
|
| 68 |
+
|
| 69 |
+
### Recommendations
|
| 70 |
+
|
| 71 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
+
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 74 |
+
|
| 75 |
+
## How to Get Started with the Model
|
| 76 |
+
|
| 77 |
+
Use the code below to get started with the model.
|
| 78 |
+
|
| 79 |
+
[More Information Needed]
|
| 80 |
+
|
| 81 |
+
## Training Details
|
| 82 |
+
|
| 83 |
+
### Training Data
|
| 84 |
+
|
| 85 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 86 |
+
|
| 87 |
+
[More Information Needed]
|
| 88 |
+
|
| 89 |
+
### Training Procedure
|
| 90 |
+
|
| 91 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 92 |
+
|
| 93 |
+
#### Preprocessing [optional]
|
| 94 |
+
|
| 95 |
+
[More Information Needed]
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
#### Training Hyperparameters
|
| 99 |
+
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 101 |
+
|
| 102 |
+
#### Speeds, Sizes, Times [optional]
|
| 103 |
+
|
| 104 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 105 |
+
|
| 106 |
+
[More Information Needed]
|
| 107 |
+
|
| 108 |
+
## Evaluation
|
| 109 |
+
|
| 110 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 111 |
+
|
| 112 |
+
### Testing Data, Factors & Metrics
|
| 113 |
+
|
| 114 |
+
#### Testing Data
|
| 115 |
+
|
| 116 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 117 |
+
|
| 118 |
+
[More Information Needed]
|
| 119 |
+
|
| 120 |
+
#### Factors
|
| 121 |
+
|
| 122 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
+
|
| 124 |
+
[More Information Needed]
|
| 125 |
+
|
| 126 |
+
#### Metrics
|
| 127 |
+
|
| 128 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
+
|
| 130 |
+
[More Information Needed]
|
| 131 |
+
|
| 132 |
+
### Results
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
#### Summary
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
## Model Examination [optional]
|
| 141 |
+
|
| 142 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 143 |
+
|
| 144 |
+
[More Information Needed]
|
| 145 |
+
|
| 146 |
+
## Environmental Impact
|
| 147 |
+
|
| 148 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
+
|
| 150 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 151 |
+
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
+
- **Cloud Provider:** [More Information Needed]
|
| 155 |
+
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
+
|
| 158 |
+
## Technical Specifications [optional]
|
| 159 |
+
|
| 160 |
+
### Model Architecture and Objective
|
| 161 |
+
|
| 162 |
+
[More Information Needed]
|
| 163 |
+
|
| 164 |
+
### Compute Infrastructure
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
#### Hardware
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Software
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
## Citation [optional]
|
| 177 |
+
|
| 178 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
| 180 |
+
**BibTeX:**
|
| 181 |
+
|
| 182 |
+
[More Information Needed]
|
| 183 |
+
|
| 184 |
+
**APA:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
## Glossary [optional]
|
| 189 |
+
|
| 190 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 191 |
+
|
| 192 |
+
[More Information Needed]
|
| 193 |
+
|
| 194 |
+
## More Information [optional]
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## Model Card Authors [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Contact
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
### Framework versions
|
| 206 |
+
|
| 207 |
+
- PEFT 0.19.1
|
r2/miner-c/adapter/adapter_config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/root/.cache/huggingface/hub/models--Qwen--Qwen3.5-4B/snapshots/851bf6e806efd8d0a36b00ddf55e13ccb7b8cd0a/",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.0,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 8,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"q_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"v_proj"
|
| 37 |
+
],
|
| 38 |
+
"target_parameters": null,
|
| 39 |
+
"task_type": "CAUSAL_LM",
|
| 40 |
+
"trainable_token_indices": null,
|
| 41 |
+
"use_bdlora": null,
|
| 42 |
+
"use_dora": false,
|
| 43 |
+
"use_qalora": false,
|
| 44 |
+
"use_rslora": false
|
| 45 |
+
}
|
r2/miner-c/adapter/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa5d5cf9be7a836ffa0d22600e226c94f9f4dad1439f665962a73184145fa72f
|
| 3 |
+
size 6299904
|
r2/miner-c/manifest.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"author_node_id": 1,
|
| 3 |
+
"kind": "manifest",
|
| 4 |
+
"license_tag": "mit",
|
| 5 |
+
"manifest_hash": "sha256:148897f0871868104650e074a2247153ff5659b050414183df9c8cde5642f1c1",
|
| 6 |
+
"sample_hashes": [
|
| 7 |
+
"sha256:019a3f6c34891b80cb7acffa6f033d2111eddaf2b8b4d0f4c9f5dd434992299b",
|
| 8 |
+
"sha256:03f3bf6e7c334f84cd56c60c278be82ff577ca0d6cb1e47f01555853fd13f742",
|
| 9 |
+
"sha256:040d0d64f699be1b11cc496bccb721e1d91f79827123c95e8e654c8c929af53d",
|
| 10 |
+
"sha256:0421778a48b92320ad5ad9ad1ac998e03f9c12a260474df9efa72d01c21172c6",
|
| 11 |
+
"sha256:043472491c614dec26f0acb2ee78b1c630afa79a5fdd74c4587bec00e25b0ac1",
|
| 12 |
+
"sha256:050255fc17687097a147a849d3923fa6ed089ca96fbd49c5dd127008b3c9239d",
|
| 13 |
+
"sha256:05e18a8cf84cb4fac0e85f3187810cad6d510470d2ed2391a8de975321296fac",
|
| 14 |
+
"sha256:08ba93d1fbc1cdd1a29037a3eb76072af8f685f3456ef28f60d3726fcfd3ffee",
|
| 15 |
+
"sha256:09d2595e479f306d12be7805064daf44e36492d835230b9f6097e425d156d45c",
|
| 16 |
+
"sha256:0a89230821cffaf829424908e3c9ff9370fadfa51543ec41ee92cafe7e08bf2a",
|
| 17 |
+
"sha256:0a8f5b12a3bfcd2869fb5bd75e91b7f9464fa3ef9fb8b73623daf40e52d5f752",
|
| 18 |
+
"sha256:0c385d75ae4b73d15efbe0af04e3949fb9236f181bb79b4dacc34481819cac7e",
|
| 19 |
+
"sha256:0ccdd1e9d848ff9494d0c4abe75e559686eb21e280339c7bd0cbd851bd49777e",
|
| 20 |
+
"sha256:0ebbaacddeb5372573189a986b34637730ce74fa48ecb31499e68f825d172d23",
|
| 21 |
+
"sha256:105c708efe7a6fb714f9467f3005cc7c98e0a71e9d253af8aeaf3d00ac103ae7",
|
| 22 |
+
"sha256:10f5676d52b4058e3c0f48b8f03755d4b2f3fb4d8cf85ed994be7c19c8f66e27",
|
| 23 |
+
"sha256:1245d0190bdc487ccefd4a94bfc7f8ad9f5853778adc1822686ed8b7cb696788",
|
| 24 |
+
"sha256:12823e04421c65c896221652e5ec69f7b8cf30cc465abec6ade7a4826848ef81",
|
| 25 |
+
"sha256:12ad800a48c73eb9ebe07ab08d29dc6ad4c84855afe13c7120acb63edbfe1cc0",
|
| 26 |
+
"sha256:12fd8450390c2cb76a8240fb65d3579a9e87f8408100843b0944d3588f520bd4",
|
| 27 |
+
"sha256:13f7fb7204fecaa517cc9e50ca5291345b5ec994fad94248ed96495cea6d870b",
|
| 28 |
+
"sha256:15e30a689e2f0a212b241ee6d5c0fa08f0a7cc27a5deaa276ecec51d3a992fd7",
|
| 29 |
+
"sha256:16ccdd9a9eaa6b8d234c0c5c29a576b3ab5a17d061f5032d45dd155ed0a97d84",
|
| 30 |
+
"sha256:16fc61653042ac28b303221de29044a034eaca7158033386aa0266003981d652",
|
| 31 |
+
"sha256:17ad732c847e9e29e6ff09d4b3379b127d17fbea90fda9079f3bc0235697dac7",
|
| 32 |
+
"sha256:1a2837dbc7019c9733d958f9cfd336fb7598f6317135e4be468ea9dfdbac4f2f",
|
| 33 |
+
"sha256:1a9c16f8a89a59b7ca370b2ada26141abac25baeef0816ba4687384415ddee5f",
|
| 34 |
+
"sha256:1b73f37c6a678ddde367a9d44c564bf931c735a4050a52de37edd6f7575638b6",
|
| 35 |
+
"sha256:1d0a5b9a4cdcd6e353aed8ccad89d8fe2f9a210b8c512c57fc2b04e56ee893d4",
|
| 36 |
+
"sha256:1ec2af2f19a17d6560112a7bcc7728ebcfb31dfe7c61889e2f4df92b46e5bb66",
|
| 37 |
+
"sha256:210d6d11a3adf0712bf093cdcfe4bbb557364cbfce9d3c759a3c79205036df9f",
|
| 38 |
+
"sha256:21c9a3643a8fe2382ca1ebda56d3eb195d01fa0e6f5814ab1883c864281b37fb",
|
| 39 |
+
"sha256:225d8b11366d6dc7d957e1b2dce7ed18311b5ac9f7b7b5c0173bc555e465191b",
|
| 40 |
+
"sha256:24470530ded10d6567c32948de70602fc7b3c5dd2a3cb0498f7dbb8c088c54b0",
|
| 41 |
+
"sha256:27f5072c124c7c92a021652197c4bc393b1d2cc0065cc47738614b55169f2cf6",
|
| 42 |
+
"sha256:287e865a436cee97fc8a2c59cdc5526587f2063501ea5bafe82f3162ab11c7bb",
|
| 43 |
+
"sha256:2a81a4a6dd11b36a5b4725ec4c846a5936464d9ed2c92d8201252a6e7d5b12ed",
|
| 44 |
+
"sha256:30bab935a11a9e25e256d1d7669559426c0252808a3ce4de762495c4e7f76e2d",
|
| 45 |
+
"sha256:31bf0564fd52ed1dbe36a1f123a9ffc919cbf71639bb0596ec8745377650ff42",
|
| 46 |
+
"sha256:339157a1084aeb5b29063e7af7e5694b5b4fe6271b1d3fe67895a731f873dd51",
|
| 47 |
+
"sha256:33d2ba64254de28d16c4869d24f836cac1c43f0e44c433900d02dd9e5ba0f091",
|
| 48 |
+
"sha256:35a4046782b8b8e80399a687945ba368a5126ef57fd97a4c717525fdf223e168",
|
| 49 |
+
"sha256:36e108ffa1db81990f8863daafde264cc866c1686d70dd75b06fcd25df1abd34",
|
| 50 |
+
"sha256:39790ef0bae9ad892e599adff4bf6644d2d10c8881c363a59db8383fef064936",
|
| 51 |
+
"sha256:39fbbbcf79e383b19cc99504b5ddc24ccfd1beb9e44bd2bb87de845238cde918",
|
| 52 |
+
"sha256:3a7ebdb84581ed0ae782c804124ede23d9f87c0f1ff4678e839f811181001a61",
|
| 53 |
+
"sha256:3aec335e6ebb15f2b1652bdc8173f70a8b17ce2cc16dc2b784507732d3bfee5c",
|
| 54 |
+
"sha256:3b2bbdd5163c52f5dfa4fc9272a17379d245e65e1d69901f8eb14a53d0d8277c",
|
| 55 |
+
"sha256:3c5de99ca66d873df253cc502cf83666b0b59fc61b3f642135c1931078eac71d",
|
| 56 |
+
"sha256:3d0017d23325f110c593c6c9b491b4f912f0f32df2a3348d7f21d5979039da41",
|
| 57 |
+
"sha256:3de86d0bce3fa2f1b14f770bf719d1c70ede4dadcf21137437816294c6629718",
|
| 58 |
+
"sha256:3fcadab483d5bbe68e4ce4eeea0d4797a487fe771c979a4c9b06a2344c16d7c7",
|
| 59 |
+
"sha256:41d7fd9a4f67c0f5b3f678d35009929dc12f63dcc093825ba7285936cfb40e33",
|
| 60 |
+
"sha256:442c45915fedaf8e07b9572d61e8a72d0942b6e4bf0b920e0b71d157faf44d26",
|
| 61 |
+
"sha256:4487f07d1fa7b55a7093d41274d134681a1042b98dfbf2e484b10ec50aa6d2fd",
|
| 62 |
+
"sha256:44ac10d835e8905e63d6f7368638620a6292fac624d6f81a4d6e4bae348cc4ef",
|
| 63 |
+
"sha256:45d8071698f9817f8ae920cb65a90634488a64705fab431324bf93993c831bbe",
|
| 64 |
+
"sha256:476871c242e7d2cb7455ec36520276c0b5739b11b491209ec254e1445d4c7368",
|
| 65 |
+
"sha256:477fabae69b9c50bead477db64f83f17b4a69b82b7e446ac3a7c31bd1e03e3f9",
|
| 66 |
+
"sha256:483d1ae032b95898de6053c10adc176bf0d5fef15b9168a6ae40fc48b1cb15be",
|
| 67 |
+
"sha256:48ec456ebc291bdc7b96c74441155a336946f8baae662b401f13f4efa15cf035",
|
| 68 |
+
"sha256:4b510274d3dd35716b896e88444029d91031b1376de7d875f2c93250d12057ad",
|
| 69 |
+
"sha256:4b57bb4b166bb1a4bc6090d0ee170e001a13a14a8e10149eceac85fc82982336",
|
| 70 |
+
"sha256:4bd64401e0c613f0ff45fa2442da66d35f44ac9d91a47f5bdbac5a87ecc2bc37",
|
| 71 |
+
"sha256:5025f18cbc87f2a737cea7e6271d45097ed1da4fa30b64673ff5563c7d8ed526",
|
| 72 |
+
"sha256:508971a9428ac852be94bb54e7fa04258663bf49197e98dcbd86a5e9455b69d0",
|
| 73 |
+
"sha256:51a8010476433a77f2b4f709d1200876d5218434d9584f95dc84c0dfa8dac913",
|
| 74 |
+
"sha256:51b149b5e1c9f9bc40ac96cc4d3e33386127bf20e9bc5f51d118b0ce8ae23420",
|
| 75 |
+
"sha256:520b4335f9cdc814152edafb447439df09b4f6e7e62b8c583975a5c8f325063c",
|
| 76 |
+
"sha256:524a443a0999323dd1ff7500482e02c182340139d59ee64d15eccd198b1328c1",
|
| 77 |
+
"sha256:5497f6c1b5e86b05f4a7bde6d5fd600fe66511741a69ae87b093a0e6dba6de2a",
|
| 78 |
+
"sha256:5537d08062b2efbf598f1503ec07ee00792cf74f089a92e733ab60fdbf59d882",
|
| 79 |
+
"sha256:55c2c2ef70adabed4d0f7323aa5fc9d37913f799b40d48431254b21e7d931e7f",
|
| 80 |
+
"sha256:568ddaa6117b6e2061522ad4d0b1e588556ee951d98203051abc67ac960b924f",
|
| 81 |
+
"sha256:592d2dd1a74d892957aee2bb15b25642c80e0ccccdddf25a18eb56f7c4a271a0",
|
| 82 |
+
"sha256:59ba64f2549f57af4ed764903428416238116ff4142f1c8655e260bf6f3a4dbc",
|
| 83 |
+
"sha256:5b004b921723e5dc3b3943d07474acd05642d74324af22d05bd1d1b1c46ad8ae",
|
| 84 |
+
"sha256:5d1bd062030ab0032dddffb6c8bcff48845c2e16e17a9edb2f52d8718a1392ab",
|
| 85 |
+
"sha256:5e8150fa7aed785348420c645f262e96aec0c9aac658cd03ea6ef4b265d52e0d",
|
| 86 |
+
"sha256:5ec4cb1291e7ca4c97ffdc730ca21d744faedc9cab618a7e5845b8fefa3a725a",
|
| 87 |
+
"sha256:5f3d5c099cd7dae652b2925bff2d31a60ab9e2a40c7bce290e899582b662292e",
|
| 88 |
+
"sha256:5fc0323b78df21108db8ad295809c79d3ae7c5042d0828e65f49ab6d2172bad3",
|
| 89 |
+
"sha256:601fc17fda2968780400c6d2dcf03e7af0b5e31c7d4cdacbc59e815e34fce6f9",
|
| 90 |
+
"sha256:62313b363c09dc5192c4c9f5454b20471a919332b9c99aa8694568d6a04ac346",
|
| 91 |
+
"sha256:62a9f86dd7b2b8383755a5c0c28ebaeecad141dc85e5d3850a54e57b8df697dc",
|
| 92 |
+
"sha256:63a3e690a6e866757d2e616a06099d04e88aad51d090f92b37cc3db87e69f1bf",
|
| 93 |
+
"sha256:658068f0e76bd871dd2e7f84f2832f3425c8ef30841c525df11712119ebe164d",
|
| 94 |
+
"sha256:67ec737cd8e837d7c65efab351c590195a1864b84f9e8d070c0cdf007e433b1a",
|
| 95 |
+
"sha256:680cd5d49c5653a0989810e3d6b4415814bc38872b59dfbbe4c108ebde66a434",
|
| 96 |
+
"sha256:681a3f4721affed222b5ad176c08854c833c40d704443b588b585c6080462e34",
|
| 97 |
+
"sha256:6ca2bf0b5c81df4fd55375260c820a5a1fd2dccd60a8c302207f2552623237ed",
|
| 98 |
+
"sha256:6d55d56935c3a784ce2d5accbb49e054413ebdc308b92f75e85de8175743ea78",
|
| 99 |
+
"sha256:6eda72c4f478e409c4dcec74111758e32196d0dc63892d34fdfe8d82d3ec8c56",
|
| 100 |
+
"sha256:7236f303bf1437f4fbeeed353e85f6f0cfb57497b02059332bb17aef987836e0",
|
| 101 |
+
"sha256:7255b499219a5daed557eb5809bcc20dfc38b8b84d460f96ff1e1933d2bb91db",
|
| 102 |
+
"sha256:75f96963f0ef3fc8d747b8da4ccdfb4d986518fc447cdbcb012177f6b213b4a8",
|
| 103 |
+
"sha256:769b51f5d489340760972e906011031bf853110a11d216b5f24fd9294722752c",
|
| 104 |
+
"sha256:76e2196845c38ddbd88e9346c17861cfe0c132f59a7d9230825095ebf2ab5c2a",
|
| 105 |
+
"sha256:7824f5ad096a7a2d4c5b5a89808dae927d83a4a18def9ac5821d7e6c54b1d5e1",
|
| 106 |
+
"sha256:792efe67f2c831f1019fb42da592fff4d9ded9fb1eca6c27b5b231c678adc482",
|
| 107 |
+
"sha256:7a12f38b8660bb38729c390037bf1c9044180106a1b9fed5ee5c8ae98b41a1e6",
|
| 108 |
+
"sha256:7a6b534a366f5d404fabbcfef999fb993fb206c37d216c508214b484e07e7194",
|
| 109 |
+
"sha256:7b5d6f6cffd69dcae0ed52ee8aedf2aa94342a79a12c08d6b41773796e0842eb",
|
| 110 |
+
"sha256:7ba0d1568ef34fe3f20b0bd8f33e514601404fce6886978219d132c23a743caa",
|
| 111 |
+
"sha256:7c22f9b036789f5649d5c879bc0c723f0b5805c688793e4b4a0a234910391ac4",
|
| 112 |
+
"sha256:7df5abe3f8d9d190c46119b4c8ba90aeb4d0b9625fa19abc37f290e3291a2320",
|
| 113 |
+
"sha256:7ef58b1e567739cec3a3283535977210a70b326581dc581c525e219ee1616a3c",
|
| 114 |
+
"sha256:80668d5bec5e25e371e23fe8ebdb0fccd934f9b46f4c810a6d0df6147fdd3059",
|
| 115 |
+
"sha256:8296f983d0d979e6b9b4dcb5646be44aae7a9ee74f18ca31d09f9d279362985e",
|
| 116 |
+
"sha256:8353d35e47e2fc84fc789338ea14fa739e24b04a623dcb10b640b1be06baa28e",
|
| 117 |
+
"sha256:8371ed399a23c71fc6690dfabb12479907a842d106e7e8527d5ccf5d6e50898e",
|
| 118 |
+
"sha256:8417e696dd7280db29a0a4059f20b9ac14bbbdba35f195bc9fb875c36bba1003",
|
| 119 |
+
"sha256:843c41161ab4f0509d2fcd1bc40f7c801531401ac10a5c0c321d9a44b81c4896",
|
| 120 |
+
"sha256:87d0a0f9e1f85ea5f711ac0fe68a0862764032b5f00e075410403b8a4082b695",
|
| 121 |
+
"sha256:888ddbd74cdaefc942d0c43c19cc683d438aeb5b65e76a58a3c4f07a8bf13a8e",
|
| 122 |
+
"sha256:8930cfe78ef754c5347569a6ff59ea4d1315535a40a4510b9e2c1d0f00abc62e",
|
| 123 |
+
"sha256:8a025c7eb89873ded40f6647ea06e6022851eb33f5be65be8563a91995266aed",
|
| 124 |
+
"sha256:8aa165e54945d82ea3a6b327dd3b3b99df1bc82e2d741019e11ba1068165acc6",
|
| 125 |
+
"sha256:8b0cb893dc6f9c77fa366c13a74d9bc1f4de63cf42e7fc27acbd4ab338f028f5",
|
| 126 |
+
"sha256:8be8bf83371bbef17edc2ddd8d5441965343d9709657192147fdba00c2c28ab8",
|
| 127 |
+
"sha256:8bf441e01187590dabc9300a13ee25d8cdd4529075d68508dc5bd232c46cacb5",
|
| 128 |
+
"sha256:8f15bae932bef77bee46279c0397ddd3197662fdd742578e2fac877e42180d0d",
|
| 129 |
+
"sha256:914f9a2dc1854e76997888525884b32907abcffdf35a8c2dfe40da1b9b5a86c6",
|
| 130 |
+
"sha256:93187a21892f68b6b3c7bb7d382de0d3da5328f78a18272d4ab785d5a6c0d132",
|
| 131 |
+
"sha256:93bca0235cc7154aa7e305bfe925f9f70ba9bcb381084dfd10120e31de35d58e",
|
| 132 |
+
"sha256:941f585063c488556fb4b47a8ee3e15897fdde23d9a6194db6ba0f387ba904f7",
|
| 133 |
+
"sha256:945fe9e7cdc80f7a9af590c4f645e2a08eee4cda2198ef1df276b98b21329494",
|
| 134 |
+
"sha256:96162f29b5177641480875ee1b9e888050f5cf695f059ed193e4fe26e5b73f66",
|
| 135 |
+
"sha256:9831b8aab40855e360c0cbd73d9365e3e8c8fc4993d95fa5f71f9ca557c626da",
|
| 136 |
+
"sha256:990cfc6a90a78a8949ae8a098acdec0fb3da861d93b6532dfb3e15b1e25b897a",
|
| 137 |
+
"sha256:99bb5c5e058c8a43d57bdeb8bb9568abdbf523b085155ce895bfff1324c746b0",
|
| 138 |
+
"sha256:9b10387ca32067d5e3fe8f66ce40d12ffa9feacdfd2c59df384adf47df097c76",
|
| 139 |
+
"sha256:9c493dc4c6353da361779ecc7537c2facfc0e82a210d4ac3dab99f1aa1b74185",
|
| 140 |
+
"sha256:9ddc067d6b533b2a5a652af292f5cfdad3c8b931e33d6a93823a8dbe521de6d2",
|
| 141 |
+
"sha256:9e1274a7ed6b282f97c8bebad9d0862da41ca4f594ac85765793caef32bbdd38",
|
| 142 |
+
"sha256:a0923b04266c02ae306c9dfdb39ab321a2bc2ce00428d2c60ef9328594570326",
|
| 143 |
+
"sha256:a0a3cd07335e82e7d9d87ca9e9f5ad05a01670cd08ae13324bec52bb7eacd741",
|
| 144 |
+
"sha256:a34d0a47d55a56f463c37be3da852556253197fcc07bb960f2d8c77f52150905",
|
| 145 |
+
"sha256:a51279d3255868a2040583784688b82f01a0c135ce42c106748358c9dbf655b3",
|
| 146 |
+
"sha256:a5a529a3106dc0285024d81e9ca355518fda5fd19e96336d3cbab8501c50a9ea",
|
| 147 |
+
"sha256:a6063970d620b5d47b429df8cad7f70be73f2553d9763c95d518cc7480bdb87a",
|
| 148 |
+
"sha256:a8094b5d3a279afeee9d45d9c9aeae908b61bb863bb253e419c1ae5ae58c6845",
|
| 149 |
+
"sha256:a8faa637db58eae8eaf32f2bb2508b2f194c66d5cd13b50908edbd7710d7370b",
|
| 150 |
+
"sha256:aca35f06e70933d3aa4a257f5933c02a442f51150e3cd9e897eb50e6d4d63e75",
|
| 151 |
+
"sha256:ad523809d8fb10bc414505ab6fb81f139eccfc0851428321d89801dd8be69865",
|
| 152 |
+
"sha256:b632f72bc9ba38decdec84872370c384890a05a4d5b5635eb94a948b48eaab9c",
|
| 153 |
+
"sha256:b81b4193610486c08ecf560032f9066f9aac03bd96ac939427555f08bd4e708b",
|
| 154 |
+
"sha256:b8885fb01abe4c73da759bd49406e89bc509b0c6bf96c584b990d6cf3d2473ea",
|
| 155 |
+
"sha256:b9608965c5d271846d101edbaca83d417e0e264c930b39b08a53deb0990e44e0",
|
| 156 |
+
"sha256:bb749caa3f75586c424cfe1f03744fb346e2bc879fcb35ac20cfba213cd8e0f5",
|
| 157 |
+
"sha256:bba34472db08070e84762bc9d76515277797c5a5e119e5baf31b1fb3d2ad1765",
|
| 158 |
+
"sha256:bc6ec844674bee74d3cb10845969651e2a8790bc53ec328ccba8cae449ceea8d",
|
| 159 |
+
"sha256:bd5c35adfba926b02e4b842abfd37348925dec6c462ab7c1c536783b4d0cb2d8",
|
| 160 |
+
"sha256:bd73cc5529a7f61a7ac9a522e76ef12622978f23afb443c9908a74dfe41077cc",
|
| 161 |
+
"sha256:bd92ba168ab8acdf6c54cadaf0d6184c3db353ab23ea94b364a0a8b84540e5bb",
|
| 162 |
+
"sha256:bdc24cd9f6ffb1d415de49d693d8bb7afab1337d85db78734063d7f390696bfe",
|
| 163 |
+
"sha256:bf760a11dc5586434f75c7524fe2de38faf100c089225121fa662c1934f2285c",
|
| 164 |
+
"sha256:c083148bd7997025d32c37e3737ce9ef214a928e1bc08b204a3dec66063a6dbf",
|
| 165 |
+
"sha256:c088301e415711e53ae6c95c1027a61f80b621b528374cba35f32c12b9b0b0bf",
|
| 166 |
+
"sha256:c1abe0983b5132b259c2c704c32f227ea1a89cda06e23ebf3f4235b380242be4",
|
| 167 |
+
"sha256:c1f0ccef17aa7bcfcc9195244f54f331df98c54dba5bd847f637e7e5fe81d36f",
|
| 168 |
+
"sha256:c3a1d21a6c47188d3e7bf7a979861c77d81c2ea14e9225f3367ba752fdcde385",
|
| 169 |
+
"sha256:c3c1bc3fc4ccb66ed4deb143470c260e069e87b5478b314261c7b28ed75e3905",
|
| 170 |
+
"sha256:c4dfc615c020765f657a424aa8395b00e95927d8b2e6e1b64ed19555e7514d76",
|
| 171 |
+
"sha256:c55b4b5e53f98ee17d6ee65f25f4fd94cce8c163fa4cd8f9f59342451a287225",
|
| 172 |
+
"sha256:c6b449d4d639f9ab28b70185887561af9d4082079bb0b160b6dfc5f121a0b840",
|
| 173 |
+
"sha256:c6db62dabe6de3f03045686ac3bb0ec2214945e0220947782bd43ceb10c685f2",
|
| 174 |
+
"sha256:c6e58c132922b751d4bcd83c92984290524ba3ef33aef88944029fa1567ff2b6",
|
| 175 |
+
"sha256:c6fe4bc5ce73f1cc5d82262fd864fb5ea222f71388881d41a9f07cd08f440423",
|
| 176 |
+
"sha256:c9ca04d567ec9bda7640805124836bfa8ea7c15dacb38c61502c5179736b7dfe",
|
| 177 |
+
"sha256:ce49790463b0b1f627b001c387fed33c5a9feb8e08453ad37da839a8d35685ff",
|
| 178 |
+
"sha256:ce794fba4905939d18eaddc718ad86d5cd94fd9fcf69378fe4eb30650c9d9845",
|
| 179 |
+
"sha256:cfc4824d38bb961ddfbf7cc988dfecd0a2ad84f632351c1f09f451969a06f1aa",
|
| 180 |
+
"sha256:cff3760a9feec703b6f74554e3c7b777db02989aaa23a4c381a5e49ab473c679",
|
| 181 |
+
"sha256:d040b61abb51e6164c0b9fc8e50559bfc827da69f29219b5082eb08bc928ff76",
|
| 182 |
+
"sha256:d0cd6c092b21a9d4466b05744eed2a1ad5a9b8d80fe6b9750d2b883734cd13d5",
|
| 183 |
+
"sha256:d5783cbfecd3cb4fafc6fb52173ee16a114a30f71189847080231cab3aadb41d",
|
| 184 |
+
"sha256:d823b5332c1e4905db2782b25654cac61f7a0d4832f088174359f193b7402c06",
|
| 185 |
+
"sha256:dad1b81089a473a98b91aa36a46f807fa056153a348d9e42f88fdf859697f102",
|
| 186 |
+
"sha256:dbb7bd030e44c36d83accf1f4e58f73a3a9f2aef449b4327b3eb0a1b1ed87df9",
|
| 187 |
+
"sha256:de266c6e4996daf011e1a650bdf1d7cb12052404beda7d21a5da963cce55d2e5",
|
| 188 |
+
"sha256:dec841563252c4128f920c1ec544d6118e875271ae08c90441d64a9bc59ba85d",
|
| 189 |
+
"sha256:df63072801d6b41bd182ebc9fe014ef48f70c8c9779e0856bf98fcf35b180211",
|
| 190 |
+
"sha256:e50a268178dc8c0d70e5acdb8dd8315a8d641d7b285205a2aa924091b7ed4a6e",
|
| 191 |
+
"sha256:e5d36e6a1cdd1cda38ce56d26431c3a8a53cfbfed080ca3ebf6950975c00b91b",
|
| 192 |
+
"sha256:e6fe4d7e5e23bf2d2155791e5a31ded338e9784d47e1297a18b27482c9a068a3",
|
| 193 |
+
"sha256:e7ea1487e8f744eb6fadf72106e32fd8357e2ba068519b00f0232f451b778390",
|
| 194 |
+
"sha256:e9364c1b033ccf488e2e1fe66b75eee856af5c6b8b608a547667cceecb80637a",
|
| 195 |
+
"sha256:e9b611a2857493860bde41db4ef63a306d784faef2b5c234c10ae66fdd3f6be7",
|
| 196 |
+
"sha256:eaac2140e04d48711c66e95aef4b66011e915d648dc95c3839a175cc71adbeb4",
|
| 197 |
+
"sha256:ecefc73bfbad7aabc7ff2e1240a79cf1fcdf04be4937aa10b1c873fe9c9dc082",
|
| 198 |
+
"sha256:f1d5671f8c70a7f0f02f9798543158db913cc6d8c6612127357fec12eea0460c",
|
| 199 |
+
"sha256:f8403d6916d79f3cdba3ef48d699950487c1d8ef3d28fa4bb221735401b4ae24",
|
| 200 |
+
"sha256:f866cedbd819b69858faec1165f04ef8ad45dc256da6aafdb6da412ef08fef8d",
|
| 201 |
+
"sha256:fa00a70eb691a21daf923878529b5b373f97217934891a13d815938555a949e7",
|
| 202 |
+
"sha256:fa098c3d8f665392687d833e7802b90f5e80d9c851ad2a3cb0bbc5ee1c069832",
|
| 203 |
+
"sha256:fdb30a9e60334a1e242ecd3fec5624257d6d0574d86cae5c2ab1e170721875b6"
|
| 204 |
+
],
|
| 205 |
+
"teacher_model": "deepseek/deepseek-v4-flash",
|
| 206 |
+
"v": 1
|
| 207 |
+
}
|
r2/miner-c/summary.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"adapter_hash": "sha256:aa5d5cf9be7a836ffa0d22600e226c94f9f4dad1439f665962a73184145fa72f",
|
| 3 |
+
"final_loss_milli": 7,
|
| 4 |
+
"miner_id": "c",
|
| 5 |
+
"rejected_failed_grading": 0,
|
| 6 |
+
"rejected_no_solution": 3,
|
| 7 |
+
"samples_verified": 197,
|
| 8 |
+
"teacher": "deepseek/deepseek-v4-flash",
|
| 9 |
+
"templates": [
|
| 10 |
+
"mutex_copy",
|
| 11 |
+
"ctx_cancel_leak"
|
| 12 |
+
],
|
| 13 |
+
"train_steps": 394,
|
| 14 |
+
"wall_min_milli": 33913
|
| 15 |
+
}
|
r2/round-report-v2.json
ADDED
|
@@ -0,0 +1,195 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"incumbent_anchors": {
|
| 3 |
+
"bounded_worker_pool": 0,
|
| 4 |
+
"close_closed": 200,
|
| 5 |
+
"ctx_cancel_leak": 80,
|
| 6 |
+
"deadlock_unbuffered": 200,
|
| 7 |
+
"lazy_init_race": 200,
|
| 8 |
+
"map_concurrent_write": 200,
|
| 9 |
+
"mutex_copy": 0,
|
| 10 |
+
"race_counter": 200,
|
| 11 |
+
"slice_append_race": 200,
|
| 12 |
+
"waitgroup_missing_done": 200
|
| 13 |
+
},
|
| 14 |
+
"round": "r2",
|
| 15 |
+
"rule": "composed-gate: anchors = incumbent except candidate's routed families; target delta = best declared family (AdapterRecord declares ONE target_weakness)",
|
| 16 |
+
"submissions": {
|
| 17 |
+
"a": {
|
| 18 |
+
"accepted": true,
|
| 19 |
+
"candidate_anchors": {
|
| 20 |
+
"bounded_worker_pool": 20,
|
| 21 |
+
"close_closed": 0,
|
| 22 |
+
"ctx_cancel_leak": 200,
|
| 23 |
+
"deadlock_unbuffered": 0,
|
| 24 |
+
"lazy_init_race": 0,
|
| 25 |
+
"map_concurrent_write": 0,
|
| 26 |
+
"mutex_copy": 200,
|
| 27 |
+
"race_counter": 0,
|
| 28 |
+
"slice_append_race": 0,
|
| 29 |
+
"waitgroup_missing_done": 200
|
| 30 |
+
},
|
| 31 |
+
"candidate_targets": {
|
| 32 |
+
"ctx_cancel_leak": 200,
|
| 33 |
+
"mutex_copy": 200
|
| 34 |
+
},
|
| 35 |
+
"composed_anchors": {
|
| 36 |
+
"bounded_worker_pool": 0,
|
| 37 |
+
"close_closed": 200,
|
| 38 |
+
"ctx_cancel_leak": 200,
|
| 39 |
+
"deadlock_unbuffered": 200,
|
| 40 |
+
"lazy_init_race": 200,
|
| 41 |
+
"map_concurrent_write": 200,
|
| 42 |
+
"mutex_copy": 200,
|
| 43 |
+
"race_counter": 200,
|
| 44 |
+
"slice_append_race": 200,
|
| 45 |
+
"waitgroup_missing_done": 200
|
| 46 |
+
},
|
| 47 |
+
"declared_target": "mutex_copy",
|
| 48 |
+
"incumbent_targets": {
|
| 49 |
+
"ctx_cancel_leak": 80,
|
| 50 |
+
"mutex_copy": 0
|
| 51 |
+
},
|
| 52 |
+
"min_target_delta": 200,
|
| 53 |
+
"novelty_bp": 10000,
|
| 54 |
+
"reasons": [],
|
| 55 |
+
"reward": 415,
|
| 56 |
+
"targets": [
|
| 57 |
+
"mutex_copy",
|
| 58 |
+
"ctx_cancel_leak"
|
| 59 |
+
],
|
| 60 |
+
"trainer_summary": {
|
| 61 |
+
"adapter_hash": "sha256:fe926346641f71478b91ac57cbfc7b993baacb5aaae2ec3d656078c690d1cf5c",
|
| 62 |
+
"final_loss_milli": 4,
|
| 63 |
+
"miner_id": "a",
|
| 64 |
+
"rejected_failed_grading": 1,
|
| 65 |
+
"rejected_no_solution": 5,
|
| 66 |
+
"samples_verified": 194,
|
| 67 |
+
"teacher": "deepseek/deepseek-v4-flash",
|
| 68 |
+
"templates": [
|
| 69 |
+
"mutex_copy",
|
| 70 |
+
"ctx_cancel_leak"
|
| 71 |
+
],
|
| 72 |
+
"train_steps": 388,
|
| 73 |
+
"wall_min_milli": 39406
|
| 74 |
+
}
|
| 75 |
+
},
|
| 76 |
+
"b": {
|
| 77 |
+
"accepted": true,
|
| 78 |
+
"candidate_anchors": {
|
| 79 |
+
"bounded_worker_pool": 200,
|
| 80 |
+
"close_closed": 0,
|
| 81 |
+
"ctx_cancel_leak": 200,
|
| 82 |
+
"deadlock_unbuffered": 0,
|
| 83 |
+
"lazy_init_race": 0,
|
| 84 |
+
"map_concurrent_write": 0,
|
| 85 |
+
"mutex_copy": 0,
|
| 86 |
+
"race_counter": 120,
|
| 87 |
+
"slice_append_race": 200,
|
| 88 |
+
"waitgroup_missing_done": 200
|
| 89 |
+
},
|
| 90 |
+
"candidate_targets": {
|
| 91 |
+
"bounded_worker_pool": 200,
|
| 92 |
+
"slice_append_race": 200
|
| 93 |
+
},
|
| 94 |
+
"composed_anchors": {
|
| 95 |
+
"bounded_worker_pool": 200,
|
| 96 |
+
"close_closed": 200,
|
| 97 |
+
"ctx_cancel_leak": 80,
|
| 98 |
+
"deadlock_unbuffered": 200,
|
| 99 |
+
"lazy_init_race": 200,
|
| 100 |
+
"map_concurrent_write": 200,
|
| 101 |
+
"mutex_copy": 0,
|
| 102 |
+
"race_counter": 200,
|
| 103 |
+
"slice_append_race": 200,
|
| 104 |
+
"waitgroup_missing_done": 200
|
| 105 |
+
},
|
| 106 |
+
"declared_target": "bounded_worker_pool",
|
| 107 |
+
"incumbent_targets": {
|
| 108 |
+
"bounded_worker_pool": 0,
|
| 109 |
+
"slice_append_race": 200
|
| 110 |
+
},
|
| 111 |
+
"min_target_delta": 200,
|
| 112 |
+
"novelty_bp": 10000,
|
| 113 |
+
"reasons": [],
|
| 114 |
+
"reward": 415,
|
| 115 |
+
"targets": [
|
| 116 |
+
"bounded_worker_pool",
|
| 117 |
+
"slice_append_race"
|
| 118 |
+
],
|
| 119 |
+
"trainer_summary": {
|
| 120 |
+
"adapter_hash": "sha256:aec2ba10d52246192cab66e9dad471f436e688cb6e4a57bb188564f9c35ac164",
|
| 121 |
+
"final_loss_milli": 6,
|
| 122 |
+
"miner_id": "b",
|
| 123 |
+
"rejected_failed_grading": 25,
|
| 124 |
+
"rejected_no_solution": 6,
|
| 125 |
+
"samples_verified": 169,
|
| 126 |
+
"teacher": "deepseek/deepseek-v4-flash",
|
| 127 |
+
"templates": [
|
| 128 |
+
"bounded_worker_pool",
|
| 129 |
+
"slice_append_race"
|
| 130 |
+
],
|
| 131 |
+
"train_steps": 338,
|
| 132 |
+
"wall_min_milli": 41312
|
| 133 |
+
}
|
| 134 |
+
},
|
| 135 |
+
"c": {
|
| 136 |
+
"accepted": true,
|
| 137 |
+
"candidate_anchors": {
|
| 138 |
+
"bounded_worker_pool": 0,
|
| 139 |
+
"close_closed": 0,
|
| 140 |
+
"ctx_cancel_leak": 200,
|
| 141 |
+
"deadlock_unbuffered": 0,
|
| 142 |
+
"lazy_init_race": 0,
|
| 143 |
+
"map_concurrent_write": 0,
|
| 144 |
+
"mutex_copy": 200,
|
| 145 |
+
"race_counter": 0,
|
| 146 |
+
"slice_append_race": 0,
|
| 147 |
+
"waitgroup_missing_done": 40
|
| 148 |
+
},
|
| 149 |
+
"candidate_targets": {
|
| 150 |
+
"ctx_cancel_leak": 200,
|
| 151 |
+
"mutex_copy": 200
|
| 152 |
+
},
|
| 153 |
+
"composed_anchors": {
|
| 154 |
+
"bounded_worker_pool": 0,
|
| 155 |
+
"close_closed": 200,
|
| 156 |
+
"ctx_cancel_leak": 200,
|
| 157 |
+
"deadlock_unbuffered": 200,
|
| 158 |
+
"lazy_init_race": 200,
|
| 159 |
+
"map_concurrent_write": 200,
|
| 160 |
+
"mutex_copy": 200,
|
| 161 |
+
"race_counter": 200,
|
| 162 |
+
"slice_append_race": 200,
|
| 163 |
+
"waitgroup_missing_done": 200
|
| 164 |
+
},
|
| 165 |
+
"declared_target": "mutex_copy",
|
| 166 |
+
"incumbent_targets": {
|
| 167 |
+
"ctx_cancel_leak": 80,
|
| 168 |
+
"mutex_copy": 0
|
| 169 |
+
},
|
| 170 |
+
"min_target_delta": 200,
|
| 171 |
+
"novelty_bp": 6954,
|
| 172 |
+
"reasons": [],
|
| 173 |
+
"reward": 289,
|
| 174 |
+
"targets": [
|
| 175 |
+
"mutex_copy",
|
| 176 |
+
"ctx_cancel_leak"
|
| 177 |
+
],
|
| 178 |
+
"trainer_summary": {
|
| 179 |
+
"adapter_hash": "sha256:aa5d5cf9be7a836ffa0d22600e226c94f9f4dad1439f665962a73184145fa72f",
|
| 180 |
+
"final_loss_milli": 7,
|
| 181 |
+
"miner_id": "c",
|
| 182 |
+
"rejected_failed_grading": 0,
|
| 183 |
+
"rejected_no_solution": 3,
|
| 184 |
+
"samples_verified": 197,
|
| 185 |
+
"teacher": "deepseek/deepseek-v4-flash",
|
| 186 |
+
"templates": [
|
| 187 |
+
"mutex_copy",
|
| 188 |
+
"ctx_cancel_leak"
|
| 189 |
+
],
|
| 190 |
+
"train_steps": 394,
|
| 191 |
+
"wall_min_milli": 33913
|
| 192 |
+
}
|
| 193 |
+
}
|
| 194 |
+
}
|
| 195 |
+
}
|