Spaces:
Sleeping
Sleeping
Commit ·
6a72222
1
Parent(s): b3382c5
docs: add final submission readme and training logs
Browse filesDocument the environment, training evidence, model links, authors, plots, and remaining finale checklist for hackathon submission review.
Made-with: Cursor
- README.md +84 -13
- assets/loss_curve.png +0 -0
- assets/reward_curve.png +0 -0
- assets/training_history_rl5jygl8.csv +407 -0
- openenv.yaml +1 -1
README.md
CHANGED
|
@@ -13,11 +13,15 @@ license: mit
|
|
| 13 |
|
| 14 |
> OpenEnv Hackathon | Meta × HuggingFace × PyTorch
|
| 15 |
|
| 16 |
-
An RL environment for training **epistemic robustness** in LLMs
|
|
|
|
|
|
|
| 17 |
|
| 18 |
## The Problem
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
| 21 |
|
| 22 |
## The Environment
|
| 23 |
|
|
@@ -25,6 +29,14 @@ LLMs fine-tuned with RLHF increasingly defer to retrieved documents even when th
|
|
| 25 |
- **4 corruption levels**: number mutation → entity swap → semantic inversion → coherent fabrication
|
| 26 |
- **450 QA facts** from Natural Questions + PopQA
|
| 27 |
- **Deterministic reward**, no LLM judge
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
### Reward Signal
|
| 30 |
|
|
@@ -43,13 +55,19 @@ LLMs fine-tuned with RLHF increasingly defer to retrieved documents even when th
|
|
| 43 |
| Agent | Avg Reward | Answer Acc | Corruption Detection |
|
| 44 |
|---|---|---|---|
|
| 45 |
| Random baseline | 0.1302 | ~0% | ~25% |
|
| 46 |
-
| Qwen2-1.5B GRPO |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
|
| 48 |
## Training
|
| 49 |
|
| 50 |
```bash
|
| 51 |
-
#
|
| 52 |
-
|
| 53 |
```
|
| 54 |
|
| 55 |
Training script: [`training/train_grpo.py`](training/train_grpo.py)
|
|
@@ -57,21 +75,60 @@ Notebook: [`training/ContextCorruption_GRPO.ipynb`](training/ContextCorruption_G
|
|
| 57 |
|
| 58 |
## Links
|
| 59 |
|
| 60 |
-
- **HF Space (
|
| 61 |
-
- **
|
| 62 |
-
- **
|
| 63 |
-
- **
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
|
| 65 |
## Quick Start
|
| 66 |
|
| 67 |
```python
|
| 68 |
-
|
| 69 |
|
| 70 |
-
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
| 72 |
print(obs["question"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
```
|
| 74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
## Repo Structure
|
| 76 |
|
| 77 |
```
|
|
@@ -79,9 +136,23 @@ environment/ # OpenEnv-compliant env (actions, reward, env, server)
|
|
| 79 |
data/ # QA loader, corruption functions, document generator
|
| 80 |
training/ # GRPO training script + Colab notebook
|
| 81 |
eval/ # Baseline evaluation
|
| 82 |
-
assets/ # reward_curve.png, loss_curve.png
|
| 83 |
```
|
| 84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
## Citation
|
| 86 |
|
| 87 |
```bibtex
|
|
|
|
| 13 |
|
| 14 |
> OpenEnv Hackathon | Meta × HuggingFace × PyTorch
|
| 15 |
|
| 16 |
+
An OpenEnv RL environment for training **epistemic robustness** in LLMs: agents must answer factual questions while identifying corrupted retrieved documents.
|
| 17 |
+
|
| 18 |
+
**Authors:** Siddh Sanghavi, Aagam Parekh
|
| 19 |
|
| 20 |
## The Problem
|
| 21 |
|
| 22 |
+
RAG systems often make LLMs over-trust retrieved text, even when the retrieved context is corrupted. ContextCorruption-Env turns that failure mode into a trainable task: the model sees a realistic multi-document QA context, some documents contain plausible falsehoods, and the agent must both answer correctly and flag the unreliable sources.
|
| 23 |
+
|
| 24 |
+
This fits **Theme #3.1: World Modeling / Professional Tasks**. The agent is operating in a partially observable information world where source reliability matters, and the reward teaches belief updating instead of blind context copying.
|
| 25 |
|
| 26 |
## The Environment
|
| 27 |
|
|
|
|
| 29 |
- **4 corruption levels**: number mutation → entity swap → semantic inversion → coherent fabrication
|
| 30 |
- **450 QA facts** from Natural Questions + PopQA
|
| 31 |
- **Deterministic reward**, no LLM judge
|
| 32 |
+
- **OpenEnv-compatible HTTP API** hosted on Hugging Face Spaces
|
| 33 |
+
|
| 34 |
+
### Actions
|
| 35 |
+
|
| 36 |
+
- `read_doc`: spend budget to inspect a document
|
| 37 |
+
- `flag_suspicious`: mark a document as corrupted
|
| 38 |
+
- `unflag_doc`: remove a flag
|
| 39 |
+
- `submit_answer`: finish the episode with answer and confidence
|
| 40 |
|
| 41 |
### Reward Signal
|
| 42 |
|
|
|
|
| 55 |
| Agent | Avg Reward | Answer Acc | Corruption Detection |
|
| 56 |
|---|---|---|---|
|
| 57 |
| Random baseline | 0.1302 | ~0% | ~25% |
|
| 58 |
+
| Qwen2-1.5B GRPO | 0.3289 final logged reward | Training run evidence | Training run evidence |
|
| 59 |
+
|
| 60 |
+
The finished WandB run shows reward improving above the random baseline during GRPO training. The pushed checkpoint is also loaded inside the environment Space through `/model/infer` for a live sanity check.
|
| 61 |
+
|
| 62 |
+

|
| 63 |
+
|
| 64 |
+

|
| 65 |
|
| 66 |
## Training
|
| 67 |
|
| 68 |
```bash
|
| 69 |
+
# Training Space / A100
|
| 70 |
+
python -m training.space_runner
|
| 71 |
```
|
| 72 |
|
| 73 |
Training script: [`training/train_grpo.py`](training/train_grpo.py)
|
|
|
|
| 75 |
|
| 76 |
## Links
|
| 77 |
|
| 78 |
+
- **HF Space (environment + model inference):** https://huggingface.co/spaces/Siddh12334/context-corruption-env
|
| 79 |
+
- **Training Space:** https://huggingface.co/spaces/Siddh12334/context-corruption-training
|
| 80 |
+
- **Trained LoRA checkpoint:** https://huggingface.co/Siddh12334/qwen-1.5b-context-corruption
|
| 81 |
+
- **WandB finished run:** https://wandb.ai/siddh230505-animeta/context-corruption-env/runs/rl5jygl8
|
| 82 |
+
- **Training logs/history:** [`assets/training_history_rl5jygl8.csv`](assets/training_history_rl5jygl8.csv)
|
| 83 |
+
- **Colab notebook:** `training/ContextCorruption_GRPO.ipynb`
|
| 84 |
+
- **Mini-blog/video/slides:** TODO before final submission
|
| 85 |
+
|
| 86 |
+
## Training Logs
|
| 87 |
+
|
| 88 |
+
The final GRPO run is logged in WandB at:
|
| 89 |
+
|
| 90 |
+
https://wandb.ai/siddh230505-animeta/context-corruption-env/runs/rl5jygl8
|
| 91 |
+
|
| 92 |
+
For offline review, the exported scalar history is committed at [`assets/training_history_rl5jygl8.csv`](assets/training_history_rl5jygl8.csv). The key plotted metrics are embedded above as `reward_curve.png` and `loss_curve.png`.
|
| 93 |
|
| 94 |
## Quick Start
|
| 95 |
|
| 96 |
```python
|
| 97 |
+
import requests
|
| 98 |
|
| 99 |
+
base = "https://siddh12334-context-corruption-env.hf.space"
|
| 100 |
+
|
| 101 |
+
print(requests.get(base + "/health").json())
|
| 102 |
+
episode = requests.post(base + "/reset", json={}).json()
|
| 103 |
+
obs = episode["observation"]
|
| 104 |
print(obs["question"])
|
| 105 |
+
|
| 106 |
+
action = {
|
| 107 |
+
"action": {
|
| 108 |
+
"action_type": "submit_answer",
|
| 109 |
+
"answer": "unknown",
|
| 110 |
+
"confidence": 0.5,
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
print(requests.post(base + "/step", json=action).json())
|
| 114 |
```
|
| 115 |
|
| 116 |
+
### Optional Model Inference
|
| 117 |
+
|
| 118 |
+
The environment Space also exposes the trained checkpoint for live sanity checks:
|
| 119 |
+
|
| 120 |
+
```python
|
| 121 |
+
response = requests.post(base + "/model/infer", json={"observation": obs}).json()
|
| 122 |
+
print(response["text"])
|
| 123 |
+
```
|
| 124 |
+
|
| 125 |
+
Verified status:
|
| 126 |
+
|
| 127 |
+
- `/health` returns healthy
|
| 128 |
+
- `/reset` returns 8 documents and budget 12
|
| 129 |
+
- `/model/status` reports A100 GPU and the trained checkpoint
|
| 130 |
+
- `/model/infer` lazy-loads `Siddh12334/qwen-1.5b-context-corruption`
|
| 131 |
+
|
| 132 |
## Repo Structure
|
| 133 |
|
| 134 |
```
|
|
|
|
| 136 |
data/ # QA loader, corruption functions, document generator
|
| 137 |
training/ # GRPO training script + Colab notebook
|
| 138 |
eval/ # Baseline evaluation
|
| 139 |
+
assets/ # reward_curve.png, loss_curve.png
|
| 140 |
```
|
| 141 |
|
| 142 |
+
## Final Checklist
|
| 143 |
+
|
| 144 |
+
- [x] OpenEnv environment implemented with `reset`, `step`, `state`, schemas, and reward
|
| 145 |
+
- [x] Environment hosted on Hugging Face Spaces
|
| 146 |
+
- [x] Baseline evaluation saved in `eval/baseline_results.json`
|
| 147 |
+
- [x] GRPO training script using Unsloth / TRL
|
| 148 |
+
- [x] Trained checkpoint pushed to Hugging Face Hub
|
| 149 |
+
- [x] Reward and loss plots committed
|
| 150 |
+
- [x] Training logs linked and exported
|
| 151 |
+
- [x] Environment Space verified healthy after deployment
|
| 152 |
+
- [x] Trained checkpoint verified through `/model/infer`
|
| 153 |
+
- [ ] Add mini-blog, video, or slides link
|
| 154 |
+
- [ ] Replace TODO link above before final submission
|
| 155 |
+
|
| 156 |
## Citation
|
| 157 |
|
| 158 |
```bibtex
|
assets/loss_curve.png
ADDED
|
assets/reward_curve.png
ADDED
|
assets/training_history_rl5jygl8.csv
ADDED
|
@@ -0,0 +1,407 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train/learning_rate,_timestamp,train/clip_ratio/low_min,train/completions/mean_length,train/reward_std,train/clip_ratio/low_mean,_step,train/entropy,train/rewards/format_reward/std,profiling/Time taken: GRPOTrainer.compute_loss,train/rewards/format_reward/mean,train/num_tokens,train/clip_ratio/region_mean,profiling/Time taken: GRPOTrainer._get_per_token_logps_and_entropies,profiling/Time taken: GRPOTrainer._calculate_rewards,completions,profiling/Time taken: GRPOTrainer._prepare_inputs,train/completions/clipped_ratio,train/completions/min_terminated_length,_runtime,train/completions/min_length,train/rewards/correctness_reward/std,train/frac_reward_zero_std,profiling/Time taken: GRPOTrainer.correctness_reward,train/clip_ratio/high_mean,train/loss,train/reward,train/clip_ratio/high_max,profiling/Time taken: GRPOTrainer.transformers.generate,train/completions/max_length,profiling/Time taken: GRPOTrainer.format_reward,train/rewards/correctness_reward/mean,train/completions/max_terminated_length,train/completions/mean_terminated_length,train/epoch,train/global_step,train/grad_norm
|
| 2 |
+
,1777183124.6836643,,,,,0,,,,,,,,,,,,,24.239372526,,,,,,,,,9.474058701001923,,,,,,,0,
|
| 3 |
+
,1777183124.7086182,,,,,1,,,,,,,,,,,,,24.263626754,,,,0.0075676209962693974,,,,,,,,,,,,0,
|
| 4 |
+
,1777183124.7092528,,,,,2,,,,,,,,,,,,,24.263973727,,,,,,,,,,,0.00023286800569621846,,,,,0,
|
| 5 |
+
,1777183124.709757,,,,,3,,,,,,,,0.008946703994297422,,,,,24.264456987,,,,,,,,,,,,,,,,0,
|
| 6 |
+
,1777183124.716991,,,,,4,,,,,,,,,,9.53216429999884,,,24.271786926,,,,,,,,,,,,,,,,0,
|
| 7 |
+
,1777183125.2652612,,,,,5,,,,,,,0.5477417889997014,,,,,,24.820374188,,,,,,,,,,,,,,,,0,
|
| 8 |
+
,1777183125.2831798,,,,,6,,,0.5658061489957618,,,,,,,,,,24.838144639,,,,,,,,,,,,,,,,0,
|
| 9 |
+
,1777183125.9363785,,,,,7,,,,,,,,,,8.325994713231921e-06,,,25.491555253,,,,,,,,,,,,,,,,0,
|
| 10 |
+
,1777183126.0320156,,,,,8,,,,,,,0.09493100599502213,,,,,,25.587024481,,,,,,,,,,,,,,,,0,
|
| 11 |
+
,1777183126.039839,,,,,9,,,0.10285914099949878,,,,,,,,,,25.594794788,,,,,,,,,,,,,,,,0,
|
| 12 |
+
,1777183126.2419596,,,,,10,,,,,,,,,,7.212998752947897e-06,,,25.797046426,,,,,,,,,,,,,,,,0,
|
| 13 |
+
,1777183126.3379562,,,,,11,,,,,,,0.09535090499412036,,,,,,25.892977517,,,,,,,,,,,,,,,,0,
|
| 14 |
+
,1777183126.3456283,,,,,12,,,0.10313212600158295,,,,,,,,,,25.900547675,,,,,,,,,,,,,,,,0,
|
| 15 |
+
,1777183126.5481539,,,,,13,,,,,,,,,,8.237999281845987e-06,,,26.103321331,,,,,,,,,,,,,,,,0,
|
| 16 |
+
,1777183126.6436238,,,,,14,,,,,,,0.09476206199906301,,,,,,26.198601282,,,,,,,,,,,,,,,,0,
|
| 17 |
+
,1777183126.6513402,,,,,15,,,0.10258952399453847,,,,,,,,,,26.206216181,,,,,,,,,,,,,,,,0,
|
| 18 |
+
,1777183134.1832767,,,,,16,,,,,,,,,,,,,33.738385003,,,,,,,,,7.202586516003066,,,,,,,0,
|
| 19 |
+
,1777183134.1952477,,,,,17,,,,,,,,,,,,,33.750128496,,,,0.000350223999703303,,,,,,,,,,,,0,
|
| 20 |
+
,1777183134.1957872,,,,,18,,,,,,,,,,,,,33.750606311,,,,,,,,,,,0.00021420700068119913,,,,,0,
|
| 21 |
+
,1777183134.1961706,,,,,19,,,,,,,,0.001454994002415333,,,,,33.750873356,,,,,,,,,,,,,,,,0,
|
| 22 |
+
,1777183134.1986449,,,,,20,,,,,,,,,,7.2427308639962575,,,33.753443202,,,,,,,,,,,,,,,,0,
|
| 23 |
+
,1777183134.2971902,,,,,21,,,,,,,0.09814324499893701,,,,,,33.852033434,,,,,,,,,,,,,,,,0,
|
| 24 |
+
,1777183134.304898,,,,,22,,,0.10593377400073223,,,,,,,,,,33.859788024,,,,,,,,,,,,,,,,0,
|
| 25 |
+
,1777183134.5021043,,,,,23,,,,,,,,,,7.493996236007661e-06,,,34.057174998,,,,,,,,,,,,,,,,0,
|
| 26 |
+
,1777183134.5970793,,,,,24,,,,,,,0.09435186500195414,,,,,,34.152044352,,,,,,,,,,,,,,,,0,
|
| 27 |
+
,1777183134.6048107,,,,,25,,,0.10218995800096309,,,,,,,,,,34.159646827,,,,,,,,,,,,,,,,0,
|
| 28 |
+
,1777183134.8050203,,,,,26,,,,,,,,,,8.060997060965747e-06,,,34.360165202,,,,,,,,,,,,,,,,0,
|
| 29 |
+
,1777183134.90122,,,,,27,,,,,,,0.09554238599957898,,,,,,34.456251329,,,,,,,,,,,,,,,,0,
|
| 30 |
+
,1777183134.909044,,,,,28,,,0.1034687510036747,,,,,,,,,,34.463959361,,,,,,,,,,,,,,,,0,
|
| 31 |
+
,1777183135.1080484,,,,,29,,,,,,,,,,8.353999874088913e-06,,,34.663186084,,,,,,,,,,,,,,,,0,
|
| 32 |
+
,1777183135.2038076,,,,,30,,,,,,,0.09506521900038933,,,,,,34.758828894,,,,,,,,,,,,,,,,0,
|
| 33 |
+
,1777183135.2116086,,,,,31,,,0.10298571599560091,,,,,,,,,,34.766396765,,,,,,,,,,,,,,,,0,
|
| 34 |
+
,1777183142.7449963,,,,,32,,,,,,,,,,,,,42.300196396,,,,,,,,,7.2993157189994236,,,,,,,0,
|
| 35 |
+
,1777183142.7583656,,,,,33,,,,,,,,,,,,,42.313314215,,,,0.0003848850028589368,,,,,,,,,,,,0,
|
| 36 |
+
,1777183142.7589467,,,,,34,,,,,,,,,,,,,42.313659581,,,,,,,,,,,0.00021939900034340099,,,,,0,
|
| 37 |
+
,1777183142.7592695,,,,,35,,,,,,,,0.0014060020039323717,,,,,42.314021414,,,,,,,,,,,,,,,,0,
|
| 38 |
+
,1777183142.761746,,,,,36,,,,,,,,,,7.3394142469987855,,,42.316692357,,,,,,,,,,,,,,,,0,
|
| 39 |
+
,1777183142.8586745,,,,,37,,,,,,,0.09639890000107698,,,,,,42.413517209,,,,,,,,,,,,,,,,0,
|
| 40 |
+
,1777183142.8662152,,,,,38,,,0.1040407500040601,,,,,,,,,,42.421150893,,,,,,,,,,,,,,,,0,
|
| 41 |
+
,1777183143.0657833,,,,,39,,,,,,,,,,4.854999133385718e-06,,,42.620959884,,,,,,,,,,,,,,,,0,
|
| 42 |
+
,1777183143.1610126,,,,,40,,,,,,,0.09451884000009159,,,,,,42.716129162,,,,,,,,,,,,,,,,0,
|
| 43 |
+
,1777183143.168863,,,,,41,,,0.1024717629989027,,,,,,,,,,42.72381305,,,,,,,,,,,,,,,,0,
|
| 44 |
+
,1777183143.3672938,,,,,42,,,,,,,,,,4.150999302510172e-06,,,42.922273232,,,,,,,,,,,,,,,,0,
|
| 45 |
+
,1777183143.4610548,,,,,43,,,,,,,0.0931971749960212,,,,,,43.015976115,,,,,,,,,,,,,,,,0,
|
| 46 |
+
,1777183143.468864,,,,,44,,,0.10109881200332893,,,,,,,,,,43.023861429,,,,,,,,,,,,,,,,0,
|
| 47 |
+
,1777183143.6669314,,,,,45,,,,,,,,,,4.226996679790318e-06,,,43.221896985,,,,,,,,,,,,,,,,0,
|
| 48 |
+
,1777183143.7614245,,,,,46,,,,,,,0.09393233300215797,,,,,,43.316474643,,,,,,,,,,,,,,,,0,
|
| 49 |
+
,1777183143.7692437,,,,,47,,,0.10184344699518988,,,,,,,,,,43.324146062,,,,,,,,,,,,,,,,0,
|
| 50 |
+
,1777183151.1548915,,,,,48,,,,,,,,,,,,,50.709928016,,,,,,,,,7.146582845998637,,,,,,,0,
|
| 51 |
+
,1777183151.16667,,,,,49,,,,,,,,,,,,,50.721495247,,,,0.0003502870022202842,,,,,,,,,,,,0,
|
| 52 |
+
,1777183151.1671789,,,,,50,,,,,,,,,,,,,50.721917351,,,,,,,,,,,0.00021011800708947703,,,,,0,
|
| 53 |
+
,1777183151.1675162,,,,,51,,,,,,,,0.0013609180023195222,,,,,50.722226444,,,,,,,,,,,,,,,,0,
|
| 54 |
+
,1777183151.1697555,,,,,52,,,,,,,,,,7.185508267997648,,,50.72457733,,,,,,,,,,,,,,,,0,
|
| 55 |
+
,1777183151.265411,,,,,53,,,,,,,0.09523301199806156,,,,,,50.820373371,,,,,,,,,,,,,,,,0,
|
| 56 |
+
,1777183151.2732255,,,,,54,,,0.10311917700164486,,,,,,,,,,50.828120842,,,,,,,,,,,,,,,,0,
|
| 57 |
+
,1777183151.4699378,,,,,55,,,,,,,,,,4.184003046248108e-06,,,51.02504497,,,,,,,,,,,,,,,,0,
|
| 58 |
+
,1777183151.5632432,,,,,56,,,,,,,0.09265417199640069,,,,,,51.118182563,,,,,,,,,,,,,,,,0,
|
| 59 |
+
,1777183151.5710425,,,,,57,,,0.1005487969960086,,,,,,,,,,51.125893741,,,,,,,,,,,,,,,,0,
|
| 60 |
+
,1777183151.7696438,,,,,58,,,,,,,,,,4.411995178088546e-06,,,51.324725305,,,,,,,,,,,,,,,,0,
|
| 61 |
+
,1777183151.8636575,,,,,59,,,,,,,0.09338597799796844,,,,,,51.41851985,,,,,,,,,,,,,,,,0,
|
| 62 |
+
,1777183151.8715146,,,,,60,,,0.10133304099872475,,,,,,,,,,51.426331701,,,,,,,,,,,,,,,,0,
|
| 63 |
+
,1777183152.068337,,,,,61,,,,,,,,,,4.660003469325602e-06,,,51.623484903,,,,,,,,,,,,,,,,0,
|
| 64 |
+
,1777183152.162695,,,,,62,,,,,,,0.09366270899772644,,,,,,51.717586262,,,,,,,,,,,,,,,,0,
|
| 65 |
+
,1777183152.1705678,,,,,63,,,0.10165253200102597,,,,,,,,,,51.725461221,,,,,,,,,,,,,,,,0,
|
| 66 |
+
,1777183158.558834,,,,,64,,,,,,,,,,,,,58.113971819,,,,,,,,,6.157418467999378,,,,,,,0,
|
| 67 |
+
,1777183158.570916,,,,,65,,,,,,,,,,,,,58.125818427,,,,0.0003613740045693703,,,,,,,,,,,,0,
|
| 68 |
+
,1777183158.5714767,,,,,66,,,,,,,,,,,,,58.126311615,,,,,,,,,,,0.00022623800032306463,,,,,0,
|
| 69 |
+
,1777183158.5718799,,,,,67,,,,,,,,0.0014887379948049784,,,,,58.126569234,,,,,,,,,,,,,,,,0,
|
| 70 |
+
,1777183158.5740685,,,,,68,,,,,,,,,,6.196207491004316,,,58.128976294,,,,,,,,,,,,,,,,0,
|
| 71 |
+
,1777183158.6698368,,,,,69,,,,,,,0.09534896900004242,,,,,,58.224874951,,,,,,,,,,,,,,,,0,
|
| 72 |
+
,1777183158.6774924,,,,,70,,,0.1030895320000127,,,,,,,,,,58.232417154,,,,,,,,,,,,,,,,0,
|
| 73 |
+
,1777183158.8723724,,,,,71,,,,,,,,,,4.53300162917003e-06,,,58.427570608,,,,,,,,,,,,,,,,0,
|
| 74 |
+
,1777183158.96695,,,,,72,,,,,,,0.09387986200454179,,,,,,58.522044071,,,,,,,,,,,,,,,,0,
|
| 75 |
+
,1777183158.9747438,,,,,73,,,0.10176870400027838,,,,,,,,,,58.529588375,,,,,,,,,,,,,,,,0,
|
| 76 |
+
,1777183159.1713088,,,,,74,,,,,,,,,,5.191999662201852e-06,,,58.726321631,,,,,,,,,,,,,,,,0,
|
| 77 |
+
,1777183159.266038,,,,,75,,,,,,,0.09412512400012929,,,,,,58.821124095,,,,,,,,,,,,,,,,0,
|
| 78 |
+
,1777183159.2738836,,,,,76,,,0.10207816999900388,,,,,,,,,,58.828744257,,,,,,,,,,,,,,,,0,
|
| 79 |
+
,1777183159.4700835,,,,,77,,,,,,,,,,4.358000296633691e-06,,,59.025206146,,,,,,,,,,,,,,,,0,
|
| 80 |
+
,1777183159.5641894,,,,,78,,,,,,,0.09344891200453276,,,,,,59.119241204,,,,,,,,,,,,,,,,0,
|
| 81 |
+
,1777183159.5719736,,,,,79,,,0.10134957599802874,,,,,,,,,,59.126870323,,,,,,,,,,,,,,,,0,
|
| 82 |
+
,1777183167.0195758,,,,,80,,,,,,,,,,,,,66.57480496,,,,,,,,,7.211367206000432,,,,,,,0,
|
| 83 |
+
,1777183167.0312846,,,,,81,,,,,,,,,,,,,66.586286063,,,,0.0003595199959818274,,,,,,,,,,,,0,
|
| 84 |
+
,1777183167.0319183,,,,,82,,,,,,,,,,,,,66.586716969,,,,,,,,,,,0.00021914500393904746,,,,,0,
|
| 85 |
+
,1777183167.0322206,,,,,83,,,,,,,,0.0013819810046697967,,,,,66.586986653,,,,,,,,,,,,,,,,0,
|
| 86 |
+
,1777183167.0344112,,,,,84,,,,,,,,,,7.248768452001968,,,66.589300408,,,,,,,,,,,,,,,,0,
|
| 87 |
+
,1777183167.1319716,,,,,85,,,,,,,0.09708878800302045,,,,,,66.686975908,,,,,,,,,,,,,,,,0,
|
| 88 |
+
,1777183167.139464,,,,,86,,,0.10470278200227767,,,,,,,,,,66.694297954,,,,,,,,,,,,,,,,0,
|
| 89 |
+
,1777183167.3376136,,,,,87,,,,,,,,,,5.927999154664576e-06,,,66.892795641,,,,,,,,,,,,,,,,0,
|
| 90 |
+
,1777183167.438166,,,,,88,,,,,,,0.0997878279958968,,,,,,66.993264216,,,,,,,,,,,,,,,,0,
|
| 91 |
+
,1777183167.4459188,,,,,89,,,0.10764969199954066,,,,,,,,,,67.000873902,,,,,,,,,,,,,,,,0,
|
| 92 |
+
,1777183167.6456902,,,,,90,,,,,,,,,,4.802997864317149e-06,,,67.200815085,,,,,,,,,,,,,,,,0,
|
| 93 |
+
,1777183167.7428963,,,,,91,,,,,,,0.09654578899790067,,,,,,67.297791014,,,,,,,,,,,,,,,,0,
|
| 94 |
+
,1777183167.750722,,,,,92,,,0.10445868899842026,,,,,,,,,,67.30549837,,,,,,,,,,,,,,,,0,
|
| 95 |
+
,1777183167.9497373,,,,,93,,,,,,,,,,4.241999704390764e-06,,,67.504854313,,,,,,,,,,,,,,,,0,
|
| 96 |
+
,1777183168.0453088,,,,,94,,,,,,,0.09490456099592848,,,,,,67.600315675,,,,,,,,,,,,,,,,0,
|
| 97 |
+
,1777183168.0531518,,,,,95,,,0.10284504299488617,,,,,,,,,,67.607983255,,,,,,,,,,,,,,,,0,
|
| 98 |
+
,1777183174.588731,,,,,96,,,,,,,,,,,,,74.144068291,,,,,,,,,6.30402709300688,,,,,,,0,
|
| 99 |
+
,1777183174.6009097,,,,,97,,,,,,,,,,,,,74.155930732,,,,0.0003402350048418157,,,,,,,,,,,,0,
|
| 100 |
+
,1777183174.601547,,,,,98,,,,,,,,,,,,,74.156349495,,,,,,,,,,,0.00022855299903312698,,,,,0,
|
| 101 |
+
,1777183174.601867,,,,,99,,,,,,,,0.0013972750020911917,,,,,74.156554268,,,,,,,,,,,,,,,,0,
|
| 102 |
+
,1777183174.6042209,,,,,100,,,,,,,,,,6.34237829799531,,,74.158986366,,,,,,,,,,,,,,,,0,
|
| 103 |
+
,1777183174.701552,,,,,101,,,,,,,0.09692893700412242,,,,,,74.256714354,,,,,,,,,,,,,,,,0,
|
| 104 |
+
,1777183174.7094107,,,,,102,,,0.1048792380024679,,,,,,,,,,74.264241031,,,,,,,,,,,,,,,,0,
|
| 105 |
+
,1777183174.9002101,,,,,103,,,,,,,,,,4.187000740785152e-06,,,74.455225446,,,,,,,,,,,,,,,,0,
|
| 106 |
+
,1777183174.9966664,,,,,104,,,,,,,0.09579758700419916,,,,,,74.551567153,,,,,,,,,,,,,,,,0,
|
| 107 |
+
,1777183175.004329,,,,,105,,,0.10358880100102397,,,,,,,,,,74.559107817,,,,,,,,,,,,,,,,0,
|
| 108 |
+
,1777183175.1973944,,,,,106,,,,,,,,,,4.384004569146782e-06,,,74.752399854,,,,,,,,,,,,,,,,0,
|
| 109 |
+
,1777183175.289307,,,,,107,,,,,,,0.09131622499990044,,,,,,74.844212738,,,,,,,,,,,,,,,,0,
|
| 110 |
+
,1777183175.2971497,,,,,108,,,0.09925823700177716,,,,,,,,,,74.851961512,,,,,,,,,,,,,,,,0,
|
| 111 |
+
,1777183175.4886506,,,,,109,,,,,,,,,,4.289002390578389e-06,,,75.043636508,,,,,,,,,,,,,,,,0,
|
| 112 |
+
,1777183175.5840187,,,,,110,,,,,,,0.09475713499705307,,,,,,75.138925882,,,,,,,,,,,,,,,,0,
|
| 113 |
+
,1777183175.5918434,,,,,111,,,0.1026934390029055,,,,,,,,,,75.146739457,,,,,,,,,,,,,,,,0,
|
| 114 |
+
,1777183181.9582632,,,,,112,,,,,,,,,,,,,81.513458932,,,,,,,,,6.129283007001504,,,,,,,0,
|
| 115 |
+
,1777183181.9705918,,,,,113,,,,,,,,,,,,,81.52544215,,,,0.0004342949978308752,,,,,,,,,,,,0,
|
| 116 |
+
,1777183181.9711354,,,,,114,,,,,,,,,,,,,81.525853803,,,,,,,,,,,0.00021592799748759717,,,,,0,
|
| 117 |
+
,1777183181.9714403,,,,,115,,,,,,,,0.0013877460005460307,,,,,81.526135104,,,,,,,,,,,,,,,,0,
|
| 118 |
+
,1777183181.9739063,,,,,116,,,,,,,,,,6.169093199001509,,,81.528693333,,,,,,,,,,,,,,,,0,
|
| 119 |
+
,1777183182.0693529,,,,,117,,,,,,,0.09501082700444385,,,,,,81.624305121,,,,,,,,,,,,,,,,0,
|
| 120 |
+
,1777183182.0769985,,,,,118,,,0.10274790399853373,,,,,,,,,,81.631764618,,,,,,,,,,,,,,,,0,
|
| 121 |
+
,1777183182.268157,,,,,119,,,,,,,,,,4.29799547418952e-06,,,81.823207268,,,,,,,,,,,,,,,,0,
|
| 122 |
+
,1777183182.3640416,,,,,120,,,,,,,0.09516206300031627,,,,,,81.91948113,,,,,,,,,,,,,,,,0,
|
| 123 |
+
,1777183182.371453,,,,,121,,,0.1028344649967039,,,,,,,,,,81.926289315,,,,,,,,,,,,,,,,0,
|
| 124 |
+
,1777183182.5773895,,,,,122,,,,,,,,,,7.32800253899768e-06,,,82.132425913,,,,,,,,,,,,,,,,0,
|
| 125 |
+
,1777183182.6734202,,,,,123,,,,,,,0.09539604900055565,,,,,,82.228462006,,,,,,,,,,,,,,,,0,
|
| 126 |
+
,1777183182.6812344,,,,,124,,,0.10332163800194394,,,,,,,,,,82.236122423,,,,,,,,,,,,,,,,0,
|
| 127 |
+
,1777183182.874328,,,,,125,,,,,,,,,,4.759000148624182e-06,,,82.429418924,,,,,,,,,,,,,,,,0,
|
| 128 |
+
,1777183182.9685383,,,,,126,,,,,,,0.09351208499720087,,,,,,82.523623285,,,,,,,,,,,,,,,,0,
|
| 129 |
+
,1777183182.9762602,,,,,127,,,0.10134935499809217,,,,,,,,,,82.531199486,,,,,,,,,,,,,,,,0,
|
| 130 |
+
,1777183190.431748,,,,,128,,,,,,,,,,,,,89.987221369,,,,,,,,,7.22159557499981,,,,,,,0,
|
| 131 |
+
,1777183190.4445498,,,,,129,,,,,,,,,,,,,89.999550231,,,,0.000492639999720268,,,,,,,,,,,,0,
|
| 132 |
+
,1777183190.4451785,,,,,130,,,,,,,,,,,,,89.999900495,,,,,,,,,,,0.00021943200408713892,,,,,0,
|
| 133 |
+
,1777183190.4454856,,,,,131,,,,,,,,0.0015241830042214133,,,,,90.000211409,,,,,,,,,,,,,,,,0,
|
| 134 |
+
,1777183190.447936,,,,,132,,,,,,,,,,7.2612410570000065,,,90.002834273,,,,,,,,,,,,,,,,0,
|
| 135 |
+
,1777183190.5443275,,,,,133,,,,,,,0.09595811399776721,,,,,,90.099282528,,,,,,,,,,,,,,,,0,
|
| 136 |
+
,1777183190.5520318,,,,,134,,,0.1037475019984413,,,,,,,,,,90.10691362,,,,,,,,,,,,,,,,0,
|
| 137 |
+
,1777183190.7461874,,,,,135,,,,,,,,,,4.31599619332701e-06,,,90.301249951,,,,,,,,,,,,,,,,0,
|
| 138 |
+
,1777183190.8401356,,,,,136,,,,,,,0.09324195800581947,,,,,,90.395142158,,,,,,,,,,,,,,,,0,
|
| 139 |
+
,1777183190.847901,,,,,137,,,0.10111777999554761,,,,,,,,,,90.402813493,,,,,,,,,,,,,,,,0,
|
| 140 |
+
,1777183191.0440688,,,,,138,,,,,,,,,,4.754001565743238e-06,,,90.59921538,,,,,,,,,,,,,,,,0,
|
| 141 |
+
,1777183191.1382847,,,,,139,,,,,,,0.09354920400073752,,,,,,90.693290586,,,,,,,,,,,,,,,,0,
|
| 142 |
+
,1777183191.1460335,,,,,140,,,0.10140507200412685,,,,,,,,,,90.700918713,,,,,,,,,,,,,,,,0,
|
| 143 |
+
,1777183191.337775,,,,,141,,,,,,,,,,4.043999069835991e-06,,,90.89282382,,,,,,,,,,,,,,,,0,
|
| 144 |
+
,1777183191.4316595,,,,,142,,,,,,,0.09329966099903686,,,,,,90.986584456,,,,,,,,,,,,,,,,0,
|
| 145 |
+
,1777183191.4394882,,,,,143,,,0.10122844400029862,,,,,,,,,,90.994242654,,,,,,,,,,,,,,,,0,
|
| 146 |
+
,1777183198.8989563,,,,,144,,,,,,,,,,,,,98.454328717,,,,,,,,,7.225925330996688,,,,,,,0,
|
| 147 |
+
,1777183198.911041,,,,,145,,,,,,,,,,,,,98.465938443,,,,0.0003980089968536049,,,,,,,,,,,,0,
|
| 148 |
+
,1777183198.9116085,,,,,146,,,,,,,,,,,,,98.466373037,,,,,,,,,,,0.000219849003769923,,,,,0,
|
| 149 |
+
,1777183198.9120004,,,,,147,,,,,,,,0.0014996329991845414,,,,,98.466794734,,,,,,,,,,,,,,,,0,
|
| 150 |
+
,1777183198.9142063,,,,,148,,,,,,,,,,7.264354297003592,,,98.469077447,,,,,,,,,,,,,,,,0,
|
| 151 |
+
,1777183199.010217,,,,,149,,,,,,,0.09554560399556067,,,,,,98.56516884,,,,,,,,,,,,,,,,0,
|
| 152 |
+
,1777183199.0179863,,,,,150,,,0.10341167700244114,,,,,,,,,,98.572958307,,,,,,,,,,,,,,,,0,
|
| 153 |
+
,1777183199.2107987,,,,,151,,,,,,,,,,5.089001206215471e-06,,,98.765918456,,,,,,,,,,,,,,,,0,
|
| 154 |
+
,1777183199.3058326,,,,,152,,,,,,,0.09426841299864464,,,,,,98.860849297,,,,,,,,,,,,,,,,0,
|
| 155 |
+
,1777183199.3135643,,,,,153,,,0.10211247000552248,,,,,,,,,,98.868481532,,,,,,,,,,,,,,,,0,
|
| 156 |
+
,1777183199.5103593,,,,,154,,,,,,,,,,4.292000085115433e-06,,,99.065736978,,,,,,,,,,,,,,,,0,
|
| 157 |
+
,1777183199.605326,,,,,155,,,,,,,0.09393877399998019,,,,,,99.160359926,,,,,,,,,,,,,,,,0,
|
| 158 |
+
,1777183199.6129885,,,,,156,,,0.10171839800023008,,,,,,,,,,99.167906044,,,,,,,,,,,,,,,,0,
|
| 159 |
+
,1777183199.8049476,,,,,157,,,,,,,,,,4.025001544505358e-06,,,99.360044874,,,,,,,,,,,,,,,,0,
|
| 160 |
+
,1777183199.8994622,,,,,158,,,,,,,0.09387951999815414,,,,,,99.454374054,,,,,,,,,,,,,,,,0,
|
| 161 |
+
,1777183199.907282,,,,,159,,,0.10180122700694483,,,,,,,,,,99.462062991,,,,,,,,,,,,,,,,0,
|
| 162 |
+
3.2000000000000005e-05,1777183200.1077979,0.0,74.91875,0.1702293824404478,0.0,160,0.948329359292984,0.0922065768390894,,-0.025625001545995472,93207.0,0.0,,,,,0.3625,18.1,99.662774721,18.1,0.327762296795845,0.425,,0.0,0.0425961434841156,0.20932751037180425,0.0,,128.0,,0.23495250269770623,104.0,45.468940353393556,0.4,10,0.24932895600795746
|
| 163 |
+
,1777183200.9712582,,,,,161,,,,,,,,,"{'ncols': 6, 'path': 'media/table/completions_161_737240385bce61d203d6.table.json', 'sha256': '737240385bce61d203d684c4e059de4b1d97ea1c6de89199bb0ec7d1a64b7c00', 'nrows': 16, 'artifact_path': 'wandb-client-artifact://bk81kel5a6rgiklz4jubna8pc9tyr6uiwjbvrdqpctcfj4kz1po3b799hjbrfguotbarr1e8o423d1br71mi7lx41ej43l0piw5aabfx84wh0dunlloxenjfha6z77sk/completions.table.json', '_latest_artifact_path': 'wandb-client-artifact://q056wv5h8uiiwr19kqhrjddve52wi97a57vh3tcwk1c9hrx4r4euinv81jsksm7e4fk0jtat8zhyetqdv4xzrn8xbyilrkepqryn43juwqirr3htt2xr0t8ivv1m49js:latest/completions.table.json', 'size': 40711, '_type': 'table-file', 'log_mode': 'IMMUTABLE'}",,,,100.526187113,,,,,,,,,,,,,,,,10,
|
| 164 |
+
,1777183208.2581832,,,,,162,,,,,,,,,,,,,107.813314191,,,,,,,,,7.250834172999021,,,,,,,10,
|
| 165 |
+
,1777183208.269888,,,,,163,,,,,,,,,,,,,107.824819333,,,,0.00034241899993503466,,,,,,,,,,,,10,
|
| 166 |
+
,1777183208.2704508,,,,,164,,,,,,,,,,,,,107.825154773,,,,,,,,,,,0.0002136269977199845,,,,,10,
|
| 167 |
+
,1777183208.2708325,,,,,165,,,,,,,,0.0014465400017797947,,,,,107.825565782,,,,,,,,,,,,,,,,10,
|
| 168 |
+
,1777183208.2731035,,,,,166,,,,,,,,,,7.291463248002401,,,107.827984283,,,,,,,,,,,,,,,,10,
|
| 169 |
+
,1777183208.3691351,,,,,167,,,,,,,0.09559896899736486,,,,,,107.924094157,,,,,,,,,,,,,,,,10,
|
| 170 |
+
,1777183208.376929,,,,,168,,,0.10347808100050315,,,,,,,,,,107.931694068,,,,,,,,,,,,,,,,10,
|
| 171 |
+
,1777183208.567183,,,,,169,,,,,,,,,,3.954002750106156e-06,,,108.122318625,,,,,,,,,,,,,,,,10,
|
| 172 |
+
,1777183208.6617842,,,,,170,,,,,,,0.09411812399775954,,,,,,108.216807812,,,,,,,,,,,,,,,,10,
|
| 173 |
+
,1777183208.6696744,,,,,171,,,0.10210170999926049,,,,,,,,,,108.224558888,,,,,,,,,,,,,,,,10,
|
| 174 |
+
,1777183208.864803,,,,,172,,,,,,,,,,4.5150009100325406e-06,,,108.419913068,,,,,,,,,,,,,,,,10,
|
| 175 |
+
,1777183208.9588943,,,,,173,,,,,,,0.09346450599696254,,,,,,108.513761782,,,,,,,,,,,,,,,,10,
|
| 176 |
+
,1777183208.9667635,,,,,174,,,0.10143450000032317,,,,,,,,,,108.521525866,,,,,,,,,,,,,,,,10,
|
| 177 |
+
,1777183209.1625898,,,,,175,,,,,,,,,,4.506997356656939e-06,,,108.717672943,,,,,,,,,,,,,,,,10,
|
| 178 |
+
,1777183209.2593343,,,,,176,,,,,,,0.0960678170013125,,,,,,108.814252879,,,,,,,,,,,,,,,,10,
|
| 179 |
+
,1777183209.267135,,,,,177,,,0.10398002299916698,,,,,,,,,,108.821927794,,,,,,,,,,,,,,,,10,
|
| 180 |
+
,1777183216.866934,,,,,178,,,,,,,,,,,,,116.421963358,,,,,,,,,7.362779134993616,,,,,,,10,
|
| 181 |
+
,1777183216.878787,,,,,179,,,,,,,,,,,,,116.433627659,,,,0.0003665080002974719,,,,,,,,,,,,10,
|
| 182 |
+
,1777183216.8793342,,,,,180,,,,,,,,,,,,,116.43404653,,,,,,,,,,,0.00022628100123256445,,,,,10,
|
| 183 |
+
,1777183216.879627,,,,,181,,,,,,,,0.0012862500007031485,,,,,116.434319093,,,,,,,,,,,,,,,,10,
|
| 184 |
+
,1777183216.8817306,,,,,182,,,,,,,,,,7.400270349004131,,,116.436622272,,,,,,,,,,,,,,,,10,
|
| 185 |
+
,1777183216.9793754,,,,,183,,,,,,,0.0972248220059555,,,,,,116.534333461,,,,,,,,,,,,,,,,10,
|
| 186 |
+
,1777183216.9871714,,,,,184,,,0.10510164899460506,,,,,,,,,,116.541979286,,,,,,,,,,,,,,,,10,
|
| 187 |
+
,1777183217.1855276,,,,,185,,,,,,,,,,4.085995897185057e-06,,,116.74063098,,,,,,,,,,,,,,,,10,
|
| 188 |
+
,1777183217.2825375,,,,,186,,,,,,,0.09635943800094537,,,,,,116.8374806,,,,,,,,,,,,,,,,10,
|
| 189 |
+
,1777183217.2903564,,,,,187,,,0.10427761699975235,,,,,,,,,,116.845209931,,,,,,,,,,,,,,,,10,
|
| 190 |
+
,1777183217.4886508,,,,,188,,,,,,,,,,5.3960029617883265e-06,,,117.043650849,,,,,,,,,,,,,,,,10,
|
| 191 |
+
,1777183217.5850983,,,,,189,,,,,,,0.09581184900162043,,,,,,117.140090725,,,,,,,,,,,,,,,,10,
|
| 192 |
+
,1777183217.5928993,,,,,190,,,0.10371186500560725,,,,,,,,,,117.147674758,,,,,,,,,,,,,,,,10,
|
| 193 |
+
,1777183217.7923946,,,,,191,,,,,,,,,,4.647998139262199e-06,,,117.347514699,,,,,,,,,,,,,,,,10,
|
| 194 |
+
,1777183217.8887677,,,,,192,,,,,,,0.09571218299970496,,,,,,117.443758735,,,,,,,,,,,,,,,,10,
|
| 195 |
+
,1777183217.896474,,,,,193,,,0.10352000899729319,,,,,,,,,,117.45130081799999,,,,,,,,,,,,,,,,10,
|
| 196 |
+
,1777183224.4650772,,,,,194,,,,,,,,,,,,,124.02026196,,,,,,,,,6.334342693997314,,,,,,,10,
|
| 197 |
+
,1777183224.4772224,,,,,195,,,,,,,,,,,,,124.032039902,,,,0.0004499400019994937,,,,,,,,,,,,10,
|
| 198 |
+
,1777183224.4777572,,,,,196,,,,,,,,,,,,,124.032475222,,,,,,,,,,,0.0002372819944866933,,,,,10,
|
| 199 |
+
,1777183224.4780748,,,,,197,,,,,,,,0.0014290880062617362,,,,,124.032825834,,,,,,,,,,,,,,,,10,
|
| 200 |
+
,1777183224.4805257,,,,,198,,,,,,,,,,6.372473146002449,,,124.035410149,,,,,,,,,,,,,,,,10,
|
| 201 |
+
,1777183224.5791595,,,,,199,,,,,,,0.0981526079995092,,,,,,124.13401415,,,,,,,,,,,,,,,,10,
|
| 202 |
+
,1777183224.5868933,,,,,200,,,0.10598452100384748,,,,,,,,,,124.141662033,,,,,,,,,,,,,,,,10,
|
| 203 |
+
,1777183224.7848942,,,,,201,,,,,,,,,,4.974004696123302e-06,,,124.340014007,,,,,,,,,,,,,,,,10,
|
| 204 |
+
,1777183224.8816557,,,,,202,,,,,,,0.09604183399642352,,,,,,124.436683577,,,,,,,,,,,,,,,,10,
|
| 205 |
+
,1777183224.8894806,,,,,203,,,0.10397897400252987,,,,,,,,,,124.444375197,,,,,,,,,,,,,,,,10,
|
| 206 |
+
,1777183225.091406,,,,,204,,,,,,,,,,9.73299756878987e-06,,,124.646665317,,,,,,,,,,,,,,,,10,
|
| 207 |
+
,1777183225.1879141,,,,,205,,,,,,,0.0956781580025563,,,,,,124.742865264,,,,,,,,,,,,,,,,10,
|
| 208 |
+
,1777183225.1955347,,,,,206,,,0.10343146000377601,,,,,,,,,,124.750350486,,,,,,,,,,,,,,,,10,
|
| 209 |
+
,1777183225.3902588,,,,,207,,,,,,,,,,4.266003088559955e-06,,,124.945374351,,,,,,,,,,,,,,,,10,
|
| 210 |
+
,1777183225.484334,,,,,208,,,,,,,0.09341682700323872,,,,,,125.039308061,,,,,,,,,,,,,,,,10,
|
| 211 |
+
,1777183225.4922454,,,,,209,,,0.10142316100245807,,,,,,,,,,125.047131332,,,,,,,,,,,,,,,,10,
|
| 212 |
+
,1777183231.991832,,,,,210,,,,,,,,,,,,,131.546961307,,,,,,,,,6.265891053000814,,,,,,,10,
|
| 213 |
+
,1777183232.0036066,,,,,211,,,,,,,,,,,,,131.558425979,,,,0.00042315199971199036,,,,,,,,,,,,10,
|
| 214 |
+
,1777183232.0041182,,,,,212,,,,,,,,,,,,,131.558852266,,,,,,,,,,,0.00022537299810210243,,,,,10,
|
| 215 |
+
,1777183232.0044742,,,,,213,,,,,,,,0.0014473549963440746,,,,,131.559189091,,,,,,,,,,,,,,,,10,
|
| 216 |
+
,1777183232.0068212,,,,,214,,,,,,,,,,6.30318755999906,,,131.561580081,,,,,,,,,,,,,,,,10,
|
| 217 |
+
,1777183232.1014977,,,,,215,,,,,,,0.09430323000560747,,,,,,131.65648884,,,,,,,,,,,,,,,,10,
|
| 218 |
+
,1777183232.1092238,,,,,216,,,0.10211713999888161,,,,,,,,,,131.66410301,,,,,,,,,,,,,,,,10,
|
| 219 |
+
,1777183232.3028922,,,,,217,,,,,,,,,,4.175002686679363e-06,,,131.857814614,,,,,,,,,,,,,,,,10,
|
| 220 |
+
,1777183232.395271,,,,,218,,,,,,,0.0918615169939585,,,,,,131.950131411,,,,,,,,,,,,,,,,10,
|
| 221 |
+
,1777183232.4031389,,,,,219,,,0.0998295129975304,,,,,,,,,,131.957910517,,,,,,,,,,,,,,,,10,
|
| 222 |
+
,1777183232.5969486,,,,,220,,,,,,,,,,4.0099985199049115e-06,,,132.151968681,,,,,,,,,,,,,,,,10,
|
| 223 |
+
,1777183232.6893885,,,,,221,,,,,,,0.0918955060042208,,,,,,132.244372645,,,,,,,,,,,,,,,,10,
|
| 224 |
+
,1777183232.6972268,,,,,222,,,0.09983041600207798,,,,,,,,,,132.252083812,,,,,,,,,,,,,,,,10,
|
| 225 |
+
,1777183232.8937433,,,,,223,,,,,,,,,,4.902998625766486e-06,,,132.448823986,,,,,,,,,,,,,,,,10,
|
| 226 |
+
,1777183232.988919,,,,,224,,,,,,,0.09445039500133134,,,,,,132.543956148,,,,,,,,,,,,,,,,10,
|
| 227 |
+
,1777183232.9967124,,,,,225,,,0.10238584599574097,,,,,,,,,,132.551490961,,,,,,,,,,,,,,,,10,
|
| 228 |
+
,1777183240.4211495,,,,,226,,,,,,,,,,,,,139.976318023,,,,,,,,,7.192866008001147,,,,,,,10,
|
| 229 |
+
,1777183240.4326243,,,,,227,,,,,,,,,,,,,139.987587733,,,,0.0003302350014564581,,,,,,,,,,,,10,
|
| 230 |
+
,1777183240.4332075,,,,,228,,,,,,,,,,,,,139.987892649,,,,,,,,,,,0.00021262099471641704,,,,,10,
|
| 231 |
+
,1777183240.4334972,,,,,229,,,,,,,,0.0012886830008937977,,,,,139.988196552,,,,,,,,,,,,,,,,10,
|
| 232 |
+
,1777183240.4356272,,,,,230,,,,,,,,,,7.230483865001588,,,139.990329931,,,,,,,,,,,,,,,,10,
|
| 233 |
+
,1777183240.5293224,,,,,231,,,,,,,0.09339853600249626,,,,,,140.084230084,,,,,,,,,,,,,,,,10,
|
| 234 |
+
,1777183240.5371282,,,,,232,,,0.1012819270035834,,,,,,,,,,140.091933423,,,,,,,,,,,,,,,,10,
|
| 235 |
+
,1777183240.7296,,,,,233,,,,,,,,,,4.335000994615257e-06,,,140.284660764,,,,,,,,,,,,,,,,10,
|
| 236 |
+
,1777183240.8223097,,,,,234,,,,,,,0.09211848300037673,,,,,,140.377300382,,,,,,,,,,,,,,,,10,
|
| 237 |
+
,1777183240.8301451,,,,,235,,,0.1000502789975144,,,,,,,,,,140.385047362,,,,,,,,,,,,,,,,10,
|
| 238 |
+
,1777183241.029813,,,,,236,,,,,,,,,,4.802997864317149e-06,,,140.584921585,,,,,,,,,,,,,,,,10,
|
| 239 |
+
,1777183241.1269538,,,,,237,,,,,,,0.09651952899730531,,,,,,140.68181714,,,,,,,,,,,,,,,,10,
|
| 240 |
+
,1777183241.134757,,,,,238,,,0.10443367399420822,,,,,,,,,,140.689641592,,,,,,,,,,,,,,,,10,
|
| 241 |
+
,1777183241.334766,,,,,239,,,,,,,,,,3.84699524147436e-06,,,140.889721077,,,,,,,,,,,,,,,,10,
|
| 242 |
+
,1777183241.430916,,,,,240,,,,,,,0.09560321799654048,,,,,,140.985810525,,,,,,,,,,,,,,,,10,
|
| 243 |
+
,1777183241.438694,,,,,241,,,0.10347519499919144,,,,,,,,,,140.993473425,,,,,,,,,,,,,,,,10,
|
| 244 |
+
,1777183248.9760156,,,,,242,,,,,,,,,,,,,148.531124332,,,,,,,,,7.3005634950022795,,,,,,,10,
|
| 245 |
+
,1777183248.9876654,,,,,243,,,,,,,,,,,,,148.542456914,,,,0.0003641160001279786,,,,,,,,,,,,10,
|
| 246 |
+
,1777183248.988172,,,,,244,,,,,,,,,,,,,148.542892246,,,,,,,,,,,0.00022164199617691338,,,,,10,
|
| 247 |
+
,1777183248.988516,,,,,245,,,,,,,,0.0013477910033543594,,,,,148.543220273,,,,,,,,,,,,,,,,10,
|
| 248 |
+
,1777183248.9906917,,,,,246,,,,,,,,,,7.337279368999589,,,148.545464656,,,,,,,,,,,,,,,,10,
|
| 249 |
+
,1777183249.085196,,,,,247,,,,,,,0.09412427600182127,,,,,,148.640172112,,,,,,,,,,,,,,,,10,
|
| 250 |
+
,1777183249.0929832,,,,,248,,,0.10200485899986234,,,,,,,,,,148.64787016,,,,,,,,,,,,,,,,10,
|
| 251 |
+
,1777183249.2856376,,,,,249,,,,,,,,,,4.483001248445362e-06,,,148.840724217,,,,,,,,,,,,,,,,10,
|
| 252 |
+
,1777183249.378763,,,,,250,,,,,,,0.09242372900189366,,,,,,148.93363778,,,,,,,,,,,,,,,,10,
|
| 253 |
+
,1777183249.386574,,,,,251,,,0.10036419599782676,,,,,,,,,,148.941354695,,,,,,,,,,,,,,,,10,
|
| 254 |
+
,1777183249.5788455,,,,,252,,,,,,,,,,4.091001756023616e-06,,,149.133764643,,,,,,,,,,,,,,,,10,
|
| 255 |
+
,1777183249.6707935,,,,,253,,,,,,,0.09143394399870886,,,,,,149.225665487,,,,,,,,,,,,,,,,10,
|
| 256 |
+
,1777183249.678665,,,,,254,,,0.09939295599906472,,,,,,,,,,149.233446612,,,,,,,,,,,,,,,,10,
|
| 257 |
+
,1777183249.8747997,,,,,255,,,,,,,,,,4.90799720864743e-06,,,149.429786476,,,,,,,,,,,,,,,,10,
|
| 258 |
+
,1777183249.9685895,,,,,256,,,,,,,0.09320078999735415,,,,,,149.52358752,,,,,,,,,,,,,,,,10,
|
| 259 |
+
,1777183249.9763005,,,,,257,,,0.10103620999871055,,,,,,,,,,149.531153477,,,,,,,,,,,,,,,,10,
|
| 260 |
+
,1777183256.3616793,,,,,258,,,,,,,,,,,,,155.916769977,,,,,,,,,6.152424334999523,,,,,,,10,
|
| 261 |
+
,1777183256.373391,,,,,259,,,,,,,,,,,,,155.92831706,,,,0.00032537899824092165,,,,,,,,,,,,10,
|
| 262 |
+
,1777183256.3739703,,,,,260,,,,,,,,,,,,,155.928757096,,,,,,,,,,,0.00022515100135933608,,,,,10,
|
| 263 |
+
,1777183256.3742595,,,,,261,,,,,,,,0.0012741870013996959,,,,,155.928952698,,,,,,,,,,,,,,,,10,
|
| 264 |
+
,1777183256.3764808,,,,,262,,,,,,,,,,6.189451056998223,,,155.931288879,,,,,,,,,,,,,,,,10,
|
| 265 |
+
,1777183256.4738448,,,,,263,,,,,,,0.09688293900399003,,,,,,156.028829369,,,,,,,,,,,,,,,,10,
|
| 266 |
+
,1777183256.4816763,,,,,264,,,0.1048670719974325,,,,,,,,,,156.036582541,,,,,,,,,,,,,,,,10,
|
| 267 |
+
,1777183256.6793368,,,,,265,,,,,,,,,,5.297995812725276e-06,,,156.234363571,,,,,,,,,,,,,,,,10,
|
| 268 |
+
,1777183256.777104,,,,,266,,,,,,,0.09713565599668073,,,,,,156.332116129,,,,,,,,,,,,,,,,10,
|
| 269 |
+
,1777183256.784732,,,,,267,,,0.10488153899495956,,,,,,,,,,156.339624933,,,,,,,,,,,,,,,,10,
|
| 270 |
+
,1777183256.9864562,,,,,268,,,,,,,,,,4.960005753673613e-06,,,156.541542471,,,,,,,,,,,,,,,,10,
|
| 271 |
+
,1777183257.0819306,,,,,269,,,,,,,0.09478546099853702,,,,,,156.636971911,,,,,,,,,,,,,,,,10,
|
| 272 |
+
,1777183257.0896354,,,,,270,,,0.10259754499566043,,,,,,,,,,156.644547788,,,,,,,,,,,,,,,,10,
|
| 273 |
+
,1777183257.2889862,,,,,271,,,,,,,,,,4.692999937105924e-06,,,156.84411585,,,,,,,,,,,,,,,,10,
|
| 274 |
+
,1777183257.3839624,,,,,272,,,,,,,0.0943041729988181,,,,,,156.93890883,,,,,,,,,,,,,,,,10,
|
| 275 |
+
,1777183257.3916912,,,,,273,,,0.10214005799934966,,,,,,,,,,156.946695274,,,,,,,,,,,,,,,,10,
|
| 276 |
+
,1777183264.805464,,,,,274,,,,,,,,,,,,,164.360633846,,,,,,,,,7.1782049689936684,,,,,,,10,
|
| 277 |
+
,1777183264.817319,,,,,275,,,,,,,,,,,,,164.372132886,,,,0.00037091000558575615,,,,,,,,,,,,10,
|
| 278 |
+
,1777183264.8178139,,,,,276,,,,,,,,,,,,,164.372495734,,,,,,,,,,,0.00021774899505544454,,,,,10,
|
| 279 |
+
,1777183264.8181498,,,,,277,,,,,,,,0.0013584600019385107,,,,,164.372867983,,,,,,,,,,,,,,,,10,
|
| 280 |
+
,1777183264.8203218,,,,,278,,,,,,,,,,7.215110818004177,,,164.375100421,,,,,,,,,,,,,,,,10,
|
| 281 |
+
,1777183264.9159875,,,,,279,,,,,,,0.09530997999536339,,,,,,164.47123227,,,,,,,,,,,,,,,,10,
|
| 282 |
+
,1777183264.9236786,,,,,280,,,0.10309224500088021,,,,,,,,,,164.478577957,,,,,,,,,,,,,,,,10,
|
| 283 |
+
,1777183265.1164858,,,,,281,,,,,,,,,,4.51300002168864e-06,,,164.671527387,,,,,,,,,,,,,,,,10,
|
| 284 |
+
,1777183265.2097514,,,,,282,,,,,,,0.09263642000587424,,,,,,164.764733554,,,,,,,,,,,,,,,,10,
|
| 285 |
+
,1777183265.217608,,,,,283,,,0.10059420700417832,,,,,,,,,,164.772562183,,,,,,,,,,,,,,,,10,
|
| 286 |
+
,1777183265.4101255,,,,,284,,,,,,,,,,4.640001861844212e-06,,,164.965164942,,,,,,,,,,,,,,,,10,
|
| 287 |
+
,1777183265.5037298,,,,,285,,,,,,,0.09299141299561597,,,,,,165.058829288,,,,,,,,,,,,,,,,10,
|
| 288 |
+
,1777183265.5115101,,,,,286,,,0.10088650900434004,,,,,,,,,,165.066347156,,,,,,,,,,,,,,,,10,
|
| 289 |
+
,1777183265.7061157,,,,,287,,,,,,,,,,4.6670029405504465e-06,,,165.261235183,,,,,,,,,,,,,,,,10,
|
| 290 |
+
,1777183265.8013384,,,,,288,,,,,,,0.09457144100451842,,,,,,165.356333456,,,,,,,,,,,,,,,,10,
|
| 291 |
+
,1777183265.809152,,,,,289,,,0.10251345599681372,,,,,,,,,,165.364043806,,,,,,,,,,,,,,,,10,
|
| 292 |
+
,1777183272.3020844,,,,,290,,,,,,,,,,,,,171.857426923,,,,,,,,,6.262192932998005,,,,,,,10,
|
| 293 |
+
,1777183272.314454,,,,,291,,,,,,,,,,,,,171.869413384,,,,0.0005109799967613071,,,,,,,,,,,,10,
|
| 294 |
+
,1777183272.315123,,,,,292,,,,,,,,,,,,,171.869854444,,,,,,,,,,,0.00024929200299084187,,,,,10,
|
| 295 |
+
,1777183272.315501,,,,,293,,,,,,,,0.0016562759992666543,,,,,171.870232855,,,,,,,,,,,,,,,,10,
|
| 296 |
+
,1777183272.3179412,,,,,294,,,,,,,,,,6.301818061001541,,,171.872825898,,,,,,,,,,,,,,,,10,
|
| 297 |
+
,1777183272.4281719,,,,,295,,,,,,,0.10978305600292515,,,,,,171.983127183,,,,,,,,,,,,,,,,10,
|
| 298 |
+
,1777183272.4357932,,,,,296,,,0.11749174700526055,,,,,,,,,,171.990597023,,,,,,,,,,,,,,,,10,
|
| 299 |
+
,1777183272.6287565,,,,,297,,,,,,,,,,3.988003300037235e-06,,,172.183783456,,,,,,,,,,,,,,,,10,
|
| 300 |
+
,1777183272.7297406,,,,,298,,,,,,,0.10027174399874639,,,,,,172.284737223,,,,,,,,,,,,,,,,10,
|
| 301 |
+
,1777183272.7375925,,,,,299,,,0.10822868199466029,,,,,,,,,,172.292537239,,,,,,,,,,,,,,,,10,
|
| 302 |
+
,1777183272.9371715,,,,,300,,,,,,,,,,5.027999577578157e-06,,,172.492194607,,,,,,,,,,,,,,,,10,
|
| 303 |
+
,1777183273.0354369,,,,,301,,,,,,,0.09764838699629763,,,,,,172.590322211,,,,,,,,,,,,,,,,10,
|
| 304 |
+
,1777183273.04321,,,,,302,,,0.10552991599979578,,,,,,,,,,172.597995679,,,,,,,,,,,,,,,,10,
|
| 305 |
+
,1777183273.2440386,,,,,303,,,,,,,,,,4.4240005081519485e-06,,,172.799068246,,,,,,,,,,,,,,,,10,
|
| 306 |
+
,1777183273.340946,,,,,304,,,,,,,0.09626295400084928,,,,,,172.895866364,,,,,,,,,,,,,,,,10,
|
| 307 |
+
,1777183273.348635,,,,,305,,,0.10406962200067937,,,,,,,,,,172.903522723,,,,,,,,,,,,,,,,10,
|
| 308 |
+
,1777183280.810033,,,,,306,,,,,,,,,,,,,180.365064106,,,,,,,,,7.2258044890040765,,,,,,,10,
|
| 309 |
+
,1777183280.8210442,,,,,307,,,,,,,,,,,,,180.375958147,,,,0.0003489399969112128,,,,,,,,,,,,10,
|
| 310 |
+
,1777183280.8215613,,,,,308,,,,,,,,,,,,,180.376244157,,,,,,,,,,,0.00018920099682873115,,,,,10,
|
| 311 |
+
,1777183280.8218873,,,,,309,,,,,,,,0.0013186969954404049,,,,,180.3765863,,,,,,,,,,,,,,,,10,
|
| 312 |
+
,1777183280.824058,,,,,310,,,,,,,,,,7.261071601998992,,,180.378833984,,,,,,,,,,,,,,,,10,
|
| 313 |
+
,1777183280.918834,,,,,311,,,,,,,0.09447513800114393,,,,,,180.473672762,,,,,,,,,,,,,,,,10,
|
| 314 |
+
,1777183280.9266582,,,,,312,,,0.10236510600225301,,,,,,,,,,180.481452958,,,,,,,,,,,,,,,,10,
|
| 315 |
+
,1777183281.122679,,,,,313,,,,,,,,,,4.576002538669854e-06,,,180.677679545,,,,,,,,,,,,,,,,10,
|
| 316 |
+
,1777183281.2165852,,,,,314,,,,,,,0.09331880199897569,,,,,,180.771454919,,,,,,,,,,,,,,,,10,
|
| 317 |
+
,1777183281.2243261,,,,,315,,,0.10117184900445864,,,,,,,,,,180.779080389,,,,,,,,,,,,,,,,10,
|
| 318 |
+
,1777183281.4150848,,,,,316,,,,,,,,,,4.740002623293549e-06,,,180.970019582,,,,,,,,,,,,,,,,10,
|
| 319 |
+
,1777183281.5099874,,,,,317,,,,,,,0.09434906499518547,,,,,,181.064965536,,,,,,,,,,,,,,,,10,
|
| 320 |
+
,1777183281.517816,,,,,318,,,0.10229611599788768,,,,,,,,,,181.072701089,,,,,,,,,,,,,,,,10,
|
| 321 |
+
,1777183281.7204814,,,,,319,,,,,,,,,,4.960995283909142e-06,,,181.275561821,,,,,,,,,,,,,,,,10,
|
| 322 |
+
,1777183281.8142858,,,,,320,,,,,,,0.09321460699720774,,,,,,181.369281389,,,,,,,,,,,,,,,,10,
|
| 323 |
+
,1777183281.8220584,,,,,321,,,0.10109845499391668,,,,,,,,,,181.376940648,,,,,,,,,,,,,,,,10,
|
| 324 |
+
1.2e-05,1777183282.030784,0.0,80.2875,0.2398833453655243,0.0,322,0.8324460327625275,0.09578460529446602,,-0.018124999944120646,187573.0,0.0,,,,,0.3625,13.2,181.585856452,13.2,0.3412769913673401,0.3,,0.0,0.029665184020996094,0.22642375156283379,0.0,,128.0,,0.24454874843358992,109.7,54.4049036026001,0.8,20,0.4288187325000763
|
| 325 |
+
,1777183282.1610441,,,,,323,,,,,,,,,"{'artifact_path': 'wandb-client-artifact://4sok10qhl49jg5rov76n1plhudlt5f6q92ahuquxhdsh58ck01mzpa101nicmwq0zc1ovh1kw1obkugr7kdq8c2hmp5tzoolr7dx50tebjy5j81iwwejk48oct8dmn1o/completions.table.json', 'nrows': 16, 'log_mode': 'IMMUTABLE', '_latest_artifact_path': 'wandb-client-artifact://o92albckqz91wejpfu4u1ft1i2g5lntkzyoijiq4pn4h3ke45twkmeiwvtatpgcefegbe0nm9aa38hhakm9cldlsfms1m6gvkzqzjqng128yupuvres897nyzf7eke5l:latest/completions.table.json', 'ncols': 6, 'path': 'media/table/completions_323_1a0ae8b7db249c1b289d.table.json', 'sha256': '1a0ae8b7db249c1b289d4941ff935bef8d51ecaf9be77891935b0f0dc2b8661d', 'size': 39014, '_type': 'table-file'}",,,,181.71576847,,,,,,,,,,,,,,,,20,
|
| 326 |
+
,1777183289.4350686,,,,,324,,,,,,,,,,,,,188.990063466,,,,,,,,,7.243795563997992,,,,,,,20,
|
| 327 |
+
,1777183289.4464533,,,,,325,,,,,,,,,,,,,189.00133667,,,,0.000360443998943083,,,,,,,,,,,,20,
|
| 328 |
+
,1777183289.4470272,,,,,326,,,,,,,,,,,,,189.001783389,,,,,,,,,,,0.0002251089972560294,,,,,20,
|
| 329 |
+
,1777183289.4473612,,,,,327,,,,,,,,0.0014203910031937994,,,,,189.002059492,,,,,,,,,,,,,,,,20,
|
| 330 |
+
,1777183289.4494276,,,,,328,,,,,,,,,,7.279737315002421,,,189.004220342,,,,,,,,,,,,,,,,20,
|
| 331 |
+
,1777183289.5473647,,,,,329,,,,,,,0.09751381300156936,,,,,,189.10224645,,,,,,,,,,,,,,,,20,
|
| 332 |
+
,1777183289.5551255,,,,,330,,,0.10536086199863348,,,,,,,,,,189.109902406,,,,,,,,,,,,,,,,20,
|
| 333 |
+
,1777183289.7504923,,,,,331,,,,,,,,,,5.57600287720561e-06,,,189.305611097,,,,,,,,,,,,,,,,20,
|
| 334 |
+
,1777183289.8463283,,,,,332,,,,,,,0.09512922599969897,,,,,,189.401309066,,,,,,,,,,,,,,,,20,
|
| 335 |
+
,1777183289.8540907,,,,,333,,,0.10301133499888238,,,,,,,,,,189.408912192,,,,,,,,,,,,,,,,20,
|
| 336 |
+
,1777183290.0476727,,,,,334,,,,,,,,,,4.966997948940843e-06,,,189.602829971,,,,,,,,,,,,,,,,20,
|
| 337 |
+
,1777183290.144275,,,,,335,,,,,,,0.0958347319974564,,,,,,189.699267764,,,,,,,,,,,,,,,,20,
|
| 338 |
+
,1777183290.1519568,,,,,336,,,0.10363167500327108,,,,,,,,,,189.706882353,,,,,,,,,,,,,,,,20,
|
| 339 |
+
,1777183290.3510673,,,,,337,,,,,,,,,,4.697001713793725e-06,,,189.90611818,,,,,,,,,,,,,,,,20,
|
| 340 |
+
,1777183290.4480772,,,,,338,,,,,,,0.09636535000026925,,,,,,190.00311597,,,,,,,,,,,,,,,,20,
|
| 341 |
+
,1777183290.4558306,,,,,339,,,0.10422661199845606,,,,,,,,,,190.010736776,,,,,,,,,,,,,,,,20,
|
| 342 |
+
,1777183298.0788395,,,,,340,,,,,,,,,,,,,197.634009855,,,,,,,,,7.391510882996954,,,,,,,20,
|
| 343 |
+
,1777183298.0908716,,,,,341,,,,,,,,,,,,,197.64578911,,,,0.0004096120028407313,,,,,,,,,,,,20,
|
| 344 |
+
,1777183298.09148,,,,,342,,,,,,,,,,,,,197.646211531,,,,,,,,,,,0.00023105699801817536,,,,,20,
|
| 345 |
+
,1777183298.0917842,,,,,343,,,,,,,,0.0014066549993003719,,,,,197.646584986,,,,,,,,,,,,,,,,20,
|
| 346 |
+
,1777183298.094067,,,,,344,,,,,,,,,,7.42878683500021,,,197.648992501,,,,,,,,,,,,,,,,20,
|
| 347 |
+
,1777183298.1921318,,,,,345,,,,,,,0.09756966099666897,,,,,,197.747210135,,,,,,,,,,,,,,,,20,
|
| 348 |
+
,1777183298.1998327,,,,,346,,,0.10535728799732169,,,,,,,,,,197.754793618,,,,,,,,,,,,,,,,20,
|
| 349 |
+
,1777183298.3932097,,,,,347,,,,,,,,,,4.554996849037707e-06,,,197.948183289,,,,,,,,,,,,,,,,20,
|
| 350 |
+
,1777183298.4892926,,,,,348,,,,,,,0.09552883799915435,,,,,,198.044218865,,,,,,,,,,,,,,,,20,
|
| 351 |
+
,1777183298.497127,,,,,349,,,0.10346816799574299,,,,,,,,,,198.051970508,,,,,,,,,,,,,,,,20,
|
| 352 |
+
,1777183298.6912665,,,,,350,,,,,,,,,,5.77100581722334e-06,,,198.246271549,,,,,,,,,,,,,,,,20,
|
| 353 |
+
,1777183298.7871823,,,,,351,,,,,,,0.09531520699965768,,,,,,198.342091321,,,,,,,,,,,,,,,,20,
|
| 354 |
+
,1777183298.794881,,,,,352,,,0.10312927000632044,,,,,,,,,,198.349676379,,,,,,,,,,,,,,,,20,
|
| 355 |
+
,1777183298.9894612,,,,,353,,,,,,,,,,5.22199843544513e-06,,,198.544568109,,,,,,,,,,,,,,,,20,
|
| 356 |
+
,1777183299.0849445,,,,,354,,,,,,,0.09485064500040608,,,,,,198.639971384,,,,,,,,,,,,,,,,20,
|
| 357 |
+
,1777183299.0927327,,,,,355,,,0.102746204000141,,,,,,,,,,198.647632523,,,,,,,,,,,,,,,,20,
|
| 358 |
+
,1777183305.6471455,,,,,356,,,,,,,,,,,,,205.202135887,,,,,,,,,6.319748977002746,,,,,,,20,
|
| 359 |
+
,1777183305.6587353,,,,,357,,,,,,,,,,,,,205.213575271,,,,0.0003933389962185174,,,,,,,,,,,,20,
|
| 360 |
+
,1777183305.6592848,,,,,358,,,,,,,,,,,,,205.213998227,,,,,,,,,,,0.00024120099988067523,,,,,20,
|
| 361 |
+
,1777183305.6595783,,,,,359,,,,,,,,0.0013157909997971728,,,,,205.214275965,,,,,,,,,,,,,,,,20,
|
| 362 |
+
,1777183305.6617446,,,,,360,,,,,,,,,,6.357754523996846,,,205.216615683,,,,,,,,,,,,,,,,20,
|
| 363 |
+
,1777183305.7592368,,,,,361,,,,,,,0.09703775299567496,,,,,,205.314145179,,,,,,,,,,,,,,,,20,
|
| 364 |
+
,1777183305.76704,,,,,362,,,0.10495755599549739,,,,,,,,,,205.321819868,,,,,,,,,,,,,,,,20,
|
| 365 |
+
,1777183305.9705513,,,,,363,,,,,,,,,,5.557994882110506e-06,,,205.525600416,,,,,,,,,,,,,,,,20,
|
| 366 |
+
,1777183306.0670664,,,,,364,,,,,,,0.09588083400012692,,,,,,205.622007607,,,,,,,,,,,,,,,,20,
|
| 367 |
+
,1777183306.07481,,,,,365,,,0.10373630200047046,,,,,,,,,,205.629639625,,,,,,,,,,,,,,,,20,
|
| 368 |
+
,1777183306.273279,,,,,366,,,,,,,,,,5.043002602178603e-06,,,205.828343276,,,,,,,,,,,,,,,,20,
|
| 369 |
+
,1777183306.3690608,,,,,367,,,,,,,0.09518756499892334,,,,,,205.924107077,,,,,,,,,,,,,,,,20,
|
| 370 |
+
,1777183306.376862,,,,,368,,,0.10309604200301692,,,,,,,,,,205.931673312,,,,,,,,,,,,,,,,20,
|
| 371 |
+
,1777183306.5802639,,,,,369,,,,,,,,,,4.9910013331100345e-06,,,206.135357219,,,,,,,,,,,,,,,,20,
|
| 372 |
+
,1777183306.6773005,,,,,370,,,,,,,0.09640503900300246,,,,,,206.232318481,,,,,,,,,,,,,,,,20,
|
| 373 |
+
,1777183306.6850252,,,,,371,,,0.10424113199405838,,,,,,,,,,206.24007498,,,,,,,,,,,,,,,,20,
|
| 374 |
+
,1777183313.3953521,,,,,372,,,,,,,,,,,,,212.950348059,,,,,,,,,6.463878607995866,,,,,,,20,
|
| 375 |
+
,1777183313.407325,,,,,373,,,,,,,,,,,,,212.962196391,,,,0.0004504829994402826,,,,,,,,,,,,20,
|
| 376 |
+
,1777183313.4079046,,,,,374,,,,,,,,,,,,,212.962653528,,,,,,,,,,,0.00025327500043204054,,,,,20,
|
| 377 |
+
,1777183313.4083061,,,,,375,,,,,,,,0.0015336459982790984,,,,,212.963082409,,,,,,,,,,,,,,,,20,
|
| 378 |
+
,1777183313.4107409,,,,,376,,,,,,,,,,6.502065106004011,,,212.965494955,,,,,,,,,,,,,,,,20,
|
| 379 |
+
,1777183313.5102525,,,,,377,,,,,,,0.09910855499765603,,,,,,213.065311853,,,,,,,,,,,,,,,,20,
|
| 380 |
+
,1777183313.517765,,,,,378,,,0.10672626599989599,,,,,,,,,,213.072652831,,,,,,,,,,,,,,,,20,
|
| 381 |
+
,1777183313.7104223,,,,,379,,,,,,,,,,4.944995453115553e-06,,,213.265578979,,,,,,,,,,,,,,,,20,
|
| 382 |
+
,1777183313.8067179,,,,,380,,,,,,,0.09553198399953544,,,,,,213.361663644,,,,,,,,,,,,,,,,20,
|
| 383 |
+
,1777183313.8143773,,,,,381,,,0.1033175789998495,,,,,,,,,,213.369347246,,,,,,,,,,,,,,,,20,
|
| 384 |
+
,1777183314.0086954,,,,,382,,,,,,,,,,5.360001523513347e-06,,,213.563769398,,,,,,,,,,,,,,,,20,
|
| 385 |
+
,1777183314.1045854,,,,,383,,,,,,,0.0952233409989276,,,,,,213.659527541,,,,,,,,,,,,,,,,20,
|
| 386 |
+
,1777183314.112331,,,,,384,,,0.10307470300176647,,,,,,,,,,213.667280926,,,,,,,,,,,,,,,,20,
|
| 387 |
+
,1777183314.3078525,,,,,385,,,,,,,,,,5.440000677481294e-06,,,213.862969949,,,,,,,,,,,,,,,,20,
|
| 388 |
+
,1777183314.4120255,,,,,386,,,,,,,0.10349590200348757,,,,,,213.967136212,,,,,,,,,,,,,,,,20,
|
| 389 |
+
,1777183314.4193125,,,,,387,,,0.11092088799341582,,,,,,,,,,213.974131503,,,,,,,,,,,,,,,,20,
|
| 390 |
+
,1777183321.463293,,,,,388,,,,,,,,,,,,,221.01845131,,,,,,,,,6.807142450998072,,,,,,,20,
|
| 391 |
+
,1777183321.4769466,,,,,389,,,,,,,,,,,,,221.031824793,,,,0.0005707649979740381,,,,,,,,,,,,20,
|
| 392 |
+
,1777183321.4775672,,,,,390,,,,,,,,,,,,,221.03231465,,,,,,,,,,,0.00025126300170086324,,,,,20,
|
| 393 |
+
,1777183321.4779167,,,,,391,,,,,,,,0.0016571750020375475,,,,,221.032764887,,,,,,,,,,,,,,,,20,
|
| 394 |
+
,1777183321.48051,,,,,392,,,,,,,,,,6.84672918599972,,,221.035363192,,,,,,,,,,,,,,,,20,
|
| 395 |
+
,1777183321.5835125,,,,,393,,,,,,,0.10248881800362142,,,,,,221.138479977,,,,,,,,,,,,,,,,20,
|
| 396 |
+
,1777183321.5911014,,,,,394,,,0.1101942390014301,,,,,,,,,,221.145977488,,,,,,,,,,,,,,,,20,
|
| 397 |
+
,1777183321.792637,,,,,395,,,,,,,,,,5.160000000614673e-06,,,221.347820063,,,,,,,,,,,,,,,,20,
|
| 398 |
+
,1777183321.892462,,,,,396,,,,,,,0.09903401699557435,,,,,,221.44757326,,,,,,,,,,,,,,,,20,
|
| 399 |
+
,1777183321.9001815,,,,,397,,,0.10686839599657105,,,,,,,,,,221.455133758,,,,,,,,,,,,,,,,20,
|
| 400 |
+
,1777183322.1003776,,,,,398,,,,,,,,,,5.343994416762143e-06,,,221.65552783,,,,,,,,,,,,,,,,20,
|
| 401 |
+
,1777183322.2009344,,,,,399,,,,,,,0.09979619800287765,,,,,,221.756007353,,,,,,,,,,,,,,,,20,
|
| 402 |
+
,1777183322.2086108,,,,,400,,,0.1075955950000207,,,,,,,,,,221.763470739,,,,,,,,,,,,,,,,20,
|
| 403 |
+
,1777183322.4088025,,,,,401,,,,,,,,,,5.207002686802298e-06,,,221.963935845,,,,,,,,,,,,,,,,20,
|
| 404 |
+
,1777183322.5157354,,,,,402,,,,,,,0.10612661599589046,,,,,,222.070765302,,,,,,,,,,,,,,,,20,
|
| 405 |
+
,1777183322.5234149,,,,,403,,,0.11395515999902273,,,,,,,,,,222.078269555,,,,,,,,,,,,,,,,20,
|
| 406 |
+
,1777183323.089015,0.0,74.7375,0.3805753469467163,0.0,404,0.8379108384251595,0.10160200744867325,,-0.001249999925494194,234424.0,0.0,,,,,0.3,16.0,222.643833598,16.0,0.37369300723075866,0.1,,0.0,,0.3288762629032135,0.0,,128.0,,0.3301262468099594,97.8,52.54961166381836,1.0,25,
|
| 407 |
+
,1777183323.2157443,,,,,405,,,,,,,,,"{'ncols': 6, 'path': 'media/table/completions_405_eedfca8bb0ffab71546d.table.json', 'sha256': 'eedfca8bb0ffab71546d7536e5eeae160629c9e50de4f6228dd41a79a5f16c71', '_type': 'table-file', 'nrows': 16, 'log_mode': 'IMMUTABLE', 'artifact_path': 'wandb-client-artifact://kedklp517syusxltpe3o51bpr2djhxojbtttssgeafudb5z8to45ba79h3y1xuwys6eu4ya92cxi1gq7l8c1y0jq9ej8jrrztkw70e6krmt18rmchs7famjgb5gjsxa1/completions.table.json', '_latest_artifact_path': 'wandb-client-artifact://67xhq5w1f4p57s5y09oq74bnlw5rc008mojcvc1mblmillv66nxu2coj8x595vkbne6qka9ci6rczqz66ysa2ivbnugr3vnn4igcpwuvuhvs6x1uiilekleed0r7ohim:latest/completions.table.json', 'size': 42594}",,,,222.77050818,,,,,,,,,,,,,,,,25,
|
openenv.yaml
CHANGED
|
@@ -4,7 +4,7 @@ description: >
|
|
| 4 |
OpenEnv environment for training epistemic robustness in LLMs.
|
| 5 |
Agents identify correct answers and flag corrupted documents
|
| 6 |
in a multi-doc QA setting with verifiable, objective rewards.
|
| 7 |
-
author: "
|
| 8 |
license: MIT
|
| 9 |
|
| 10 |
environment:
|
|
|
|
| 4 |
OpenEnv environment for training epistemic robustness in LLMs.
|
| 5 |
Agents identify correct answers and flag corrupted documents
|
| 6 |
in a multi-doc QA setting with verifiable, objective rewards.
|
| 7 |
+
author: "Siddh Sanghavi, Aagam Parekh"
|
| 8 |
license: MIT
|
| 9 |
|
| 10 |
environment:
|