tor-simt-llama-3-8b-curated-en-vi — git@unknown
Browse files- .gitattributes +6 -0
- README.md +45 -0
- annotate/ar-en/DONE +1 -0
- annotate/ar-en/matrices.jsonl +3 -0
- annotate/ar-en/summary.json +40 -0
- annotate/de-en/DONE +1 -0
- annotate/de-en/matrices.jsonl +3 -0
- annotate/de-en/summary.json +40 -0
- annotate/en-ar/DONE +1 -0
- annotate/en-ar/matrices.jsonl +3 -0
- annotate/en-ar/summary.json +40 -0
- annotate/en-de/DONE +1 -0
- annotate/en-de/matrices.jsonl +3 -0
- annotate/en-de/summary.json +40 -0
- annotate/en-ru/DONE +1 -0
- annotate/en-ru/matrices.jsonl +3 -0
- annotate/en-ru/summary.json +40 -0
- annotate/en-vi/DONE +1 -0
- annotate/en-vi/matrices.jsonl +3 -0
- annotate/en-vi/summary.json +40 -0
- annotate/ru-en/DONE +1 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,9 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
annotate/ar-en/matrices.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
annotate/de-en/matrices.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
annotate/en-ar/matrices.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
annotate/en-de/matrices.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
annotate/en-ru/matrices.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
annotate/en-vi/matrices.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- simultaneous-translation
|
| 4 |
+
- east
|
| 5 |
+
- ot-annotation
|
| 6 |
+
language: ['ar', 'de', 'en', 'ru', 'vi']
|
| 7 |
+
license: mit
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# llama_3_8b_curated
|
| 11 |
+
|
| 12 |
+
Experiment `llama_3_8b_curated` from the *Teacher-Free Read/Write Annotation for Simultaneous
|
| 13 |
+
Machine Translation* project.
|
| 14 |
+
|
| 15 |
+
## Recipe
|
| 16 |
+
|
| 17 |
+
- **Backbone:** `meta-llama/Meta-Llama-3-8B-Instruct`
|
| 18 |
+
- **Corpus:** `curated`
|
| 19 |
+
- **Annotator:** `same_as_backbone`
|
| 20 |
+
- **Criterion:** `ot` (τ = 0.3)
|
| 21 |
+
- **Latencies:** ['low', 'medium', 'high']
|
| 22 |
+
|
| 23 |
+
## Files in this repo
|
| 24 |
+
|
| 25 |
+
- `config.yaml` — the exact experiment config that produced this run.
|
| 26 |
+
- `manifest.json` — git sha, hostname, GPUs, timestamps.
|
| 27 |
+
- `logs/` — per-stage stdout+stderr from `bin/run`.
|
| 28 |
+
- `eval/` — every landed eval-JSON cell (hypothesis, reference, AL, BLEU).
|
| 29 |
+
- `annotate/` — per-direction `matrices.jsonl` (divergence matrices) produced
|
| 30 |
+
by this backbone as annotator.
|
| 31 |
+
- `source_pool.json` — the corpus rows the matrices index into (`{index, source,
|
| 32 |
+
target, src_lang, tgt_lang, latency, source_chunks, target_chunks, _corpus}`).
|
| 33 |
+
Matrices are unjoinable without this file — records only carry `index`.
|
| 34 |
+
- SFT checkpoint (`*.safetensors` + tokenizer).
|
| 35 |
+
|
| 36 |
+
## Reproduce
|
| 37 |
+
|
| 38 |
+
```bash
|
| 39 |
+
git clone https://github.com/dipankarsrirag/simt-tor-26.git
|
| 40 |
+
cd simt-tor-26
|
| 41 |
+
cp .simtrc.example .simtrc # edit paths for your setup
|
| 42 |
+
bin/run configs/01_llama_3_8b_curated.yaml --ngpus N
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
Git commit at time of run: `unknown`
|
annotate/ar-en/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|
annotate/ar-en/matrices.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea9e9fb411e8844640fae96e8429c35e7c1a6f4a364563c0e37cb5a7b1d4766f
|
| 3 |
+
size 146117990
|
annotate/ar-en/summary.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"config": {
|
| 3 |
+
"n_sentences_requested": 50,
|
| 4 |
+
"n_sentences_kept": 9891,
|
| 5 |
+
"n_sentences_annotated": 9891,
|
| 6 |
+
"criterion": "ot",
|
| 7 |
+
"seed": 42,
|
| 8 |
+
"model_path": "/g/data/po67/dipankar/models/Meta-Llama-3-8B-Instruct",
|
| 9 |
+
"max_src_tokens": 80,
|
| 10 |
+
"taus": [
|
| 11 |
+
0.3
|
| 12 |
+
],
|
| 13 |
+
"prompt_mode": "chat",
|
| 14 |
+
"record_entropy": false,
|
| 15 |
+
"indices_file": null,
|
| 16 |
+
"lookahead_k": 0
|
| 17 |
+
},
|
| 18 |
+
"sweep": [
|
| 19 |
+
{
|
| 20 |
+
"tau": 0.3,
|
| 21 |
+
"fire_fraction": 0.9922151450813871,
|
| 22 |
+
"mean_committed_fraction": 0.9318136087865282,
|
| 23 |
+
"chunks_per_sentence_mean_ours": 5.663330300272976,
|
| 24 |
+
"chunks_per_sentence_mean_gpt4": 0.0,
|
| 25 |
+
"pearson_i_over_n_vs_j_over_m": {
|
| 26 |
+
"n_defined": 9688,
|
| 27 |
+
"n_nan": 203,
|
| 28 |
+
"min": -4.950377051351219e-16,
|
| 29 |
+
"median": 0.9197230968323045,
|
| 30 |
+
"max": 1.0
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
],
|
| 34 |
+
"env": {
|
| 35 |
+
"device": "cuda",
|
| 36 |
+
"torch": "2.11.0+cu130",
|
| 37 |
+
"cuda_available": true,
|
| 38 |
+
"git_commit": "22c5889a5f88f1c8cd48728301457d04b01009d6"
|
| 39 |
+
}
|
| 40 |
+
}
|
annotate/de-en/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|
annotate/de-en/matrices.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afb47888d897f0e72e18e6101a93b09de8596a6fa17753ea1798af61ed55f96b
|
| 3 |
+
size 227757323
|
annotate/de-en/summary.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"config": {
|
| 3 |
+
"n_sentences_requested": 50,
|
| 4 |
+
"n_sentences_kept": 9118,
|
| 5 |
+
"n_sentences_annotated": 9118,
|
| 6 |
+
"criterion": "ot",
|
| 7 |
+
"seed": 42,
|
| 8 |
+
"model_path": "/g/data/po67/dipankar/models/Meta-Llama-3-8B-Instruct",
|
| 9 |
+
"max_src_tokens": 80,
|
| 10 |
+
"taus": [
|
| 11 |
+
0.3
|
| 12 |
+
],
|
| 13 |
+
"prompt_mode": "chat",
|
| 14 |
+
"record_entropy": false,
|
| 15 |
+
"indices_file": null,
|
| 16 |
+
"lookahead_k": 0
|
| 17 |
+
},
|
| 18 |
+
"sweep": [
|
| 19 |
+
{
|
| 20 |
+
"tau": 0.3,
|
| 21 |
+
"fire_fraction": 0.9964904584338671,
|
| 22 |
+
"mean_committed_fraction": 0.9775457410513922,
|
| 23 |
+
"chunks_per_sentence_mean_ours": 5.34218030269796,
|
| 24 |
+
"chunks_per_sentence_mean_gpt4": 0.0,
|
| 25 |
+
"pearson_i_over_n_vs_j_over_m": {
|
| 26 |
+
"n_defined": 8902,
|
| 27 |
+
"n_nan": 216,
|
| 28 |
+
"min": -5.255955881681541e-16,
|
| 29 |
+
"median": 0.8871386018907612,
|
| 30 |
+
"max": 0.9919156224708092
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
],
|
| 34 |
+
"env": {
|
| 35 |
+
"device": "cuda",
|
| 36 |
+
"torch": "2.11.0+cu130",
|
| 37 |
+
"cuda_available": true,
|
| 38 |
+
"git_commit": "22c5889a5f88f1c8cd48728301457d04b01009d6"
|
| 39 |
+
}
|
| 40 |
+
}
|
annotate/en-ar/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|
annotate/en-ar/matrices.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d205d10707e0fc0e2ba630346d168bd5f7ea42aba93681e885c47a0581f50338
|
| 3 |
+
size 173250818
|
annotate/en-ar/summary.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"config": {
|
| 3 |
+
"n_sentences_requested": 50,
|
| 4 |
+
"n_sentences_kept": 10000,
|
| 5 |
+
"n_sentences_annotated": 10000,
|
| 6 |
+
"criterion": "ot",
|
| 7 |
+
"seed": 42,
|
| 8 |
+
"model_path": "/g/data/po67/dipankar/models/Meta-Llama-3-8B-Instruct",
|
| 9 |
+
"max_src_tokens": 80,
|
| 10 |
+
"taus": [
|
| 11 |
+
0.3
|
| 12 |
+
],
|
| 13 |
+
"prompt_mode": "chat",
|
| 14 |
+
"record_entropy": false,
|
| 15 |
+
"indices_file": null,
|
| 16 |
+
"lookahead_k": 0
|
| 17 |
+
},
|
| 18 |
+
"sweep": [
|
| 19 |
+
{
|
| 20 |
+
"tau": 0.3,
|
| 21 |
+
"fire_fraction": 0.9947,
|
| 22 |
+
"mean_committed_fraction": 0.9581987467828927,
|
| 23 |
+
"chunks_per_sentence_mean_ours": 6.221,
|
| 24 |
+
"chunks_per_sentence_mean_gpt4": 0.0,
|
| 25 |
+
"pearson_i_over_n_vs_j_over_m": {
|
| 26 |
+
"n_defined": 9762,
|
| 27 |
+
"n_nan": 238,
|
| 28 |
+
"min": -6.873854856488296e-16,
|
| 29 |
+
"median": 0.9169409126628129,
|
| 30 |
+
"max": 1.0
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
],
|
| 34 |
+
"env": {
|
| 35 |
+
"device": "cuda",
|
| 36 |
+
"torch": "2.11.0+cu130",
|
| 37 |
+
"cuda_available": true,
|
| 38 |
+
"git_commit": "22c5889a5f88f1c8cd48728301457d04b01009d6"
|
| 39 |
+
}
|
| 40 |
+
}
|
annotate/en-de/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|
annotate/en-de/matrices.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74523acf2370777230c7f44369ecc8c66c86efe16ff3595fd459ad28af30c48e
|
| 3 |
+
size 331552450
|
annotate/en-de/summary.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"config": {
|
| 3 |
+
"n_sentences_requested": 50,
|
| 4 |
+
"n_sentences_kept": 9936,
|
| 5 |
+
"n_sentences_annotated": 9936,
|
| 6 |
+
"criterion": "ot",
|
| 7 |
+
"seed": 42,
|
| 8 |
+
"model_path": "/g/data/po67/dipankar/models/Meta-Llama-3-8B-Instruct",
|
| 9 |
+
"max_src_tokens": 80,
|
| 10 |
+
"taus": [
|
| 11 |
+
0.3
|
| 12 |
+
],
|
| 13 |
+
"prompt_mode": "chat",
|
| 14 |
+
"record_entropy": false,
|
| 15 |
+
"indices_file": null,
|
| 16 |
+
"lookahead_k": 0
|
| 17 |
+
},
|
| 18 |
+
"sweep": [
|
| 19 |
+
{
|
| 20 |
+
"tau": 0.3,
|
| 21 |
+
"fire_fraction": 0.9992954911433173,
|
| 22 |
+
"mean_committed_fraction": 0.995170410352499,
|
| 23 |
+
"chunks_per_sentence_mean_ours": 6.818941223832528,
|
| 24 |
+
"chunks_per_sentence_mean_gpt4": 0.0,
|
| 25 |
+
"pearson_i_over_n_vs_j_over_m": {
|
| 26 |
+
"n_defined": 9807,
|
| 27 |
+
"n_nan": 129,
|
| 28 |
+
"min": -5.690079886834464e-16,
|
| 29 |
+
"median": 0.9225307913536488,
|
| 30 |
+
"max": 0.9983122664553511
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
],
|
| 34 |
+
"env": {
|
| 35 |
+
"device": "cuda",
|
| 36 |
+
"torch": "2.11.0+cu130",
|
| 37 |
+
"cuda_available": true,
|
| 38 |
+
"git_commit": "22c5889a5f88f1c8cd48728301457d04b01009d6"
|
| 39 |
+
}
|
| 40 |
+
}
|
annotate/en-ru/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|
annotate/en-ru/matrices.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:884fb1aea7b31e9c562e77f60757fd544589ca9ed7204c60d4bbf49baf98d62e
|
| 3 |
+
size 254458426
|
annotate/en-ru/summary.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"config": {
|
| 3 |
+
"n_sentences_requested": 50,
|
| 4 |
+
"n_sentences_kept": 9979,
|
| 5 |
+
"n_sentences_annotated": 9979,
|
| 6 |
+
"criterion": "ot",
|
| 7 |
+
"seed": 42,
|
| 8 |
+
"model_path": "/g/data/po67/dipankar/models/Meta-Llama-3-8B-Instruct",
|
| 9 |
+
"max_src_tokens": 80,
|
| 10 |
+
"taus": [
|
| 11 |
+
0.3
|
| 12 |
+
],
|
| 13 |
+
"prompt_mode": "chat",
|
| 14 |
+
"record_entropy": false,
|
| 15 |
+
"indices_file": null,
|
| 16 |
+
"lookahead_k": 0
|
| 17 |
+
},
|
| 18 |
+
"sweep": [
|
| 19 |
+
{
|
| 20 |
+
"tau": 0.3,
|
| 21 |
+
"fire_fraction": 0.9973945285098708,
|
| 22 |
+
"mean_committed_fraction": 0.9897734159045443,
|
| 23 |
+
"chunks_per_sentence_mean_ours": 7.079466880448943,
|
| 24 |
+
"chunks_per_sentence_mean_gpt4": 0.0,
|
| 25 |
+
"pearson_i_over_n_vs_j_over_m": {
|
| 26 |
+
"n_defined": 9827,
|
| 27 |
+
"n_nan": 152,
|
| 28 |
+
"min": -4.950377051351219e-16,
|
| 29 |
+
"median": 0.9275602036706543,
|
| 30 |
+
"max": 0.9965765844070376
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
],
|
| 34 |
+
"env": {
|
| 35 |
+
"device": "cuda",
|
| 36 |
+
"torch": "2.11.0+cu130",
|
| 37 |
+
"cuda_available": true,
|
| 38 |
+
"git_commit": "22c5889a5f88f1c8cd48728301457d04b01009d6"
|
| 39 |
+
}
|
| 40 |
+
}
|
annotate/en-vi/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|
annotate/en-vi/matrices.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bd347efdee6574b3edea1648ee1077e75724ed00c94a91c9023be587c8053e0
|
| 3 |
+
size 149167907
|
annotate/en-vi/summary.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"config": {
|
| 3 |
+
"n_sentences_requested": 50,
|
| 4 |
+
"n_sentences_kept": 9998,
|
| 5 |
+
"n_sentences_annotated": 9998,
|
| 6 |
+
"criterion": "ot",
|
| 7 |
+
"seed": 42,
|
| 8 |
+
"model_path": "/g/data/po67/dipankar/models/Meta-Llama-3-8B-Instruct",
|
| 9 |
+
"max_src_tokens": 80,
|
| 10 |
+
"taus": [
|
| 11 |
+
0.3
|
| 12 |
+
],
|
| 13 |
+
"prompt_mode": "chat",
|
| 14 |
+
"record_entropy": false,
|
| 15 |
+
"indices_file": null,
|
| 16 |
+
"lookahead_k": 0
|
| 17 |
+
},
|
| 18 |
+
"sweep": [
|
| 19 |
+
{
|
| 20 |
+
"tau": 0.3,
|
| 21 |
+
"fire_fraction": 0.99249849969994,
|
| 22 |
+
"mean_committed_fraction": 0.9686583267700783,
|
| 23 |
+
"chunks_per_sentence_mean_ours": 6.039007801560312,
|
| 24 |
+
"chunks_per_sentence_mean_gpt4": 0.0,
|
| 25 |
+
"pearson_i_over_n_vs_j_over_m": {
|
| 26 |
+
"n_defined": 9689,
|
| 27 |
+
"n_nan": 309,
|
| 28 |
+
"min": -5.255955881681541e-16,
|
| 29 |
+
"median": 0.9258200997725514,
|
| 30 |
+
"max": 1.0
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
],
|
| 34 |
+
"env": {
|
| 35 |
+
"device": "cuda",
|
| 36 |
+
"torch": "2.11.0+cu130",
|
| 37 |
+
"cuda_available": true,
|
| 38 |
+
"git_commit": "22c5889a5f88f1c8cd48728301457d04b01009d6"
|
| 39 |
+
}
|
| 40 |
+
}
|
annotate/ru-en/DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
done
|