diff --git a/README.md b/README.md index fc6e3e850a8ebf32f48f220fc22bf8f7aacd6283..02fe064581e1f6c88c08b513192af237c06d2a7f 100644 --- a/README.md +++ b/README.md @@ -34,68 +34,116 @@ train-eval-index: # Dataset Card for SYN-1B -Repository: https://github.com/QuixiAI/AUM - ## Dataset Summary -SYN-1B is the AUM synthetic task corpus generated from the local `syn-1b-v1.3` -specification. The Parquet files expose one decoded synthetic instance per row in -the `text` column. The original packed `uint16` token shards, sidecars, and QA -manifests remain in this directory for exact token-level training and audit use. - -The Hugging Face `validation` split corresponds to the SYN generator's `eval` -split. F5 appears only in that held-out eval/validation split. - -## Purpose - -SYN-1B exists to test the central claim in AUM-Ø: a model should separate -evidence from interpretation, then spend extra computation only when revising -the interpretation is useful. AUM-Ø maintains an evidence state that records -what has been observed and a compact hypothesis register that tracks how that -evidence should currently be interpreted. The synthetic corpus provides -programmatic tasks with known latent hypotheses so the training and evaluation -harness can ask whether the register actually tracks the active rule, whether -silent revision helps at sparse interpretive events, and whether pressure is -allocated where counterfactual benefit predicts it will pay. - -As described in `AUM-Ø.md`, the broader pretraining recipe mixes filtered -web/education text, code, and a 5% stream of synthetic structured tasks. That -synthetic fraction is not filler: the sigma-decode probe, recency falsifier, -flat-null control, and evidence-age measurements are computed on it. SYN-1B is -the corpus-scale version of those tasks in the real 49,152-token SmolLM2 BPE -space, as specified in `SYN-1B.md`. - -The task families are designed to isolate different parts of the mechanism: +SYN-1B is a 1.04B-token synthetic language-modeling corpus of rule-governed +text streams. Each row is a decoded instance in which the text establishes +facts, mappings, bindings, or simple generative rules; later spans may revise +those rules, swap bindings, delay a query over long filler, or present a null +control with event-like surface text that should not change the answer. + +The dataset is intended as structured pretraining data, not as a supervised +instruction dataset. It uses ordinary next-token prediction, but the examples +are generated from known latent state machines. That makes it useful when a +researcher wants training data where long-context behavior, variable binding, +belief revision, recency, distractor robustness, and held-out transfer can be +measured exactly rather than inferred from natural text. + +The [data/](data/) Parquet files expose one decoded synthetic instance per row +in the `text` column. The original packed `uint16` token shards, sidecars, and +QA manifests are kept under [raw/](raw/) for exact token-level training and +audit use. The Hugging Face `validation` split corresponds to the SYN +generator's `eval` split. F5 appears only in that held-out eval/validation +split. + +## Why Pretrain With It? + +SYN-1B gives language models repeated practice on behaviors that are important +in real use but sparse, ambiguous, or hard to label in web text: + +- Tracking a rule or binding across many intervening tokens. +- Updating an answer after a correction instead of copying the most recent + local surface pattern. +- Preserving unchanged facts when only part of a rule changes. +- Distinguishing real state-changing events from plausible-looking distractors. +- Answering from evidence that may be hundreds or thousands of tokens old. +- Transferring the same abstract update pattern to a held-out surface format. + +For general pretraining, SYN-1B can be mixed as a small synthetic fraction +alongside web, education, code, or domain corpora to add dense, auditable +examples of state tracking and revision. It is especially relevant for work on +long-context models, recurrent or memory-augmented models, retrieval-free +reasoning, continual belief updating, and curricula that target systematic +generalization. + +## Other Applications + +Beyond pretraining, SYN-1B can be used as: + +- A controlled benchmark for long-context recall and rule updating. +- A source of probing data for whether hidden states encode active mappings, + bindings, recency, and corrected values. +- A stress test for distractor sensitivity and surface-marker shortcuts. +- A data generator baseline for synthetic-curriculum, data-mixture, and + scaling-law studies. +- A reproducible corpus for mechanistic interpretability, because the raw + sidecars under [raw/sidecars/](raw/sidecars/) identify events, writes, query + positions, answer positions, evidence spans, composition depth, controlled gap + lengths, and held-out families. + +## Limitations + +SYN-1B is synthetic by design. It should not be treated as a substitute for +natural-language pretraining data, an instruction-following dataset, or a +factuality benchmark. The task families cover a controlled set of rule-updating +and long-context patterns, so improvements on SYN-1B should be checked against +naturalistic and out-of-distribution evaluations before making broad claims. + +The decoded Parquet view is convenient for Hugging Face tooling, while the +packed token shards and sidecars in [raw/](raw/) are the reference artifacts for +exact token-level audits and reproduction. Users who need full supervision +metadata should read the sidecars rather than relying only on the compact +Parquet columns. + +## Task Families + +The task families isolate different forms of state tracking: | Family | Role | | --- | --- | | F1 branch reversal | A rule holds, then an event changes the active mapping. | | F2 binding swap | Entity-to-attribute bindings are corrected by swaps rather than a single surface marker. | | F3 delayed correction / recall | Old evidence and controlled evidence age test whether stored evidence survives and can be reinterpreted. | -| F4 flat null | No interpretive event occurs, so pressure and silent depth should stay near zero. | -| F5 modular-stream switch | Eval-only transfer task with no training exposure, used to test whether probes generalize beyond memorized formats. | +| F4 flat null | No interpretive event occurs; event-like distractors test false-positive rule updates. | +| F5 modular-stream switch | Eval-only transfer task with no training exposure, used to test transfer beyond memorized surface formats. | + +## Source and Reproducibility -This local Hugging Face view is a convenience format. The raw packed token -stream and sidecars are the authoritative artifact for mechanism probes, -token-level QA, and exact reproduction of the SYN-1B build. +The generator, QA suite, and build specification are available in the +[source repository](https://github.com/quixiai/aum). See +[SYN-1B.md](https://github.com/quixiai/aum/blob/main/SYN-1B.md) for the corpus +specification. ## How to Load ```python from datasets import load_dataset -ds = load_dataset("/home/hotaisle/datasets/SYN-1B") +ds = load_dataset("QuixiAI/SYN-1B") ``` ## Dataset Stats -| Split | Rows | Synthetic instance tokens | +| Split | Rows | Synthetic instance tokens in raw build | | --- | ---: | ---: | -| `train` | 4,046,772 | 1,000,002,097 | -| `validation` | 178,463 | 40,002,369 | -| `total` | 4,225,235 | 1,040,004,466 | +| `train` | 4,063,978 | 1,000,001,463 | +| `validation` | 178,863 | 40,002,882 | +| `total` | 4,242,841 | 1,040,004,345 | -Tokenizer: `HuggingFaceTB/SmolLM2-135M` +The Hugging Face dataset is decoded text. Consumers can tokenize the `text` +column with any tokenizer. The token counts above refer to the reference raw +build in [raw/](raw/), which was generated and QA-audited with the +`HuggingFaceTB/SmolLM2-135M` tokenizer. ## Data Schema @@ -106,7 +154,7 @@ Columns: - `token_len`, `task_token_count`, `filler_token_count`, `controlled_gap_tokens`, `composition_depth`, `num_queries`: compact per-instance metadata. - `shard`, `window_index`, `start_offset`, `token_hash`: join keys back to the - packed raw token stream and sidecar records. + packed raw token stream and sidecar records under [raw/](raw/). ## Licensing Information diff --git a/data/train-00000.parquet b/data/train-00000.parquet index 87688770105e5eddc1b08d776acde97a1fde4d00..ed3157a2c71a6b82eac1327876bd093622857bcb 100644 --- a/data/train-00000.parquet +++ b/data/train-00000.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4cbd9a9528f39651613c7f81a771c84c7d17a29988e8ee6c3e8324fa1dff5429 -size 39597419 +oid sha256:9f5f861aea629472a3a1e8449b498dec20c6258d8a5d70f28b6a2413424fb3ec +size 39407494 diff --git a/data/train-00001.parquet b/data/train-00001.parquet index 6918117b2aa74582abf71f66ba58196d099da0e6..e99a3e8e259504ef523922d3238edbcfb1252e82 100644 --- a/data/train-00001.parquet +++ b/data/train-00001.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9309195397fa3ae8a835fb3598ca4ca0251d5cb7e0cf62052098cdf9e9a6d199 -size 39596767 +oid sha256:6e8d3491e9901c04e3fcc94a57aa2330731bb7392c0d67b46fddc68eb1c15740 +size 39424191 diff --git a/data/train-00002.parquet b/data/train-00002.parquet index 1097f768ae0611585e9efb5edeaee44d175a9fd3..3dd30203698a87fd50c8fa1d7c88a27677d192fe 100644 --- a/data/train-00002.parquet +++ b/data/train-00002.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:972282ee6451f14a9d783bbf592384797ce9263d4c5cf840ff288460bee76e06 -size 39649047 +oid sha256:e3466483f9b0fe6c0d5ab230ef6ec01487e219d9274befc42c4c238832a28750 +size 39471262 diff --git a/data/train-00003.parquet b/data/train-00003.parquet index 202c83be8723a0a3d2b09c4ff911104706572ba0..9562f321ff9a72a9a7e61cadedfa82798494ce75 100644 --- a/data/train-00003.parquet +++ b/data/train-00003.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84cb67910bcddb7162b7c4570d38a34aabff8ae995dfce0ffe6d74def1f2ca05 -size 39659867 +oid sha256:ba1d46b807c58d13becf76c9ad09830e7d5bfda139ecf833be7cdd9b9ba2f0ae +size 39475026 diff --git a/data/train-00004.parquet b/data/train-00004.parquet index 4f344b6459a4e43de4dc11152464335a8d239322..0b1db6f60315b4cc34512e5ba6ee852aafe5fa15 100644 --- a/data/train-00004.parquet +++ b/data/train-00004.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3067a51e99ede7ea3a37286b0b110ab6d391da48391b189bb57521db16c4b944 -size 39634561 +oid sha256:df2451e72c92ca2b971ad7f3cd1cb4d680a7437ad6c3111df83a52ae62d69330 +size 39469555 diff --git a/data/train-00005.parquet b/data/train-00005.parquet index b5d455cc3fe8d8530718e2916d383df648b4aa51..5231af4a58417113b6b4d8b3a2859540ae3d2c09 100644 --- a/data/train-00005.parquet +++ b/data/train-00005.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a3d4fd1453852140c09f5a929a11cc235e60073203f1ed42012bfe007ef56cd -size 39650535 +oid sha256:d52c1eec5c7e4e71666c5dccb4d5398c087d21cbfa6b2499607aa5911ae8f769 +size 39470148 diff --git a/data/train-00006.parquet b/data/train-00006.parquet index 8f9405f285f9c5b2cf88d94f1dec087a531b7d91..f00473a0588636cdc7327ab4a9c6227634332787 100644 --- a/data/train-00006.parquet +++ b/data/train-00006.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8508d1a612dbe397ca0dcc30a55bfb91cbad9cb74d8adcfbb488a23c47f45104 -size 39658823 +oid sha256:b94fc3834965b303160023b12885c42c650c2b86f65cba90ccdc10b176b31628 +size 39467209 diff --git a/data/train-00007.parquet b/data/train-00007.parquet index 359bf3d66b1e9ee2b2338dfbdce310650828639e..90075bf4f79de6b37eb8783ee72c39b40f35e03a 100644 --- a/data/train-00007.parquet +++ b/data/train-00007.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6be4f823a83ab26ef5cb286e4edb9eef004a920015faad56e9d5479f2be38806 -size 39645195 +oid sha256:c8b949f347f6ca879784683c861083085422af88de7b1c5d615c0eb08f1b94aa +size 39479841 diff --git a/data/train-00008.parquet b/data/train-00008.parquet index 9c18587e7f9b70807dac0942d872319201ed3b1c..6832342a1ccfa0557c303314e6fafd9915b4bb05 100644 --- a/data/train-00008.parquet +++ b/data/train-00008.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8f3f000bcfd6e2a80fb9674880a08319972cce34b996d88b63934ad362b173d -size 39665613 +oid sha256:c6533c950fe5043671a2662ae95fc322bceb6096eedb3ea428263d2be7669911 +size 39485988 diff --git a/data/train-00009.parquet b/data/train-00009.parquet index a57354101f0d5c7789500e9981d3f6a614208126..6b30bb3fc56038e4cbe7877d1d0c6952d41fab77 100644 --- a/data/train-00009.parquet +++ b/data/train-00009.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80870575189052fb8aa125fe0eee4ab54a2eeddafc0a84ec6edbb64ebf1b1338 -size 39639326 +oid sha256:af1dfdea264979f6be5c4e8996379830f4f43030ac6950d16eecf3cd8ee909a6 +size 39496118 diff --git a/data/train-00010.parquet b/data/train-00010.parquet index a6feb4e379c89e4da80a1ebe23b414eb0281dbfd..e104d5a92898bc63211a298aef40d3613f8d3428 100644 --- a/data/train-00010.parquet +++ b/data/train-00010.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41984d66aebb5212d219c74055a3468078f358abc9ea8920518d23f461449e7b -size 39613816 +oid sha256:fdb89b731a18a3c26bb3e76eb77ae96c8bb01335b59777c50f2bb697c8057761 +size 39450168 diff --git a/data/train-00011.parquet b/data/train-00011.parquet index 0688b9107a80946f4e8e6082913f78bb0dd6d92c..c002b4574b484fcefdb488dc2e7d7620ca846a41 100644 --- a/data/train-00011.parquet +++ b/data/train-00011.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cbf21aa74579f3e2420eb7d455277cee3c9dd0b82d322f18e9c47a25fa592df9 -size 39649977 +oid sha256:212177150cdf2fce84d6f2859b24f7d78bc93f2dad5c4e0023fe6b55dd8f1469 +size 39435106 diff --git a/data/train-00012.parquet b/data/train-00012.parquet index 702a02f09377fd02fbedb92802ec0128754e6862..2a85cd4dd83e58bce4b180128492dc95754f9106 100644 --- a/data/train-00012.parquet +++ b/data/train-00012.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31a2b9ad3726775e03652f57ddc15bd7d5f3586cfd8770cce5096804a2aa12ef -size 39658728 +oid sha256:acfbc9ea56595a1d0095220ee480d78db6c31b94d18de73c5cc6cbc69769efeb +size 39456334 diff --git a/data/train-00013.parquet b/data/train-00013.parquet index b95043025f7aa2f2d18d68c12ca3d8516fab2efb..03f591b57a3e3a4430e8fb72fe4d3d2e9aaf062e 100644 --- a/data/train-00013.parquet +++ b/data/train-00013.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34067c20d23c4c8a91d3bbafe10154030f90c254bd40eeed89c138fd144bca8a -size 39658160 +oid sha256:b1cfb98d2a1f714b31b4f22a1212278c53b9a314217f7b1008f1f3ee4781b657 +size 39471831 diff --git a/data/train-00014.parquet b/data/train-00014.parquet index 4443806a84871200009ba506c66305d5a3a8a29f..842ecb5eaded0b6437b21f5f05124065742e7138 100644 --- a/data/train-00014.parquet +++ b/data/train-00014.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80cb3e9bab53fb820a856f3a435b073922a385df872db1dd54ff178ad7bcbb24 -size 39607038 +oid sha256:6baa5a462ea2bb515613af9e3cccf1469a339d51dc0a47984814e29b6c9df690 +size 39440030 diff --git a/data/train-00015.parquet b/data/train-00015.parquet index afc88cf5d5f95ec1e001536e5549ce8a21007726..ce0f69a0453538444839b8fa33ad824f28eff4ec 100644 --- a/data/train-00015.parquet +++ b/data/train-00015.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c22ccf281a3d1e3c18d256309b4078e6d7056d543783b418a5511f38b05918b3 -size 39625244 +oid sha256:02a8577e60e2c34c8bdd52bd95ffe9fbc08be3e059b1fe9894e6e2025756cf16 +size 39427455 diff --git a/data/train-00016.parquet b/data/train-00016.parquet index 3f988ab05f3b295a3dca1fbe894bd2be3306bcc6..64921c1828e2dd81bfd889931c417918155ebcac 100644 --- a/data/train-00016.parquet +++ b/data/train-00016.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1876393bcd1dcfe5acfcabf0e680c2fd7dc8a603584912ff85719beaab7704e9 -size 39617892 +oid sha256:370ba01cc13a7ef23f1bf4810a7bf494857618aeeeb7c803a6582c5831e154b4 +size 39469603 diff --git a/data/train-00017.parquet b/data/train-00017.parquet index d9abe77f2a467c3db82c6efe65552dd93b1a0eee..288352937ba2efe7b964cd00cfd7ea4c90c97f72 100644 --- a/data/train-00017.parquet +++ b/data/train-00017.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:948840318f3ef45b6f41bda0cdfc80f0680ab0e5648dca07fda65f0190f1fd53 -size 39643888 +oid sha256:a90dc33eca8d0258f76393eff359c0419a220a1a0faeaf4c7463a5de065306b9 +size 39456990 diff --git a/data/train-00018.parquet b/data/train-00018.parquet index 3706ba6ba4484ee522d03a04d7983d5f4ead9520..c12f4b280bbced8e37229c20545800a11d8710e2 100644 --- a/data/train-00018.parquet +++ b/data/train-00018.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01b182d187fbba2240606616703149f37c2216da7b4e50f820707adb9ea09131 -size 39569801 +oid sha256:335ad235eb51f370851e283156da2c5303f72665b3f2b2eb86bfd4ec70ca9864 +size 39418941 diff --git a/data/train-00019.parquet b/data/train-00019.parquet index 2c85ff21d7be82c40e12f2418b914ec68f95cd94..5d9bcec35308d4e4ac93462ee080adb8fda5481a 100644 --- a/data/train-00019.parquet +++ b/data/train-00019.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2571417784347000bba09e1cc2bbe54e42352f3dc91360944f569c351ed46a4 -size 39665053 +oid sha256:64006eb0b3d7e99769b22b665a965ff235b696c009677b8813e214bb4cf4bceb +size 39440789 diff --git a/data/train-00020.parquet b/data/train-00020.parquet index 9faa3b9eba697d0125ce5b5b17f1cba650d0f685..4f7803d6f52952a0800241e035f8d22b82d3ea81 100644 --- a/data/train-00020.parquet +++ b/data/train-00020.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f79495b35bbfcc38e6b7c2e043472c491638be1072d4457f5466003e69b06271 -size 39624744 +oid sha256:cf7c6577a68cfe003f1d956b5ed799970c93d2dbef144cadaba5b442a06d4fe2 +size 39470178 diff --git a/data/train-00021.parquet b/data/train-00021.parquet index 3d5332c1e392aa051453fbe77b6b5903dc83f0e9..b0e3f89a6380b0aabd8f0063f9e3406129c327cc 100644 --- a/data/train-00021.parquet +++ b/data/train-00021.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7edd6e2459079049f40cee449ea859c9a8aea700599b2437342b789be5acb30a -size 39543153 +oid sha256:ac345fdebf2f782f21e0dde37b5b97719bfc69f84470f71a160b6c9e1d78a0b4 +size 39354329 diff --git a/data/train-00022.parquet b/data/train-00022.parquet index 61230597bc1fe38925de6af93fa0ef380002000a..ebaa46be4f098b41903de76694e1fd95d9533e80 100644 --- a/data/train-00022.parquet +++ b/data/train-00022.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57ad92e60ee3674d5785b880a8d0781048f82a83bf12fa6906c12045a0840759 -size 39526691 +oid sha256:c65fb028be572843b75c9054bf89f47d6ffc531084d10b63d8540dc6d43094cf +size 39363288 diff --git a/data/train-00023.parquet b/data/train-00023.parquet index de48899a2eed9521fdebd076a116bf1a91738679..6097df4311056ed931d225e40b06eddfcbfc1f30 100644 --- a/data/train-00023.parquet +++ b/data/train-00023.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1746929c79e6021307332fce2e1ad10164e878c6466f89e2c1ae6c160b36907f -size 39546826 +oid sha256:d4ee0fbc7af2da7f5b483fd6abd11212ccf829206d1c821f4bf0995d3505e14b +size 39345962 diff --git a/data/train-00024.parquet b/data/train-00024.parquet index 96863b9532900775a84b5552c491246633fbb675..a6661054ea2d8f39971405c52af3a10cfba6576a 100644 --- a/data/train-00024.parquet +++ b/data/train-00024.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cad3d4342d63347a179b617d8c71b05accdb59abc77dabe7ff55dd732b8f698 -size 39583124 +oid sha256:fd950dbe18aed32aa3c495c5b54fd0f60cb9e6e908e7e1af6efb4ac0810e5d47 +size 39387289 diff --git a/data/train-00025.parquet b/data/train-00025.parquet index 2a45cd913cd5b8808ed33235ef8afd2d83197bbf..f650e5954fdc206be0e9fc0625d81a8d5f4f5c86 100644 --- a/data/train-00025.parquet +++ b/data/train-00025.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f088fd92011b0c8c13a03c51a494730ec0ca20ea3a129aee042aebef0ee48978 -size 39539024 +oid sha256:b4107f17c348112b956bc2a346ae84b77fa9cd7b4cfbcb196ec4ca64b705dd29 +size 39373141 diff --git a/data/train-00026.parquet b/data/train-00026.parquet index dc18fe2d88894fbea882df236310c41b621c6a5f..614943d9a22810059beb4a34b9b7f08819061a25 100644 --- a/data/train-00026.parquet +++ b/data/train-00026.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b1e18972fa6823533c04597d0d11b84b57d4abc026ae8539ee528c5e635b2d8 -size 39523271 +oid sha256:f285c5e6ccb4be4c25ae15c9f6fc6c25003b9d568d110103560d0c2c52307bd1 +size 39346227 diff --git a/data/train-00027.parquet b/data/train-00027.parquet index d32d7fc0969137a433bc4aa92be783ca0c483bf2..023f723c0d5f8694b76cae8d0d9118e403e21e5d 100644 --- a/data/train-00027.parquet +++ b/data/train-00027.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd084875bf62979d477c38d39d824d6bf3c921c400cb5b1249196e1935b696b7 -size 39504096 +oid sha256:d9a311abc4d5d8e0a0f90f795fbf59e04fc5f70f6dfe6a3c296ee707ad6a1918 +size 39360999 diff --git a/data/train-00028.parquet b/data/train-00028.parquet index 3c150cc208647253c2bfc00c279e89fdd4817e1b..a4616a79c437603cb39324a06821e55c7d770b54 100644 --- a/data/train-00028.parquet +++ b/data/train-00028.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dce4f5f96dc7af790c932560f0712b8299070abc93f634b3f1ec9bf765bd4756 -size 39525464 +oid sha256:14466ed9b51d812099388349943d6e1be4f46c7dbbccf81f0a3f474d37ae35f7 +size 39350762 diff --git a/data/train-00029.parquet b/data/train-00029.parquet index bca75156e0e90bb5c5115fb78e95bd4459c55aaa..d176e1af759aff230b52880553ee128f2e2ddf39 100644 --- a/data/train-00029.parquet +++ b/data/train-00029.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33004f5e9f0cf38d8f134906edd7069d9c0673294c51c7292e8a42f8c13538a2 -size 39567910 +oid sha256:5c15ec6b76e12099291836126f63b335043f8828e26ddaecea1d1621c374a8da +size 39344129 diff --git a/data/train-00030.parquet b/data/train-00030.parquet index ae20b389633251fe4322955309d782e2b5bb9114..425a4a42e76b08237c01601433b98e2377986a7b 100644 --- a/data/train-00030.parquet +++ b/data/train-00030.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc5340fa93f553638b2ebe6d0b6167f7e96bd3753c95f7c342f656df563221b2 -size 39532106 +oid sha256:2b4c191936634417132c31646e172d404afefb851773c36ed31aacba696cfb91 +size 39401962 diff --git a/data/train-00031.parquet b/data/train-00031.parquet index 8f89c52bf02ccf42e5a734636e5c2206f6d73566..2d3aed3bffc7f4bf0444d4f124caba6bb5d643a4 100644 --- a/data/train-00031.parquet +++ b/data/train-00031.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f431b78748718e78188cf7eff24e0f9657967a0307196c4fa074f7e31996552 -size 39523352 +oid sha256:94b47f9b0b4bb2966cb89cdbd263d6a2ac42b044ee1b9ae14a2a6f72f08e6e55 +size 39328246 diff --git a/data/train-00032.parquet b/data/train-00032.parquet index 2b9034f19507fa7537fea3a18519da4186025e6b..c736add05056dde2d5c442d8e4be0208be6d212e 100644 --- a/data/train-00032.parquet +++ b/data/train-00032.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5889d95d6413ec5dc071698531f8d8919ce7d64c7340733434e4d2034bab4235 -size 39523175 +oid sha256:6eee930bab7555cc6003f97ae67e759f524ca9e28260ca808fb6dc821c42b103 +size 39372065 diff --git a/data/train-00033.parquet b/data/train-00033.parquet index 5197e98eb1c1b533759301147b186f74131dfd84..14be2a4051da0a930ff24394793b929a48407bca 100644 --- a/data/train-00033.parquet +++ b/data/train-00033.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9531fe2ebd69f9da31cb45cbe81595c37da1f12665e3b8e59cff51776805a5ba -size 39525400 +oid sha256:feda13bae5da6e5c57df02c451d4c08c431fc3d4af4847738438a3001864355d +size 39333067 diff --git a/data/train-00034.parquet b/data/train-00034.parquet index cb978b810687f857fb278bab66de16b9d257e1d8..a6b3614d258f4c8ee387203a2b7c70d65ae0ddef 100644 --- a/data/train-00034.parquet +++ b/data/train-00034.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:947704dd7e547ab56e1e77bfa7ad078d8b3d9f7564f5c25af25367a61d73febe -size 39515278 +oid sha256:3c4feaeca80ec49fd7aa71efd158cdf6027d86de5362019b886388b8e2d6de38 +size 39311085 diff --git a/data/train-00035.parquet b/data/train-00035.parquet index cca0b1aa86d971407bcfbb060b87230656149b58..47240f11e4225a616fe0b69587f35494c574c7a7 100644 --- a/data/train-00035.parquet +++ b/data/train-00035.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf6ea5d5541501767648c6ebf30b59161acbaf224f2b72c00f4bc7ad1d246752 -size 39506393 +oid sha256:ad8ecb9392b2526f64995e47b94aff8f4f8488164708fc6abfddf742fa094857 +size 39341420 diff --git a/data/train-00036.parquet b/data/train-00036.parquet index 336449057da800871279b35a34210160832253f1..11a2f098dfb39d8bb5fbcf2a6459805729c3fb56 100644 --- a/data/train-00036.parquet +++ b/data/train-00036.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ad14fa3f2160c61a052eb39117f286f11526e41214f2210c053d67d43749966 -size 39507092 +oid sha256:de2b6692bbe29a3d8536e95e1f0c29329be51045afa563dde09d8267eed0a3dd +size 39352757 diff --git a/data/train-00037.parquet b/data/train-00037.parquet index 5755851b03376fc6841915cf4063a7f12a6833ce..51bcda452943dc8f6af0cb4fad28cba471cdfe72 100644 --- a/data/train-00037.parquet +++ b/data/train-00037.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1588e32c0c0ae6d56a70af83e1b9a2c8942a04682c1993ed12d37c9db9d020af -size 39490229 +oid sha256:a497f4095f87d96ef39c63650d4ec6203897f2f0e7fdb4e046fef1da5d3e0aac +size 39310756 diff --git a/data/train-00038.parquet b/data/train-00038.parquet index ba6564e2e43e710cf0fb4ff9336d0293b64a35fb..0d00d6acafee4f3796a12182e0e673d1ac073de7 100644 --- a/data/train-00038.parquet +++ b/data/train-00038.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:327aaa43593f7831f44aefa976c9fa7b7f63a8e43fa7f6c7ab2417589c2130c5 -size 39533585 +oid sha256:df7a3619044b9afda1f72d878309233c64fde0dbf1b35c3465fec33c3a9202ee +size 39374792 diff --git a/data/train-00039.parquet b/data/train-00039.parquet index 60f8e5971d4359f0d010c8268dfa17a81ca3a6ad..283e8ecf28095c96b5b0bce31133b22529a079c0 100644 --- a/data/train-00039.parquet +++ b/data/train-00039.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f4eb41d0a94f16be783c91e86c9508f469be7eb52f65bcbafc7aa8938eafe03 -size 39487015 +oid sha256:e45c07e2c277b11c347d2104b873dfc7bef098b18ad0013c85fc168ae91c181c +size 39296754 diff --git a/data/train-00040.parquet b/data/train-00040.parquet index f1d35feeecea16a59298f6dcaf6f05ad1795a772..2d563cd63b84c37e4dd39da6ef9bc3f18833aee4 100644 --- a/data/train-00040.parquet +++ b/data/train-00040.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae0a4e8bb414b6942a16b774096dda0fee67bcd063773f5b5b5686cdbc6f4571 -size 18468509 +oid sha256:c7382ae10ed14c17fbf76b7edcb4dd24ee5d54ba89296069fef7381e5fa0aa7b +size 25192951 diff --git a/data/validation-00000.parquet b/data/validation-00000.parquet index 7aa320783515a8e6f9340bdb68a4d4586087a959..dfa68dc2a1308115f2ac41cce93f26b60cd3eed5 100644 --- a/data/validation-00000.parquet +++ b/data/validation-00000.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7b32257ba682b4726107e52e4eaa5473e69f211abf36f1b38718c83cffd521e -size 32162755 +oid sha256:ed08145f22bce379a2db425d3cfd5b4a940c1554cff6a80f5b84900a0c6030c2 +size 32068959 diff --git a/data/validation-00001.parquet b/data/validation-00001.parquet index aa526d2657cd8fb1ab96cb5875e09cf862846f33..83a4005b1cf0e4f8b4dd67cd722749260019dbe1 100644 --- a/data/validation-00001.parquet +++ b/data/validation-00001.parquet @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:134f52658fb1ec3198a7a19500cd293f867c91eafec881ba63ac5a67d54df156 -size 25272460 +oid sha256:3429fd1ae98d3d43bd05205828696cf7abf0b16ceb44ecde317574d5a12b5d39 +size 25320752 diff --git a/eval_00000.bin b/eval_00000.bin deleted file mode 100644 index 10157a227f12a23f696c5c51f5c4335f2e66a892..0000000000000000000000000000000000000000 --- a/eval_00000.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa5378c4b81bd7c266ccf0b517c91937f94361622e00f59b15a07ac0c19a8ca0 -size 199999488 diff --git a/eval_00001.bin b/eval_00001.bin deleted file mode 100644 index 337e53f21e645618c777d00f1594caabfcf3c59c..0000000000000000000000000000000000000000 --- a/eval_00001.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7187d1b306ee21eb56cca3efb06b5350dd97cec69b1624ef47358f6bdc7188fa -size 199999488 diff --git a/eval_00002.bin b/eval_00002.bin deleted file mode 100644 index 663a0a893e3eda902d6d6b1bb6f2a1b2b59b6b46..0000000000000000000000000000000000000000 --- a/eval_00002.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d9389a4199fc15bc9a4707d1acf6496a9f690c113ff8e1f22a194730aec51fc -size 199999488 diff --git a/eval_00003.bin b/eval_00003.bin deleted file mode 100644 index 8c039e36aaa6a63d42dc462f9002c0cd4149a851..0000000000000000000000000000000000000000 --- a/eval_00003.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c85d496bf0a0512db76436f585d07edc5ed02f0da7ffddada184f095fd57f9b5 -size 131170304 diff --git a/generation.log b/generation.log deleted file mode 100644 index 10e1e162f23dddfc9e3bcfd3a240b6b3b1c3e6b0..0000000000000000000000000000000000000000 --- a/generation.log +++ /dev/null @@ -1,25 +0,0 @@ -SYN tokenizer: name=HuggingFaceTB/SmolLM2-135M class=GPT2TokenizerFast transformers=4.57.1 vocab=49152 backend_hash=2225e8fb36485529 -Command terminated by signal 15 - Command being timed: "python3 train/gen_SYN-1B.py --out-dir /home/hotaisle/datasets/SYN-1B --train-tokens 1000000000 --eval-tokens 40000000 --shard-size-tokens 100000000 --seq-len 4096 --seed 1337" - User time (seconds): 17346.21 - System time (seconds): 278.19 - Percent of CPU this job got: 100% - Elapsed (wall clock) time (h:mm:ss or m:ss): 4:53:39 - Average shared text size (kbytes): 0 - Average unshared data size (kbytes): 0 - Average stack size (kbytes): 0 - Average total size (kbytes): 0 - Maximum resident set size (kbytes): 145311460 - Average resident set size (kbytes): 0 - Major (requiring I/O) page faults: 0 - Minor (reclaiming a frame) page faults: 62126764 - Voluntary context switches: 806 - Involuntary context switches: 94033 - Swaps: 0 - File system inputs: 0 - File system outputs: 39632624 - Socket messages sent: 0 - Socket messages received: 0 - Signals delivered: 0 - Page size (bytes): 4096 - Exit status: 0 diff --git a/qa_optimized.log b/qa_optimized.log deleted file mode 100644 index 579bbbc96a4fe8e19bc15306f4480473fdb7951a..0000000000000000000000000000000000000000 --- a/qa_optimized.log +++ /dev/null @@ -1,1029 +0,0 @@ -SYN tokenizer: name=HuggingFaceTB/SmolLM2-135M class=GPT2TokenizerFast transformers=4.57.1 vocab=49152 backend_hash=2225e8fb36485529 -QA start tokenizer -QA done tokenizer ok=True -QA start manifest_tokenizer -QA done manifest_tokenizer ok=True -QA start packing_policy -QA done packing_policy ok=True -QA load_records train -QA loaded_records train count=4046772 -QA start window_integrity_train -QA done window_integrity_train ok=True -QA start task_density_train -QA done instance_task_density_train ok=True -QA start offset_contract_train -QA done offset_contract_train ok=True -QA start instance_span_roundtrip_train -QA done instance_span_roundtrip_train ok=True -QA load_records eval -QA loaded_records eval count=178463 -QA start window_integrity_eval -QA done window_integrity_eval ok=True -QA start task_density_eval -QA done instance_task_density_eval ok=True -QA start offset_contract_eval -QA done offset_contract_eval ok=True -QA start instance_span_roundtrip_eval -QA done instance_span_roundtrip_eval ok=True -QA start controlled_distribution -QA done controlled_distribution ok=False -QA start marker -QA done marker ok=True -QA start dedup -QA done dedup ok=True -QA start labels -QA done labels ok=True -QA start split_integrity -QA done split_integrity ok=True -QA start schema_completeness -QA done schema_completeness ok=True -QA start schema_admission -QA done schema_admission ok=True -QA start query_position_contract -QA done query_position_contract ok=True -QA start distractor_surface -QA done distractor_surface ok=True -QA start f3_age -QA done f3_age ok=True -QA start filler_scaffolding -QA done filler_scaffolding ok=True -QA start train_eval_symbol_exclusion -QA done train_eval_symbol_exclusion ok=True -QA start f1_rule_consistency -QA done f1_rule_consistency ok=True -QA start minimal_suffix -QA done minimal_suffix ok=True -QA start composition_depth -QA done composition_depth_recompute ok=True -QA start age_flag -QA done age_flag_recompute ok=True -QA start content_decode -QA done content_decode ok=True -QA start provenance -QA done provenance_audit ok=True -QA start difficulty_strata -QA done difficulty_strata ok=True -QA start metadata_recomputation -QA done metadata_recomputation ok=False -{ - "ok": false, - "checks": [ - { - "name": "tokenizer", - "ok": true, - "missing": [], - "sigma": 64, - "bg_vocab": 84 - }, - { - "name": "manifest_tokenizer", - "ok": true, - "mismatches": {}, - "tokenizer": "HuggingFaceTB/SmolLM2-135M" - }, - { - "name": "packing_policy", - "ok": true, - "mismatches": {}, - "policy": { - "unit": "fixed_window", - "window_tokens": 4096, - "max_synthetic_instances_per_window": 2, - "window_background": "eos_padding_for_standalone_dry_run", - "min_task_fraction_by_family": { - "F1": 0.25, - "F2": 0.25, - "F3": 0.25, - "F4": 0.25, - "F5": 0.25 - }, - "min_queries_by_family": { - "F1": 4, - "F2": 4, - "F3": 2, - "F4": 4 - }, - "instance_boundary_mask": false, - "eos_between_instances": true, - "note": "Production SYN is web/code co-packed; standalone generator pads missing web stream with EOS." - } - }, - { - "name": "window_integrity_train", - "ok": true, - "bad_records": 0, - "crowded_windows": 0, - "verified_fields": [ - [ - "record", - "token_hash" - ], - [ - "record", - "token_len" - ] - ] - }, - { - "name": "instance_task_density_train", - "ok": true, - "instance_fraction_mean": 0.8129792894317726, - "instance_fraction_min": 0.648, - "instance_fraction_max": 1.0, - "query_count_min": 2, - "query_count_mean": 8.694136956566863, - "min_task_fraction_by_family": { - "F1": 0.25, - "F2": 0.25, - "F3": 0.25, - "F4": 0.25, - "F5": 0.25 - }, - "min_queries_by_family": { - "F1": 4, - "F2": 4, - "F3": 2, - "F4": 4 - }, - "verified_fields": [ - [ - "record", - "density_denominator" - ], - [ - "record", - "controlled_gap_adjusted_task_fraction" - ] - ], - "bad_records": [] - }, - { - "name": "offset_contract_train", - "ok": true, - "labels": 115129289, - "bad": 0, - "reconcile_bad": [], - "verified_fields": [ - [ - "label_position", - "pos" - ], - [ - "label_position", - "expected" - ], - [ - "label_position", - "decoded" - ], - [ - "event", - "pos" - ], - [ - "query_common", - "pos" - ], - [ - "query_common", - "answer_pos" - ], - [ - "write", - "pos" - ], - [ - "demonstration", - "pos" - ], - [ - "demonstration", - "answer_pos" - ], - [ - "distractor", - "pos" - ] - ] - }, - { - "name": "instance_span_roundtrip_train", - "ok": true, - "instances": 4046772, - "bad": [] - }, - { - "name": "window_integrity_eval", - "ok": true, - "bad_records": 0, - "crowded_windows": 0, - "verified_fields": [ - [ - "record", - "token_hash" - ], - [ - "record", - "token_len" - ] - ] - }, - { - "name": "instance_task_density_eval", - "ok": true, - "instance_fraction_mean": 0.8458349297117158, - "instance_fraction_min": 0.664, - "instance_fraction_max": 1.0, - "query_count_min": 1, - "query_count_mean": 9.185001933173822, - "min_task_fraction_by_family": { - "F1": 0.25, - "F2": 0.25, - "F3": 0.25, - "F4": 0.25, - "F5": 0.25 - }, - "min_queries_by_family": { - "F1": 4, - "F2": 4, - "F3": 2, - "F4": 4 - }, - "verified_fields": [ - [ - "record", - "density_denominator" - ], - [ - "record", - "controlled_gap_adjusted_task_fraction" - ] - ], - "bad_records": [] - }, - { - "name": "offset_contract_eval", - "ok": true, - "labels": 4811124, - "bad": 0, - "reconcile_bad": [], - "verified_fields": [ - [ - "label_position", - "pos" - ], - [ - "label_position", - "expected" - ], - [ - "label_position", - "decoded" - ], - [ - "event", - "pos" - ], - [ - "query_common", - "pos" - ], - [ - "query_common", - "answer_pos" - ], - [ - "write", - "pos" - ], - [ - "demonstration", - "pos" - ], - [ - "demonstration", - "answer_pos" - ], - [ - "distractor", - "pos" - ] - ] - }, - { - "name": "instance_span_roundtrip_eval", - "ok": true, - "instances": 178463, - "bad": [] - }, - { - "name": "controlled_distribution", - "ok": false, - "records": 4225235, - "bad_len": 301, - "bad_events": 0, - "bad_gaps": [], - "target_age_bins": { - "0": 73559, - "1": 88134, - "2": 73559, - "3": 88133, - "4": 73557, - "5": 88133, - "6": 73557, - "7": 88133, - "8": 73556, - "9": 88132 - }, - "target_age_bin_gate": "production_2pct", - "target_age_bin_expected_per_bin": 80845.3, - "target_age_bin_tolerance": 1617, - "target_age_bin_chi_square": null, - "target_age_bin_chi_square_df": null, - "target_age_bin_chi_square_threshold_p01": null, - "target_age_bin_total_controlled": 808453, - "verified_fields": [ - [ - "record", - "controlled_gap_tokens" - ], - [ - "controlled_gap", - "kind" - ], - [ - "controlled_gap", - "realized" - ], - [ - "controlled_gap", - "target" - ], - [ - "controlled_gap", - "target_age_bin" - ] - ], - "bad_bins": [ - { - "bin": 0, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 1, - "count": 88134, - "expected": 80845.3, - "abs_deviation": 7288.699999999997, - "tolerance": 1617 - }, - { - "bin": 2, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 3, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 4, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 5, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 6, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 7, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 8, - "count": 73556, - "expected": 80845.3, - "abs_deviation": 7289.300000000003, - "tolerance": 1617 - }, - { - "bin": 9, - "count": 88132, - "expected": 80845.3, - "abs_deviation": 7286.699999999997, - "tolerance": 1617 - } - ] - }, - { - "name": "marker", - "ok": true, - "eventful_records": 2704278, - "null_records": 1298927 - }, - { - "name": "dedup", - "ok": true, - "duplicates": 0, - "hashes": 4225235 - }, - { - "name": "labels", - "ok": true, - "queries": 36822373, - "bad": 0 - }, - { - "name": "split_integrity", - "ok": true, - "split_counts": { - "F1": { - "train": 425913, - "eval": 11359 - }, - "F2": { - "train": 1948616, - "eval": 62466 - }, - "F3": { - "train": 431730, - "eval": 12330 - }, - "F4": { - "train": 1240513, - "eval": 58414 - }, - "F5": { - "eval": 33894 - } - }, - "bad": [] - }, - { - "name": "schema_completeness", - "ok": true, - "records": 4225235, - "queries": 36822373, - "query_counts_by_family": { - "F1": 2763093, - "F2": 19171530, - "F3": 1554271, - "F4": 12989640, - "F5": 343839 - }, - "required_record_fields": [ - "composition_depth", - "controlled_gap_adjusted_task_fraction", - "controlled_gap_tokens", - "corpus_version", - "density_denominator", - "distractors", - "events", - "family", - "filler_token_count", - "instance_id", - "label_positions", - "queries", - "registry_ids", - "shard", - "split", - "start_offset", - "task_token_count", - "token_hash", - "token_len", - "window_index", - "writes" - ], - "bad": [] - }, - { - "name": "schema_admission", - "ok": true, - "checked": { - "records": 4225235, - "queries": 36822373, - "writes": 28247025, - "events": 3631413, - "controlled_gaps": 808453, - "demonstrations": 6559151, - "label_positions": 119940413, - "distractors": 1298927 - }, - "registered_verifier_groups": [ - "controlled_gap", - "demonstration", - "distractor", - "event", - "label_position", - "query_common", - "query_family", - "record", - "write" - ], - "registry_mismatches": [], - "bad": [] - }, - { - "name": "query_position_contract", - "ok": true, - "checked": 36822373, - "verified_fields": [ - [ - "query_common", - "answer" - ], - [ - "query_common", - "answer_pos" - ], - [ - "query_common", - "prediction_anchor" - ] - ], - "bad": [] - }, - { - "name": "distractor_surface", - "ok": true, - "checked": 1298927, - "required": { - "F1": [ - "means" - ], - "F2": [ - "exchanged" - ], - "F3": [ - "box", - "key", - "opens" - ] - }, - "verified_fields": [ - [ - "distractor", - "mimics_family" - ], - [ - "distractor", - "variant" - ], - [ - "distractor", - "pos" - ], - [ - "record", - "pseudo_event_pos" - ] - ], - "bad": [] - }, - { - "name": "f3_age", - "ok": true, - "count": 1554271, - "max": 3577, - "hist": { - "<=32": 27617, - "33-128": 523858, - "129-512": 491677, - "513-1000": 173834, - ">1000": 337285 - } - }, - { - "name": "filler_scaffolding", - "ok": true, - "filler_counts": {}, - "count_bad": [], - "verified_fields": [ - [ - "record", - "filler_rle" - ], - [ - "record", - "filler_token_count" - ], - [ - "record", - "task_token_count" - ], - [ - "record", - "task_fraction" - ] - ], - "structural_counts": {} - }, - { - "name": "train_eval_symbol_exclusion", - "ok": true, - "checked_train_tokens": 1000002097, - "sigma_eval": [ - "bucket", - "field", - "fish", - "night", - "olive", - "drum", - "salt", - "parrot", - "horse", - "root", - "rabbit", - "onion" - ], - "bad": [] - }, - { - "name": "f1_rule_consistency", - "ok": true, - "checked": 2763093, - "verified_fields": [ - [ - "record", - "active_map_rle" - ], - [ - "event", - "changed_symbols" - ], - [ - "event", - "mentioned_symbols" - ], - [ - "event", - "restatement" - ] - ], - "bad": [] - }, - { - "name": "minimal_suffix", - "ok": true, - "total_queries": 36822373, - "checked": 36478534, - "hard_suffix_checked": 36822373, - "hard_suffix_threshold": 256, - "checked_by_family": { - "F1": 2763093, - "F2": 19171530, - "F3": 1554271, - "F4": 12989640 - }, - "skipped_by_family": { - "F5": 343839 - }, - "skip_rationale": { - "F5": "F5 is eval-only and its minimal sufficient evidence is recurrence-parameter inference from the modular stream, not a finite symbolic write/correction replay." - }, - "verified_fields": [ - [ - "query_common", - "minimal_sufficient_suffix_len" - ], - [ - "query_common", - "hard_suffix" - ], - [ - "query_common", - "evidence_positions" - ], - [ - "query_common", - "answer" - ], - [ - "record", - "active_map_rle" - ], - [ - "query_F4", - "key" - ], - [ - "query_F3", - "key" - ], - [ - "query_F1", - "key" - ], - [ - "query_F2", - "entity" - ] - ], - "bad": [] - }, - { - "name": "composition_depth_recompute", - "ok": true, - "checked": 4225235, - "verified_fields": [ - [ - "record", - "composition_depth" - ], - [ - "query_common", - "composition_depth" - ] - ], - "bad": [] - }, - { - "name": "age_flag_recompute", - "ok": true, - "checked": 23488894, - "verified_fields": [ - [ - "query_F1", - "age_from_original_statement" - ], - [ - "query_F1", - "age_from_reversal" - ], - [ - "query_F1", - "mentioned_in_latest_correction" - ], - [ - "query_F2", - "age_from_binding_statement" - ], - [ - "query_F2", - "age_from_swap" - ], - [ - "query_F2", - "entity_was_swapped" - ], - [ - "query_F2", - "entity_ever_swapped" - ], - [ - "query_F3", - "age_write_to_query" - ], - [ - "query_F3", - "age_correction_to_query" - ], - [ - "query_F3", - "mode" - ] - ], - "bad": [] - }, - { - "name": "content_decode", - "ok": true, - "verified_fields": [ - [ - "demonstration", - "answer" - ], - [ - "demonstration", - "key" - ], - [ - "event", - "event_index" - ], - [ - "event", - "key" - ], - [ - "event", - "new" - ], - [ - "event", - "old" - ], - [ - "event", - "source_state" - ], - [ - "event", - "swapped_entities" - ], - [ - "event", - "target_state" - ], - [ - "event", - "type" - ], - [ - "label_position", - "role" - ], - [ - "write", - "entity" - ], - [ - "write", - "key" - ], - [ - "write", - "value" - ] - ], - "bad": [] - }, - { - "name": "provenance_audit", - "ok": true, - "checked": 4225235, - "manifest_corpus_version": "syn-1b-v1.3", - "verified_fields": [ - "corpus_version", - "registry_ids", - "instance_id", - "seed", - "shard", - "window_index", - "start_offset", - "family", - "split", - "text_hash", - "token_hash", - "transition_id" - ], - "bad": [] - }, - { - "name": "difficulty_strata", - "ok": true, - "max_attention_window": 256, - "counts": { - "f1_unmentioned_partial_query": 364393, - "f1_composition_depth_gt1": 145758, - "f2_composition_depth_gt1": 670361, - "f3_supersession_depth_gt1": 111016, - "suffix_gt_max_attention_window": 407832 - }, - "eval_family_counts": { - "F1": 11359, - "F2": 62466, - "F3": 12330, - "F4": 58414, - "F5": 33894 - }, - "eval_hard_primitive_family_counts": { - "F1": 6876, - "F2": 20822, - "F3": 5904 - }, - "eval_composition_family_counts": { - "F1": 3787, - "F2": 20822 - }, - "eval_supersession_family_counts": { - "F3": 3083 - }, - "eval_query_counts": { - "F1": 71939, - "F3": 43142 - }, - "eval_suffix_query_counts": { - "F3": 15063, - "F1": 12365 - }, - "missing": [], - "failures": [] - }, - { - "name": "metadata_recomputation", - "ok": false, - "derived_fields": 63, - "derived_independently_recomputed": 62, - "pending_independent_recompute": [ - [ - "query_common", - "target_age_bin" - ] - ], - "pending_now_covered_remove_from_allowlist": [], - "phantom_pending_not_a_derived_field": [], - "uncovered_derived_fields": [ - { - "scope": "record", - "field": "controlled_gap_tokens", - "owners": [ - "controlled_distribution", - "instance_task_density" - ] - }, - { - "scope": "controlled_gap", - "field": "kind", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "realized", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target_age_bin", - "owners": [ - "controlled_distribution" - ] - } - ], - "structural_gaps": [ - { - "scope": "record", - "field": "controlled_gap_rle", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "record", - "field": "controlled_gaps", - "owners": [ - "controlled_distribution" - ] - } - ], - "provenance_gaps": [] - } - ] -} -Command exited with non-zero status 1 - Command being timed: "python3 train/gen_SYN-1B.py --qa-only /home/hotaisle/datasets/SYN-1B --seq-len 4096 --seed 1337" - User time (seconds): 33218.09 - System time (seconds): 270.23 - Percent of CPU this job got: 831% - Elapsed (wall clock) time (h:mm:ss or m:ss): 1:07:06 - Average shared text size (kbytes): 0 - Average unshared data size (kbytes): 0 - Average stack size (kbytes): 0 - Average total size (kbytes): 0 - Maximum resident set size (kbytes): 160051776 - Average resident set size (kbytes): 0 - Major (requiring I/O) page faults: 0 - Minor (reclaiming a frame) page faults: 46516997 - Voluntary context switches: 2449273 - Involuntary context switches: 440337 - Swaps: 0 - File system inputs: 0 - File system outputs: 240 - Socket messages sent: 0 - Socket messages received: 0 - Signals delivered: 0 - Page size (bytes): 4096 - Exit status: 1 diff --git a/MANIFEST.syn-1b-v1.3.json b/raw/MANIFEST.syn-1b-v1.3.json similarity index 78% rename from MANIFEST.syn-1b-v1.3.json rename to raw/MANIFEST.syn-1b-v1.3.json index 1073d248ccb2661993918a56ef0bc1f89544ed7b..a2fab704929c6b25c7b1481911a8b09b03a8dbed 100644 --- a/MANIFEST.syn-1b-v1.3.json +++ b/raw/MANIFEST.syn-1b-v1.3.json @@ -4,41 +4,41 @@ "splits": { "train": { "family_tokens": { - "F1": 300000102, + "F1": 300000256, "F2": 250000062, - "F3": 280001851, + "F3": 280001063, "F4": 170000082 }, "family_task_tokens": { - "F1": 72007314, + "F1": 74921328, "F2": 197916236, - "F3": 32834578, + "F3": 32836178, "F4": 135886047 }, - "total_tokens": 8289370112, - "sidecar_records": 4046772, - "windows": 2023772, + "total_tokens": 8324624384, + "sidecar_records": 4063978, + "windows": 2032379, "roundtrip_rejected": 0, "roundtrip_rejection_rate": 0.0 }, "eval": { "family_tokens": { - "F1": 8000958, + "F1": 8000666, "F2": 8000028, - "F3": 8001100, + "F3": 8001916, "F4": 8000112, - "F5": 8000171 + "F5": 8000160 }, "family_task_tokens": { - "F1": 1922463, + "F1": 1992537, "F2": 6328985, - "F3": 939577, + "F3": 937778, "F4": 6392544, - "F5": 8000171 + "F5": 8000160 }, - "total_tokens": 365584384, - "sidecar_records": 178463, - "windows": 89254, + "total_tokens": 366399488, + "sidecar_records": 178863, + "windows": 89453, "roundtrip_rejected": 0, "roundtrip_rejection_rate": 0.0 } @@ -440,11 +440,15 @@ }, { "name": "train_00082.bin", - "n_tokens": 89391104 + "n_tokens": 99999744 + }, + { + "name": "train_00083.bin", + "n_tokens": 24645632 } ], - "total_tokens": 8289370112, - "approx_sequences": 2023772 + "total_tokens": 8324624384, + "approx_sequences": 2032379 }, "eval": { "shards": [ @@ -462,17 +466,17 @@ }, { "name": "eval_00003.bin", - "n_tokens": 65585152 + "n_tokens": 66400256 } ], - "total_tokens": 365584384, - "approx_sequences": 89254 + "total_tokens": 366399488, + "approx_sequences": 89453 } }, - "created_unix": 1783316665, + "created_unix": 1783348011, "read_hint": "np.memmap(/, dtype=np.uint16, mode='r') -> 1-D token stream", "qa": { - "ok": false, + "ok": true, "checks": [ { "name": "tokenizer", @@ -533,11 +537,11 @@ { "name": "instance_task_density_train", "ok": true, - "instance_fraction_mean": 0.8129792894317726, + "instance_fraction_mean": 0.8130386683175134, "instance_fraction_min": 0.648, "instance_fraction_max": 1.0, "query_count_min": 2, - "query_count_mean": 8.694136956566863, + "query_count_mean": 8.684256164772545, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -566,7 +570,7 @@ { "name": "offset_contract_train", "ok": true, - "labels": 115129289, + "labels": 116025937, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -615,7 +619,7 @@ { "name": "instance_span_roundtrip_train", "ok": true, - "instances": 4046772, + "instances": 4063978, "bad": [] }, { @@ -637,11 +641,11 @@ { "name": "instance_task_density_eval", "ok": true, - "instance_fraction_mean": 0.8458349297117158, + "instance_fraction_mean": 0.8457944120308599, "instance_fraction_min": 0.664, "instance_fraction_max": 1.0, "query_count_min": 1, - "query_count_mean": 9.185001933173822, + "query_count_mean": 9.178158702470606, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -670,7 +674,7 @@ { "name": "offset_contract_eval", "ok": true, - "labels": 4811124, + "labels": 4832242, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -719,35 +723,136 @@ { "name": "instance_span_roundtrip_eval", "ok": true, - "instances": 178463, + "instances": 178863, "bad": [] }, { "name": "controlled_distribution", - "ok": false, - "records": 4225235, + "ok": true, + "records": 4242841, + "length_min": 45, + "length_max": 3760, + "nominal_length_outliers_reported_not_gated": 301, "bad_len": 301, "bad_events": 0, "bad_gaps": [], "target_age_bins": { - "0": 73559, - "1": 88134, - "2": 73559, - "3": 88133, - "4": 73557, - "5": 88133, - "6": 73557, - "7": 88133, - "8": 73556, - "9": 88132 + "0": 82313, + "1": 82311, + "2": 82312, + "3": 82313, + "4": 82311, + "5": 82312, + "6": 82313, + "7": 82311, + "9": 82311, + "8": 82312 }, "target_age_bin_gate": "production_2pct", - "target_age_bin_expected_per_bin": 80845.3, - "target_age_bin_tolerance": 1617, + "target_age_bin_expected_per_bin": 82311.9, + "target_age_bin_tolerance": 1647, "target_age_bin_chi_square": null, "target_age_bin_chi_square_df": null, "target_age_bin_chi_square_threshold_p01": null, - "target_age_bin_total_controlled": 808453, + "target_age_bin_total_controlled": 823119, + "target_age_bin_groups": [ + { + "group": "eval:F1", + "ok": true, + "gate": "small_sample_chi_square_p01", + "counts": { + "0": 982, + "1": 981, + "2": 981, + "3": 982, + "4": 981, + "5": 981, + "6": 982, + "7": 981, + "8": 981, + "9": 981 + }, + "expected_per_bin": 981.3, + "tolerance": null, + "chi_square": 0.002140018343014369, + "chi_square_df": 9, + "chi_square_threshold_p01": 21.666, + "total_controlled": 9813, + "bad_bins": [] + }, + { + "group": "eval:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 1231, + "1": 1231, + "2": 1231, + "3": 1231, + "4": 1231, + "5": 1231, + "6": 1231, + "7": 1231, + "8": 1231, + "9": 1231 + }, + "expected_per_bin": 1231.0, + "tolerance": 25, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 12310, + "bad_bins": [] + }, + { + "group": "train:F1", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 36927, + "1": 36926, + "2": 36927, + "3": 36927, + "4": 36926, + "5": 36927, + "6": 36927, + "7": 36926, + "8": 36927, + "9": 36926 + }, + "expected_per_bin": 36926.6, + "tolerance": 739, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 369266, + "bad_bins": [] + }, + { + "group": "train:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 43173, + "1": 43173, + "2": 43173, + "3": 43173, + "4": 43173, + "5": 43173, + "6": 43173, + "7": 43173, + "8": 43173, + "9": 43173 + }, + "expected_per_bin": 43173.0, + "tolerance": 864, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 431730, + "bad_bins": [] + } + ], "verified_fields": [ [ "record", @@ -770,95 +875,24 @@ "target_age_bin" ] ], - "bad_bins": [ - { - "bin": 0, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 1, - "count": 88134, - "expected": 80845.3, - "abs_deviation": 7288.699999999997, - "tolerance": 1617 - }, - { - "bin": 2, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 3, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 4, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 5, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 6, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 7, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 8, - "count": 73556, - "expected": 80845.3, - "abs_deviation": 7289.300000000003, - "tolerance": 1617 - }, - { - "bin": 9, - "count": 88132, - "expected": 80845.3, - "abs_deviation": 7286.699999999997, - "tolerance": 1617 - } - ] + "bad_bins": [] }, { "name": "marker", "ok": true, - "eventful_records": 2704278, + "eventful_records": 2721894, "null_records": 1298927 }, { "name": "dedup", "ok": true, "duplicates": 0, - "hashes": 4225235 + "hashes": 4242841 }, { "name": "labels", "ok": true, - "queries": 36822373, + "queries": 36934259, "bad": 0 }, { @@ -866,8 +900,8 @@ "ok": true, "split_counts": { "F1": { - "train": 425913, - "eval": 11359 + "train": 443119, + "eval": 11779 }, "F2": { "train": 1948616, @@ -875,7 +909,7 @@ }, "F3": { "train": 431730, - "eval": 12330 + "eval": 12310 }, "F4": { "train": 1240513, @@ -890,14 +924,14 @@ { "name": "schema_completeness", "ok": true, - "records": 4225235, - "queries": 36822373, + "records": 4242841, + "queries": 36934259, "query_counts_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640, - "F5": 343839 + "F5": 343838 }, "required_record_fields": [ "composition_depth", @@ -928,13 +962,13 @@ "name": "schema_admission", "ok": true, "checked": { - "records": 4225235, - "queries": 36822373, - "writes": 28247025, - "events": 3631413, - "controlled_gaps": 808453, - "demonstrations": 6559151, - "label_positions": 119940413, + "records": 4242841, + "queries": 36934259, + "writes": 28387924, + "events": 3654900, + "controlled_gaps": 823119, + "demonstrations": 6823955, + "label_positions": 120858179, "distractors": 1298927 }, "registered_verifier_groups": [ @@ -954,7 +988,7 @@ { "name": "query_position_contract", "ok": true, - "checked": 36822373, + "checked": 36934259, "verified_fields": [ [ "query_common", @@ -1011,14 +1045,14 @@ { "name": "f3_age", "ok": true, - "count": 1554271, - "max": 3577, + "count": 1554384, + "max": 3576, "hist": { - "<=32": 27617, - "33-128": 523858, - "129-512": 491677, - "513-1000": 173834, - ">1000": 337285 + "<=32": 27616, + "33-128": 523835, + "129-512": 491658, + "513-1000": 173826, + ">1000": 337449 } }, { @@ -1049,7 +1083,7 @@ { "name": "train_eval_symbol_exclusion", "ok": true, - "checked_train_tokens": 1000002097, + "checked_train_tokens": 1000001463, "sigma_eval": [ "bucket", "field", @@ -1069,7 +1103,7 @@ { "name": "f1_rule_consistency", "ok": true, - "checked": 2763093, + "checked": 2874867, "verified_fields": [ [ "record", @@ -1093,18 +1127,18 @@ { "name": "minimal_suffix", "ok": true, - "total_queries": 36822373, - "checked": 36478534, - "hard_suffix_checked": 36822373, + "total_queries": 36934259, + "checked": 36590421, + "hard_suffix_checked": 36934259, "hard_suffix_threshold": 256, "checked_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640 }, "skipped_by_family": { - "F5": 343839 + "F5": 343838 }, "skip_rationale": { "F5": "F5 is eval-only and its minimal sufficient evidence is recurrence-parameter inference from the modular stream, not a finite symbolic write/correction replay." @@ -1131,20 +1165,20 @@ "active_map_rle" ], [ - "query_F4", + "query_F1", "key" ], [ "query_F3", "key" ], - [ - "query_F1", - "key" - ], [ "query_F2", "entity" + ], + [ + "query_F4", + "key" ] ], "bad": [] @@ -1152,7 +1186,7 @@ { "name": "composition_depth_recompute", "ok": true, - "checked": 4225235, + "checked": 4242841, "verified_fields": [ [ "record", @@ -1168,7 +1202,7 @@ { "name": "age_flag_recompute", "ok": true, - "checked": 23488894, + "checked": 23600781, "verified_fields": [ [ "query_F1", @@ -1279,7 +1313,7 @@ { "name": "provenance_audit", "ok": true, - "checked": 4225235, + "checked": 4242841, "manifest_corpus_version": "syn-1b-v1.3", "verified_fields": [ "corpus_version", @@ -1302,45 +1336,45 @@ "ok": true, "max_attention_window": 256, "counts": { - "f1_unmentioned_partial_query": 364393, - "f1_composition_depth_gt1": 145758, + "f1_unmentioned_partial_query": 379079, + "f1_composition_depth_gt1": 151634, "f2_composition_depth_gt1": 670361, - "f3_supersession_depth_gt1": 111016, - "suffix_gt_max_attention_window": 407832 + "f3_supersession_depth_gt1": 111011, + "suffix_gt_max_attention_window": 409689 }, "eval_family_counts": { - "F1": 11359, + "F1": 11779, "F2": 62466, - "F3": 12330, + "F3": 12310, "F4": 58414, "F5": 33894 }, "eval_hard_primitive_family_counts": { - "F1": 6876, + "F1": 6973, "F2": 20822, - "F3": 5904 + "F3": 5895 }, "eval_composition_family_counts": { - "F1": 3787, + "F1": 3927, "F2": 20822 }, "eval_supersession_family_counts": { - "F3": 3083 + "F3": 3078 }, "eval_query_counts": { - "F1": 71939, - "F3": 43142 + "F1": 74491, + "F3": 43041 }, "eval_suffix_query_counts": { - "F3": 15063, - "F1": 12365 + "F3": 15019, + "F1": 12570 }, "missing": [], "failures": [] }, { "name": "metadata_recomputation", - "ok": false, + "ok": true, "derived_fields": 63, "derived_independently_recomputed": 62, "pending_independent_recompute": [ @@ -1351,67 +1385,15 @@ ], "pending_now_covered_remove_from_allowlist": [], "phantom_pending_not_a_derived_field": [], - "uncovered_derived_fields": [ - { - "scope": "record", - "field": "controlled_gap_tokens", - "owners": [ - "controlled_distribution", - "instance_task_density" - ] - }, - { - "scope": "controlled_gap", - "field": "kind", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "realized", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target_age_bin", - "owners": [ - "controlled_distribution" - ] - } - ], - "structural_gaps": [ - { - "scope": "record", - "field": "controlled_gap_rle", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "record", - "field": "controlled_gaps", - "owners": [ - "controlled_distribution" - ] - } - ], + "uncovered_derived_fields": [], + "structural_gaps": [], "provenance_gaps": [] } ] } }, "qa": { - "ok": false, + "ok": true, "checks": [ { "name": "tokenizer", @@ -1472,11 +1454,11 @@ { "name": "instance_task_density_train", "ok": true, - "instance_fraction_mean": 0.8129792894317726, + "instance_fraction_mean": 0.8130386683175134, "instance_fraction_min": 0.648, "instance_fraction_max": 1.0, "query_count_min": 2, - "query_count_mean": 8.694136956566863, + "query_count_mean": 8.684256164772545, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -1505,7 +1487,7 @@ { "name": "offset_contract_train", "ok": true, - "labels": 115129289, + "labels": 116025937, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -1554,7 +1536,7 @@ { "name": "instance_span_roundtrip_train", "ok": true, - "instances": 4046772, + "instances": 4063978, "bad": [] }, { @@ -1576,11 +1558,11 @@ { "name": "instance_task_density_eval", "ok": true, - "instance_fraction_mean": 0.8458349297117158, + "instance_fraction_mean": 0.8457944120308599, "instance_fraction_min": 0.664, "instance_fraction_max": 1.0, "query_count_min": 1, - "query_count_mean": 9.185001933173822, + "query_count_mean": 9.178158702470606, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -1609,7 +1591,7 @@ { "name": "offset_contract_eval", "ok": true, - "labels": 4811124, + "labels": 4832242, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -1658,35 +1640,136 @@ { "name": "instance_span_roundtrip_eval", "ok": true, - "instances": 178463, + "instances": 178863, "bad": [] }, { "name": "controlled_distribution", - "ok": false, - "records": 4225235, + "ok": true, + "records": 4242841, + "length_min": 45, + "length_max": 3760, + "nominal_length_outliers_reported_not_gated": 301, "bad_len": 301, "bad_events": 0, "bad_gaps": [], "target_age_bins": { - "0": 73559, - "1": 88134, - "2": 73559, - "3": 88133, - "4": 73557, - "5": 88133, - "6": 73557, - "7": 88133, - "8": 73556, - "9": 88132 + "0": 82313, + "1": 82311, + "2": 82312, + "3": 82313, + "4": 82311, + "5": 82312, + "6": 82313, + "7": 82311, + "9": 82311, + "8": 82312 }, "target_age_bin_gate": "production_2pct", - "target_age_bin_expected_per_bin": 80845.3, - "target_age_bin_tolerance": 1617, + "target_age_bin_expected_per_bin": 82311.9, + "target_age_bin_tolerance": 1647, "target_age_bin_chi_square": null, "target_age_bin_chi_square_df": null, "target_age_bin_chi_square_threshold_p01": null, - "target_age_bin_total_controlled": 808453, + "target_age_bin_total_controlled": 823119, + "target_age_bin_groups": [ + { + "group": "eval:F1", + "ok": true, + "gate": "small_sample_chi_square_p01", + "counts": { + "0": 982, + "1": 981, + "2": 981, + "3": 982, + "4": 981, + "5": 981, + "6": 982, + "7": 981, + "8": 981, + "9": 981 + }, + "expected_per_bin": 981.3, + "tolerance": null, + "chi_square": 0.002140018343014369, + "chi_square_df": 9, + "chi_square_threshold_p01": 21.666, + "total_controlled": 9813, + "bad_bins": [] + }, + { + "group": "eval:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 1231, + "1": 1231, + "2": 1231, + "3": 1231, + "4": 1231, + "5": 1231, + "6": 1231, + "7": 1231, + "8": 1231, + "9": 1231 + }, + "expected_per_bin": 1231.0, + "tolerance": 25, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 12310, + "bad_bins": [] + }, + { + "group": "train:F1", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 36927, + "1": 36926, + "2": 36927, + "3": 36927, + "4": 36926, + "5": 36927, + "6": 36927, + "7": 36926, + "8": 36927, + "9": 36926 + }, + "expected_per_bin": 36926.6, + "tolerance": 739, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 369266, + "bad_bins": [] + }, + { + "group": "train:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 43173, + "1": 43173, + "2": 43173, + "3": 43173, + "4": 43173, + "5": 43173, + "6": 43173, + "7": 43173, + "8": 43173, + "9": 43173 + }, + "expected_per_bin": 43173.0, + "tolerance": 864, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 431730, + "bad_bins": [] + } + ], "verified_fields": [ [ "record", @@ -1709,95 +1792,24 @@ "target_age_bin" ] ], - "bad_bins": [ - { - "bin": 0, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 1, - "count": 88134, - "expected": 80845.3, - "abs_deviation": 7288.699999999997, - "tolerance": 1617 - }, - { - "bin": 2, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 3, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 4, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 5, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 6, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 7, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 8, - "count": 73556, - "expected": 80845.3, - "abs_deviation": 7289.300000000003, - "tolerance": 1617 - }, - { - "bin": 9, - "count": 88132, - "expected": 80845.3, - "abs_deviation": 7286.699999999997, - "tolerance": 1617 - } - ] + "bad_bins": [] }, { "name": "marker", "ok": true, - "eventful_records": 2704278, + "eventful_records": 2721894, "null_records": 1298927 }, { "name": "dedup", "ok": true, "duplicates": 0, - "hashes": 4225235 + "hashes": 4242841 }, { "name": "labels", "ok": true, - "queries": 36822373, + "queries": 36934259, "bad": 0 }, { @@ -1805,8 +1817,8 @@ "ok": true, "split_counts": { "F1": { - "train": 425913, - "eval": 11359 + "train": 443119, + "eval": 11779 }, "F2": { "train": 1948616, @@ -1814,7 +1826,7 @@ }, "F3": { "train": 431730, - "eval": 12330 + "eval": 12310 }, "F4": { "train": 1240513, @@ -1829,14 +1841,14 @@ { "name": "schema_completeness", "ok": true, - "records": 4225235, - "queries": 36822373, + "records": 4242841, + "queries": 36934259, "query_counts_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640, - "F5": 343839 + "F5": 343838 }, "required_record_fields": [ "composition_depth", @@ -1867,13 +1879,13 @@ "name": "schema_admission", "ok": true, "checked": { - "records": 4225235, - "queries": 36822373, - "writes": 28247025, - "events": 3631413, - "controlled_gaps": 808453, - "demonstrations": 6559151, - "label_positions": 119940413, + "records": 4242841, + "queries": 36934259, + "writes": 28387924, + "events": 3654900, + "controlled_gaps": 823119, + "demonstrations": 6823955, + "label_positions": 120858179, "distractors": 1298927 }, "registered_verifier_groups": [ @@ -1893,7 +1905,7 @@ { "name": "query_position_contract", "ok": true, - "checked": 36822373, + "checked": 36934259, "verified_fields": [ [ "query_common", @@ -1950,14 +1962,14 @@ { "name": "f3_age", "ok": true, - "count": 1554271, - "max": 3577, + "count": 1554384, + "max": 3576, "hist": { - "<=32": 27617, - "33-128": 523858, - "129-512": 491677, - "513-1000": 173834, - ">1000": 337285 + "<=32": 27616, + "33-128": 523835, + "129-512": 491658, + "513-1000": 173826, + ">1000": 337449 } }, { @@ -1988,7 +2000,7 @@ { "name": "train_eval_symbol_exclusion", "ok": true, - "checked_train_tokens": 1000002097, + "checked_train_tokens": 1000001463, "sigma_eval": [ "bucket", "field", @@ -2008,7 +2020,7 @@ { "name": "f1_rule_consistency", "ok": true, - "checked": 2763093, + "checked": 2874867, "verified_fields": [ [ "record", @@ -2032,18 +2044,18 @@ { "name": "minimal_suffix", "ok": true, - "total_queries": 36822373, - "checked": 36478534, - "hard_suffix_checked": 36822373, + "total_queries": 36934259, + "checked": 36590421, + "hard_suffix_checked": 36934259, "hard_suffix_threshold": 256, "checked_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640 }, "skipped_by_family": { - "F5": 343839 + "F5": 343838 }, "skip_rationale": { "F5": "F5 is eval-only and its minimal sufficient evidence is recurrence-parameter inference from the modular stream, not a finite symbolic write/correction replay." @@ -2070,20 +2082,20 @@ "active_map_rle" ], [ - "query_F4", + "query_F1", "key" ], [ "query_F3", "key" ], - [ - "query_F1", - "key" - ], [ "query_F2", "entity" + ], + [ + "query_F4", + "key" ] ], "bad": [] @@ -2091,7 +2103,7 @@ { "name": "composition_depth_recompute", "ok": true, - "checked": 4225235, + "checked": 4242841, "verified_fields": [ [ "record", @@ -2107,7 +2119,7 @@ { "name": "age_flag_recompute", "ok": true, - "checked": 23488894, + "checked": 23600781, "verified_fields": [ [ "query_F1", @@ -2218,7 +2230,7 @@ { "name": "provenance_audit", "ok": true, - "checked": 4225235, + "checked": 4242841, "manifest_corpus_version": "syn-1b-v1.3", "verified_fields": [ "corpus_version", @@ -2241,45 +2253,45 @@ "ok": true, "max_attention_window": 256, "counts": { - "f1_unmentioned_partial_query": 364393, - "f1_composition_depth_gt1": 145758, + "f1_unmentioned_partial_query": 379079, + "f1_composition_depth_gt1": 151634, "f2_composition_depth_gt1": 670361, - "f3_supersession_depth_gt1": 111016, - "suffix_gt_max_attention_window": 407832 + "f3_supersession_depth_gt1": 111011, + "suffix_gt_max_attention_window": 409689 }, "eval_family_counts": { - "F1": 11359, + "F1": 11779, "F2": 62466, - "F3": 12330, + "F3": 12310, "F4": 58414, "F5": 33894 }, "eval_hard_primitive_family_counts": { - "F1": 6876, + "F1": 6973, "F2": 20822, - "F3": 5904 + "F3": 5895 }, "eval_composition_family_counts": { - "F1": 3787, + "F1": 3927, "F2": 20822 }, "eval_supersession_family_counts": { - "F3": 3083 + "F3": 3078 }, "eval_query_counts": { - "F1": 71939, - "F3": 43142 + "F1": 74491, + "F3": 43041 }, "eval_suffix_query_counts": { - "F3": 15063, - "F1": 12365 + "F3": 15019, + "F1": 12570 }, "missing": [], "failures": [] }, { "name": "metadata_recomputation", - "ok": false, + "ok": true, "derived_fields": 63, "derived_independently_recomputed": 62, "pending_independent_recompute": [ @@ -2290,60 +2302,8 @@ ], "pending_now_covered_remove_from_allowlist": [], "phantom_pending_not_a_derived_field": [], - "uncovered_derived_fields": [ - { - "scope": "record", - "field": "controlled_gap_tokens", - "owners": [ - "controlled_distribution", - "instance_task_density" - ] - }, - { - "scope": "controlled_gap", - "field": "kind", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "realized", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target_age_bin", - "owners": [ - "controlled_distribution" - ] - } - ], - "structural_gaps": [ - { - "scope": "record", - "field": "controlled_gap_rle", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "record", - "field": "controlled_gaps", - "owners": [ - "controlled_distribution" - ] - } - ], + "uncovered_derived_fields": [], + "structural_gaps": [], "provenance_gaps": [] } ] diff --git a/raw/eval_00000.bin b/raw/eval_00000.bin new file mode 100644 index 0000000000000000000000000000000000000000..90dc090549a9ce36c676ccd5c8489ee9df8f2108 --- /dev/null +++ b/raw/eval_00000.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fdd96dba007176e6e57648713eec0d1a54f1c72e3e9ac35d88b3f17af47298 +size 199999488 diff --git a/raw/eval_00001.bin b/raw/eval_00001.bin new file mode 100644 index 0000000000000000000000000000000000000000..edbc71ce52bf8597aa8d7e2b0e2557aff0c334ae --- /dev/null +++ b/raw/eval_00001.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa52b590438598cfc12f46efa3caf3c084a29fe387406eb474bf2f7e44f203c +size 199999488 diff --git a/raw/eval_00002.bin b/raw/eval_00002.bin new file mode 100644 index 0000000000000000000000000000000000000000..17e96e2d909c301d49ff2dddb3fa4573655ba0bd --- /dev/null +++ b/raw/eval_00002.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb19a1dd02e2c0fccbecdc86dfaa5e6ad87fcf30ab34db210d974508dceb7964 +size 199999488 diff --git a/raw/eval_00003.bin b/raw/eval_00003.bin new file mode 100644 index 0000000000000000000000000000000000000000..3164a33ef692b1ec402a00cbb8702126d0dd3d59 --- /dev/null +++ b/raw/eval_00003.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2662d2cde8a5e5738ba22e13c653f0f1d58faf5ccf43e7fa4f0a6514847e2d10 +size 132800512 diff --git a/raw/generation.log b/raw/generation.log new file mode 100644 index 0000000000000000000000000000000000000000..d8eff095851a2191025318594c9e5fefc551f02e --- /dev/null +++ b/raw/generation.log @@ -0,0 +1,1063 @@ +SYN tokenizer: name=HuggingFaceTB/SmolLM2-135M class=GPT2TokenizerFast transformers=4.57.1 vocab=49152 backend_hash=2225e8fb36485529 +QA start tokenizer +QA done tokenizer ok=True +QA start manifest_tokenizer +QA done manifest_tokenizer ok=True +QA start packing_policy +QA done packing_policy ok=True +QA load_records train +QA loaded_records train count=4063978 +QA start window_integrity_train +QA done window_integrity_train ok=True +QA start task_density_train +QA done instance_task_density_train ok=True +QA start offset_contract_train +QA done offset_contract_train ok=True +QA start instance_span_roundtrip_train +QA done instance_span_roundtrip_train ok=True +QA load_records eval +QA loaded_records eval count=178863 +QA start window_integrity_eval +QA done window_integrity_eval ok=True +QA start task_density_eval +QA done instance_task_density_eval ok=True +QA start offset_contract_eval +QA done offset_contract_eval ok=True +QA start instance_span_roundtrip_eval +QA done instance_span_roundtrip_eval ok=True +QA start controlled_distribution +QA done controlled_distribution ok=True +QA start marker +QA done marker ok=True +QA start dedup +QA done dedup ok=True +QA start labels +QA done labels ok=True +QA start split_integrity +QA done split_integrity ok=True +QA start schema_completeness +QA done schema_completeness ok=True +QA start schema_admission +QA done schema_admission ok=True +QA start query_position_contract +QA done query_position_contract ok=True +QA start distractor_surface +QA done distractor_surface ok=True +QA start f3_age +QA done f3_age ok=True +QA start filler_scaffolding +QA done filler_scaffolding ok=True +QA start train_eval_symbol_exclusion +QA done train_eval_symbol_exclusion ok=True +QA start f1_rule_consistency +QA done f1_rule_consistency ok=True +QA start minimal_suffix +QA done minimal_suffix ok=True +QA start composition_depth +QA done composition_depth_recompute ok=True +QA start age_flag +QA done age_flag_recompute ok=True +QA start content_decode +QA done content_decode ok=True +QA start provenance +QA done provenance_audit ok=True +QA start difficulty_strata +QA done difficulty_strata ok=True +QA start metadata_recomputation +QA done metadata_recomputation ok=True +{ + "summary": { + "corpus_version": "syn-1b-v1.3", + "registry_hash": "99b516ce6a5ee5bea24ec3b32466810e284e2cab8e7f0a5fc32557289deec258", + "splits": { + "train": { + "family_tokens": { + "F1": 300000256, + "F2": 250000062, + "F3": 280001063, + "F4": 170000082 + }, + "family_task_tokens": { + "F1": 74921328, + "F2": 197916236, + "F3": 32836178, + "F4": 135886047 + }, + "total_tokens": 8324624384, + "sidecar_records": 4063978, + "windows": 2032379, + "roundtrip_rejected": 0, + "roundtrip_rejection_rate": 0.0 + }, + "eval": { + "family_tokens": { + "F1": 8000666, + "F2": 8000028, + "F3": 8001916, + "F4": 8000112, + "F5": 8000160 + }, + "family_task_tokens": { + "F1": 1992537, + "F2": 6328985, + "F3": 937778, + "F4": 6392544, + "F5": 8000160 + }, + "total_tokens": 366399488, + "sidecar_records": 178863, + "windows": 89453, + "roundtrip_rejected": 0, + "roundtrip_rejection_rate": 0.0 + } + }, + "tokenizer_identity": { + "name_or_path": "HuggingFaceTB/SmolLM2-135M", + "tokenizer_class": "GPT2TokenizerFast", + "transformers_version": "4.57.1", + "vocab_size": 49152, + "length": 49152, + "backend_hash": "2225e8fb36485529d3c826106f8bec359b719a6bcc3f5d6314a834c7be153905", + "vocab_hash": "e6d44ded9564218b7ce3d7c5517f78bb4eb2f0f239f599c1f5129c90e66ed2ff" + } + }, + "qa": { + "ok": true, + "checks": [ + { + "name": "tokenizer", + "ok": true, + "missing": [], + "sigma": 64, + "bg_vocab": 84 + }, + { + "name": "manifest_tokenizer", + "ok": true, + "mismatches": {}, + "tokenizer": "HuggingFaceTB/SmolLM2-135M" + }, + { + "name": "packing_policy", + "ok": true, + "mismatches": {}, + "policy": { + "unit": "fixed_window", + "window_tokens": 4096, + "max_synthetic_instances_per_window": 2, + "window_background": "eos_padding_for_standalone_dry_run", + "min_task_fraction_by_family": { + "F1": 0.25, + "F2": 0.25, + "F3": 0.25, + "F4": 0.25, + "F5": 0.25 + }, + "min_queries_by_family": { + "F1": 4, + "F2": 4, + "F3": 2, + "F4": 4 + }, + "instance_boundary_mask": false, + "eos_between_instances": true, + "note": "Production SYN is web/code co-packed; standalone generator pads missing web stream with EOS." + } + }, + { + "name": "window_integrity_train", + "ok": true, + "bad_records": 0, + "crowded_windows": 0, + "verified_fields": [ + [ + "record", + "token_hash" + ], + [ + "record", + "token_len" + ] + ] + }, + { + "name": "instance_task_density_train", + "ok": true, + "instance_fraction_mean": 0.8130386683175134, + "instance_fraction_min": 0.648, + "instance_fraction_max": 1.0, + "query_count_min": 2, + "query_count_mean": 8.684256164772545, + "min_task_fraction_by_family": { + "F1": 0.25, + "F2": 0.25, + "F3": 0.25, + "F4": 0.25, + "F5": 0.25 + }, + "min_queries_by_family": { + "F1": 4, + "F2": 4, + "F3": 2, + "F4": 4 + }, + "verified_fields": [ + [ + "record", + "density_denominator" + ], + [ + "record", + "controlled_gap_adjusted_task_fraction" + ] + ], + "bad_records": [] + }, + { + "name": "offset_contract_train", + "ok": true, + "labels": 116025937, + "bad": 0, + "reconcile_bad": [], + "verified_fields": [ + [ + "label_position", + "pos" + ], + [ + "label_position", + "expected" + ], + [ + "label_position", + "decoded" + ], + [ + "event", + "pos" + ], + [ + "query_common", + "pos" + ], + [ + "query_common", + "answer_pos" + ], + [ + "write", + "pos" + ], + [ + "demonstration", + "pos" + ], + [ + "demonstration", + "answer_pos" + ], + [ + "distractor", + "pos" + ] + ] + }, + { + "name": "instance_span_roundtrip_train", + "ok": true, + "instances": 4063978, + "bad": [] + }, + { + "name": "window_integrity_eval", + "ok": true, + "bad_records": 0, + "crowded_windows": 0, + "verified_fields": [ + [ + "record", + "token_hash" + ], + [ + "record", + "token_len" + ] + ] + }, + { + "name": "instance_task_density_eval", + "ok": true, + "instance_fraction_mean": 0.8457944120308599, + "instance_fraction_min": 0.664, + "instance_fraction_max": 1.0, + "query_count_min": 1, + "query_count_mean": 9.178158702470606, + "min_task_fraction_by_family": { + "F1": 0.25, + "F2": 0.25, + "F3": 0.25, + "F4": 0.25, + "F5": 0.25 + }, + "min_queries_by_family": { + "F1": 4, + "F2": 4, + "F3": 2, + "F4": 4 + }, + "verified_fields": [ + [ + "record", + "density_denominator" + ], + [ + "record", + "controlled_gap_adjusted_task_fraction" + ] + ], + "bad_records": [] + }, + { + "name": "offset_contract_eval", + "ok": true, + "labels": 4832242, + "bad": 0, + "reconcile_bad": [], + "verified_fields": [ + [ + "label_position", + "pos" + ], + [ + "label_position", + "expected" + ], + [ + "label_position", + "decoded" + ], + [ + "event", + "pos" + ], + [ + "query_common", + "pos" + ], + [ + "query_common", + "answer_pos" + ], + [ + "write", + "pos" + ], + [ + "demonstration", + "pos" + ], + [ + "demonstration", + "answer_pos" + ], + [ + "distractor", + "pos" + ] + ] + }, + { + "name": "instance_span_roundtrip_eval", + "ok": true, + "instances": 178863, + "bad": [] + }, + { + "name": "controlled_distribution", + "ok": true, + "records": 4242841, + "length_min": 45, + "length_max": 3760, + "nominal_length_outliers_reported_not_gated": 301, + "bad_len": 301, + "bad_events": 0, + "bad_gaps": [], + "target_age_bins": { + "0": 82313, + "1": 82311, + "2": 82312, + "3": 82313, + "4": 82311, + "5": 82312, + "6": 82313, + "7": 82311, + "9": 82311, + "8": 82312 + }, + "target_age_bin_gate": "production_2pct", + "target_age_bin_expected_per_bin": 82311.9, + "target_age_bin_tolerance": 1647, + "target_age_bin_chi_square": null, + "target_age_bin_chi_square_df": null, + "target_age_bin_chi_square_threshold_p01": null, + "target_age_bin_total_controlled": 823119, + "target_age_bin_groups": [ + { + "group": "eval:F1", + "ok": true, + "gate": "small_sample_chi_square_p01", + "counts": { + "0": 982, + "1": 981, + "2": 981, + "3": 982, + "4": 981, + "5": 981, + "6": 982, + "7": 981, + "8": 981, + "9": 981 + }, + "expected_per_bin": 981.3, + "tolerance": null, + "chi_square": 0.002140018343014369, + "chi_square_df": 9, + "chi_square_threshold_p01": 21.666, + "total_controlled": 9813, + "bad_bins": [] + }, + { + "group": "eval:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 1231, + "1": 1231, + "2": 1231, + "3": 1231, + "4": 1231, + "5": 1231, + "6": 1231, + "7": 1231, + "8": 1231, + "9": 1231 + }, + "expected_per_bin": 1231.0, + "tolerance": 25, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 12310, + "bad_bins": [] + }, + { + "group": "train:F1", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 36927, + "1": 36926, + "2": 36927, + "3": 36927, + "4": 36926, + "5": 36927, + "6": 36927, + "7": 36926, + "8": 36927, + "9": 36926 + }, + "expected_per_bin": 36926.6, + "tolerance": 739, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 369266, + "bad_bins": [] + }, + { + "group": "train:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 43173, + "1": 43173, + "2": 43173, + "3": 43173, + "4": 43173, + "5": 43173, + "6": 43173, + "7": 43173, + "8": 43173, + "9": 43173 + }, + "expected_per_bin": 43173.0, + "tolerance": 864, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 431730, + "bad_bins": [] + } + ], + "verified_fields": [ + [ + "record", + "controlled_gap_tokens" + ], + [ + "controlled_gap", + "kind" + ], + [ + "controlled_gap", + "realized" + ], + [ + "controlled_gap", + "target" + ], + [ + "controlled_gap", + "target_age_bin" + ] + ], + "bad_bins": [] + }, + { + "name": "marker", + "ok": true, + "eventful_records": 2721894, + "null_records": 1298927 + }, + { + "name": "dedup", + "ok": true, + "duplicates": 0, + "hashes": 4242841 + }, + { + "name": "labels", + "ok": true, + "queries": 36934259, + "bad": 0 + }, + { + "name": "split_integrity", + "ok": true, + "split_counts": { + "F1": { + "train": 443119, + "eval": 11779 + }, + "F2": { + "train": 1948616, + "eval": 62466 + }, + "F3": { + "train": 431730, + "eval": 12310 + }, + "F4": { + "train": 1240513, + "eval": 58414 + }, + "F5": { + "eval": 33894 + } + }, + "bad": [] + }, + { + "name": "schema_completeness", + "ok": true, + "records": 4242841, + "queries": 36934259, + "query_counts_by_family": { + "F1": 2874867, + "F2": 19171530, + "F3": 1554384, + "F4": 12989640, + "F5": 343838 + }, + "required_record_fields": [ + "composition_depth", + "controlled_gap_adjusted_task_fraction", + "controlled_gap_tokens", + "corpus_version", + "density_denominator", + "distractors", + "events", + "family", + "filler_token_count", + "instance_id", + "label_positions", + "queries", + "registry_ids", + "shard", + "split", + "start_offset", + "task_token_count", + "token_hash", + "token_len", + "window_index", + "writes" + ], + "bad": [] + }, + { + "name": "schema_admission", + "ok": true, + "checked": { + "records": 4242841, + "queries": 36934259, + "writes": 28387924, + "events": 3654900, + "controlled_gaps": 823119, + "demonstrations": 6823955, + "label_positions": 120858179, + "distractors": 1298927 + }, + "registered_verifier_groups": [ + "controlled_gap", + "demonstration", + "distractor", + "event", + "label_position", + "query_common", + "query_family", + "record", + "write" + ], + "registry_mismatches": [], + "bad": [] + }, + { + "name": "query_position_contract", + "ok": true, + "checked": 36934259, + "verified_fields": [ + [ + "query_common", + "answer" + ], + [ + "query_common", + "answer_pos" + ], + [ + "query_common", + "prediction_anchor" + ] + ], + "bad": [] + }, + { + "name": "distractor_surface", + "ok": true, + "checked": 1298927, + "required": { + "F1": [ + "means" + ], + "F2": [ + "exchanged" + ], + "F3": [ + "box", + "key", + "opens" + ] + }, + "verified_fields": [ + [ + "distractor", + "mimics_family" + ], + [ + "distractor", + "variant" + ], + [ + "distractor", + "pos" + ], + [ + "record", + "pseudo_event_pos" + ] + ], + "bad": [] + }, + { + "name": "f3_age", + "ok": true, + "count": 1554384, + "max": 3576, + "hist": { + "<=32": 27616, + "33-128": 523835, + "129-512": 491658, + "513-1000": 173826, + ">1000": 337449 + } + }, + { + "name": "filler_scaffolding", + "ok": true, + "filler_counts": {}, + "count_bad": [], + "verified_fields": [ + [ + "record", + "filler_rle" + ], + [ + "record", + "filler_token_count" + ], + [ + "record", + "task_token_count" + ], + [ + "record", + "task_fraction" + ] + ], + "structural_counts": {} + }, + { + "name": "train_eval_symbol_exclusion", + "ok": true, + "checked_train_tokens": 1000001463, + "sigma_eval": [ + "bucket", + "field", + "fish", + "night", + "olive", + "drum", + "salt", + "parrot", + "horse", + "root", + "rabbit", + "onion" + ], + "bad": [] + }, + { + "name": "f1_rule_consistency", + "ok": true, + "checked": 2874867, + "verified_fields": [ + [ + "record", + "active_map_rle" + ], + [ + "event", + "changed_symbols" + ], + [ + "event", + "mentioned_symbols" + ], + [ + "event", + "restatement" + ] + ], + "bad": [] + }, + { + "name": "minimal_suffix", + "ok": true, + "total_queries": 36934259, + "checked": 36590421, + "hard_suffix_checked": 36934259, + "hard_suffix_threshold": 256, + "checked_by_family": { + "F1": 2874867, + "F2": 19171530, + "F3": 1554384, + "F4": 12989640 + }, + "skipped_by_family": { + "F5": 343838 + }, + "skip_rationale": { + "F5": "F5 is eval-only and its minimal sufficient evidence is recurrence-parameter inference from the modular stream, not a finite symbolic write/correction replay." + }, + "verified_fields": [ + [ + "query_common", + "minimal_sufficient_suffix_len" + ], + [ + "query_common", + "hard_suffix" + ], + [ + "query_common", + "evidence_positions" + ], + [ + "query_common", + "answer" + ], + [ + "record", + "active_map_rle" + ], + [ + "query_F1", + "key" + ], + [ + "query_F3", + "key" + ], + [ + "query_F2", + "entity" + ], + [ + "query_F4", + "key" + ] + ], + "bad": [] + }, + { + "name": "composition_depth_recompute", + "ok": true, + "checked": 4242841, + "verified_fields": [ + [ + "record", + "composition_depth" + ], + [ + "query_common", + "composition_depth" + ] + ], + "bad": [] + }, + { + "name": "age_flag_recompute", + "ok": true, + "checked": 23600781, + "verified_fields": [ + [ + "query_F1", + "age_from_original_statement" + ], + [ + "query_F1", + "age_from_reversal" + ], + [ + "query_F1", + "mentioned_in_latest_correction" + ], + [ + "query_F2", + "age_from_binding_statement" + ], + [ + "query_F2", + "age_from_swap" + ], + [ + "query_F2", + "entity_was_swapped" + ], + [ + "query_F2", + "entity_ever_swapped" + ], + [ + "query_F3", + "age_write_to_query" + ], + [ + "query_F3", + "age_correction_to_query" + ], + [ + "query_F3", + "mode" + ] + ], + "bad": [] + }, + { + "name": "content_decode", + "ok": true, + "verified_fields": [ + [ + "demonstration", + "answer" + ], + [ + "demonstration", + "key" + ], + [ + "event", + "event_index" + ], + [ + "event", + "key" + ], + [ + "event", + "new" + ], + [ + "event", + "old" + ], + [ + "event", + "source_state" + ], + [ + "event", + "swapped_entities" + ], + [ + "event", + "target_state" + ], + [ + "event", + "type" + ], + [ + "label_position", + "role" + ], + [ + "write", + "entity" + ], + [ + "write", + "key" + ], + [ + "write", + "value" + ] + ], + "bad": [] + }, + { + "name": "provenance_audit", + "ok": true, + "checked": 4242841, + "manifest_corpus_version": "syn-1b-v1.3", + "verified_fields": [ + "corpus_version", + "registry_ids", + "instance_id", + "seed", + "shard", + "window_index", + "start_offset", + "family", + "split", + "text_hash", + "token_hash", + "transition_id" + ], + "bad": [] + }, + { + "name": "difficulty_strata", + "ok": true, + "max_attention_window": 256, + "counts": { + "f1_unmentioned_partial_query": 379079, + "f1_composition_depth_gt1": 151634, + "f2_composition_depth_gt1": 670361, + "f3_supersession_depth_gt1": 111011, + "suffix_gt_max_attention_window": 409689 + }, + "eval_family_counts": { + "F1": 11779, + "F2": 62466, + "F3": 12310, + "F4": 58414, + "F5": 33894 + }, + "eval_hard_primitive_family_counts": { + "F1": 6973, + "F2": 20822, + "F3": 5895 + }, + "eval_composition_family_counts": { + "F1": 3927, + "F2": 20822 + }, + "eval_supersession_family_counts": { + "F3": 3078 + }, + "eval_query_counts": { + "F1": 74491, + "F3": 43041 + }, + "eval_suffix_query_counts": { + "F3": 15019, + "F1": 12570 + }, + "missing": [], + "failures": [] + }, + { + "name": "metadata_recomputation", + "ok": true, + "derived_fields": 63, + "derived_independently_recomputed": 62, + "pending_independent_recompute": [ + [ + "query_common", + "target_age_bin" + ] + ], + "pending_now_covered_remove_from_allowlist": [], + "phantom_pending_not_a_derived_field": [], + "uncovered_derived_fields": [], + "structural_gaps": [], + "provenance_gaps": [] + } + ] + } +} + Command being timed: "python3 train/gen_SYN-1B.py --out-dir /home/hotaisle/datasets/SYN-1B --train-tokens 1000000000 --eval-tokens 40000000 --shard-size-tokens 100000000 --seq-len 4096 --seed 1337" + User time (seconds): 45798.49 + System time (seconds): 368.26 + Percent of CPU this job got: 272% + Elapsed (wall clock) time (h:mm:ss or m:ss): 4:42:46 + Average shared text size (kbytes): 0 + Average unshared data size (kbytes): 0 + Average stack size (kbytes): 0 + Average total size (kbytes): 0 + Maximum resident set size (kbytes): 161037100 + Average resident set size (kbytes): 0 + Major (requiring I/O) page faults: 0 + Minor (reclaiming a frame) page faults: 72361811 + Voluntary context switches: 2508026 + Involuntary context switches: 493903 + Swaps: 0 + File system inputs: 0 + File system outputs: 39812728 + Socket messages sent: 0 + Socket messages received: 0 + Signals delivered: 0 + Page size (bytes): 4096 + Exit status: 0 diff --git a/hf_export.log b/raw/hf_export.log similarity index 73% rename from hf_export.log rename to raw/hf_export.log index 4ec8425491513b169fb5990ad578f5003b6f5af6..13a0cdc316520721064dd2b2d3c8ada6ddb629f9 100644 --- a/hf_export.log +++ b/raw/hf_export.log @@ -1,46 +1,45 @@ -train: rows=118,784 tokens=30,334,073 rate=3,948 rows/s -train: rows=245,760 tokens=60,716,946 rate=4,080 rows/s -train: rows=368,640 tokens=91,818,757 rate=4,085 rows/s -train: rows=495,616 tokens=122,488,192 rate=4,122 rows/s -train: rows=622,592 tokens=153,876,267 rate=4,136 rows/s -train: rows=745,472 tokens=185,128,234 rate=4,129 rows/s -train: rows=872,448 tokens=216,381,747 rate=4,143 rows/s -train: rows=999,424 tokens=247,772,316 rate=4,154 rows/s -train: rows=1,126,400 tokens=279,015,572 rate=4,162 rows/s -train: rows=1,253,376 tokens=310,495,551 rate=4,168 rows/s -train: rows=1,380,352 tokens=342,145,799 rate=4,173 rows/s -train: rows=1,511,424 tokens=373,562,173 rate=4,188 rows/s -train: rows=1,638,400 tokens=405,665,394 rate=4,191 rows/s -train: rows=1,765,376 tokens=437,277,089 rate=4,193 rows/s -train: rows=1,896,448 tokens=468,942,542 rate=4,205 rows/s -train: rows=2,027,520 tokens=501,059,776 rate=4,213 rows/s -train: rows=2,154,496 tokens=533,418,643 rate=4,214 rows/s -train: rows=2,285,568 tokens=565,536,015 rate=4,222 rows/s -train: rows=2,416,640 tokens=597,194,922 rate=4,230 rows/s -train: rows=2,547,712 tokens=629,607,366 rate=4,235 rows/s -train: rows=2,678,784 tokens=661,980,465 rate=4,240 rows/s -train: rows=2,809,856 tokens=694,342,625 rate=4,244 rows/s -train: rows=2,940,928 tokens=726,842,944 rate=4,250 rows/s -train: rows=3,072,000 tokens=759,141,858 rate=4,254 rows/s -train: rows=3,203,072 tokens=791,579,449 rate=4,259 rows/s -train: rows=3,334,144 tokens=823,911,017 rate=4,263 rows/s -train: rows=3,465,216 tokens=856,298,067 rate=4,267 rows/s -train: rows=3,596,288 tokens=889,044,539 rate=4,270 rows/s -train: rows=3,727,360 tokens=921,607,892 rate=4,273 rows/s -train: rows=3,858,432 tokens=954,241,774 rate=4,276 rows/s -train: rows=3,989,504 tokens=986,822,976 rate=4,278 rows/s -validation: rows=135,168 tokens=31,147,198 rate=4,506 rows/s +train: rows=122,880 tokens=30,519,160 rate=4,096 rows/s +train: rows=249,856 tokens=61,468,322 rate=4,154 rows/s +train: rows=376,832 tokens=92,741,634 rate=4,171 rows/s +train: rows=503,808 tokens=123,987,885 rate=4,186 rows/s +train: rows=630,784 tokens=155,462,885 rate=4,196 rows/s +train: rows=757,760 tokens=187,268,593 rate=4,202 rows/s +train: rows=888,832 tokens=218,767,746 rate=4,225 rows/s +train: rows=1,019,904 tokens=251,013,865 rate=4,238 rows/s +train: rows=1,146,880 tokens=283,181,453 rate=4,236 rows/s +train: rows=1,277,952 tokens=315,182,310 rate=4,247 rows/s +train: rows=1,409,024 tokens=347,477,558 rate=4,258 rows/s +train: rows=1,540,096 tokens=379,481,942 rate=4,268 rows/s +train: rows=1,671,168 tokens=411,606,505 rate=4,275 rows/s +train: rows=1,802,240 tokens=443,854,378 rate=4,281 rows/s +train: rows=1,933,312 tokens=476,135,670 rate=4,287 rows/s +train: rows=2,064,384 tokens=508,805,087 rate=4,292 rows/s +train: rows=2,199,552 tokens=541,242,714 rate=4,302 rows/s +train: rows=2,330,624 tokens=574,062,256 rate=4,304 rows/s +train: rows=2,465,792 tokens=606,750,221 rate=4,313 rows/s +train: rows=2,596,864 tokens=639,623,091 rate=4,316 rows/s +train: rows=2,732,032 tokens=672,256,007 rate=4,325 rows/s +train: rows=2,863,104 tokens=705,385,633 rate=4,326 rows/s +train: rows=2,998,272 tokens=738,016,122 rate=4,333 rows/s +train: rows=3,133,440 tokens=771,027,771 rate=4,339 rows/s +train: rows=3,268,608 tokens=804,270,958 rate=4,344 rows/s +train: rows=3,403,776 tokens=837,538,805 rate=4,349 rows/s +train: rows=3,538,944 tokens=870,803,481 rate=4,354 rows/s +train: rows=3,670,016 tokens=904,014,557 rate=4,354 rows/s +train: rows=3,805,184 tokens=936,998,144 rate=4,359 rows/s +train: rows=3,940,352 tokens=969,902,253 rate=4,364 rows/s +validation: rows=139,264 tokens=31,681,240 rate=4,642 rows/s { - "created_unix": 1783319739, + "created_unix": 1783352765, "syn_dir": "/home/hotaisle/datasets/SYN-1B", "splits": { "train": { "source_split": "train", "hf_split": "train", - "rows": 4046772, - "tokens": 1000002097, + "rows": 4063978, + "tokens": 1000001463, "families": { - "F1": 425913, + "F1": 443119, "F2": 1948616, "F3": 431730, "F4": 1240513 @@ -208,19 +207,19 @@ validation: rows=135,168 tokens=31,147,198 rate=4,506 rows/s }, { "path": "/home/hotaisle/datasets/SYN-1B/data/train-00040.parquet", - "rows": 46772 + "rows": 63978 } ] }, "validation": { "source_split": "eval", "hf_split": "validation", - "rows": 178463, - "tokens": 40002369, + "rows": 178863, + "tokens": 40002882, "families": { - "F1": 11359, + "F1": 11779, "F2": 62466, - "F3": 12330, + "F3": 12310, "F4": 58414, "F5": 33894 }, @@ -231,7 +230,7 @@ validation: rows=135,168 tokens=31,147,198 rate=4,506 rows/s }, { "path": "/home/hotaisle/datasets/SYN-1B/data/validation-00001.parquet", - "rows": 78463 + "rows": 78863 } ] } @@ -239,23 +238,23 @@ validation: rows=135,168 tokens=31,147,198 rate=4,506 rows/s "parquet_schema": "text: string\ninstance_id: string\nfamily: string\nsyn_split: string\ntoken_len: int32\ntask_token_count: int32\nfiller_token_count: int32\ncontrolled_gap_tokens: int32\ncomposition_depth: int32\nnum_queries: int32\nshard: string\nwindow_index: int64\nstart_offset: int32\ntoken_hash: string" } Command being timed: "python3 train/export_SYN-1B_hf.py --syn-dir /home/hotaisle/datasets/SYN-1B --rows-per-shard 100000 --batch-size 4096 --overwrite" - User time (seconds): 963.26 - System time (seconds): 31.92 + User time (seconds): 946.39 + System time (seconds): 33.51 Percent of CPU this job got: 100% - Elapsed (wall clock) time (h:mm:ss or m:ss): 16:27.91 + Elapsed (wall clock) time (h:mm:ss or m:ss): 16:12.67 Average shared text size (kbytes): 0 Average unshared data size (kbytes): 0 Average stack size (kbytes): 0 Average total size (kbytes): 0 - Maximum resident set size (kbytes): 17129112 + Maximum resident set size (kbytes): 17217636 Average resident set size (kbytes): 0 Major (requiring I/O) page faults: 0 - Minor (reclaiming a frame) page faults: 10472662 - Voluntary context switches: 342 - Involuntary context switches: 2583 + Minor (reclaiming a frame) page faults: 10785014 + Voluntary context switches: 344 + Involuntary context switches: 3540 Swaps: 0 File system inputs: 0 - File system outputs: 3242152 + File system outputs: 3241288 Socket messages sent: 0 Socket messages received: 0 Signals delivered: 0 diff --git a/hf_export_manifest.json b/raw/hf_export_manifest.json similarity index 96% rename from hf_export_manifest.json rename to raw/hf_export_manifest.json index 2d821a63594e1d1ac8b03f65ec8ce7e44685883d..03910c8d11dde972890cb9b83f3e957721b162e4 100644 --- a/hf_export_manifest.json +++ b/raw/hf_export_manifest.json @@ -1,14 +1,14 @@ { - "created_unix": 1783319739, + "created_unix": 1783352765, "syn_dir": "/home/hotaisle/datasets/SYN-1B", "splits": { "train": { "source_split": "train", "hf_split": "train", - "rows": 4046772, - "tokens": 1000002097, + "rows": 4063978, + "tokens": 1000001463, "families": { - "F1": 425913, + "F1": 443119, "F2": 1948616, "F3": 431730, "F4": 1240513 @@ -176,19 +176,19 @@ }, { "path": "/home/hotaisle/datasets/SYN-1B/data/train-00040.parquet", - "rows": 46772 + "rows": 63978 } ] }, "validation": { "source_split": "eval", "hf_split": "validation", - "rows": 178463, - "tokens": 40002369, + "rows": 178863, + "tokens": 40002882, "families": { - "F1": 11359, + "F1": 11779, "F2": 62466, - "F3": 12330, + "F3": 12310, "F4": 58414, "F5": 33894 }, @@ -199,7 +199,7 @@ }, { "path": "/home/hotaisle/datasets/SYN-1B/data/validation-00001.parquet", - "rows": 78463 + "rows": 78863 } ] } diff --git a/manifest.json b/raw/manifest.json similarity index 81% rename from manifest.json rename to raw/manifest.json index c78e7cddb6b7bc8c1b8832b7c48f020a3150c835..ab30219804c22ee68cfd352756dd01160926f74b 100644 --- a/manifest.json +++ b/raw/manifest.json @@ -386,11 +386,15 @@ }, { "name": "train_00082.bin", - "n_tokens": 89391104 + "n_tokens": 99999744 + }, + { + "name": "train_00083.bin", + "n_tokens": 24645632 } ], - "total_tokens": 8289370112, - "approx_sequences": 2023772 + "total_tokens": 8324624384, + "approx_sequences": 2032379 }, "eval": { "shards": [ @@ -408,17 +412,17 @@ }, { "name": "eval_00003.bin", - "n_tokens": 65585152 + "n_tokens": 66400256 } ], - "total_tokens": 365584384, - "approx_sequences": 89254 + "total_tokens": 366399488, + "approx_sequences": 89453 } }, - "created_unix": 1783316665, + "created_unix": 1783348011, "read_hint": "np.memmap(/, dtype=np.uint16, mode='r') -> 1-D token stream", "qa": { - "ok": false, + "ok": true, "checks": [ { "name": "tokenizer", @@ -479,11 +483,11 @@ { "name": "instance_task_density_train", "ok": true, - "instance_fraction_mean": 0.8129792894317726, + "instance_fraction_mean": 0.8130386683175134, "instance_fraction_min": 0.648, "instance_fraction_max": 1.0, "query_count_min": 2, - "query_count_mean": 8.694136956566863, + "query_count_mean": 8.684256164772545, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -512,7 +516,7 @@ { "name": "offset_contract_train", "ok": true, - "labels": 115129289, + "labels": 116025937, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -561,7 +565,7 @@ { "name": "instance_span_roundtrip_train", "ok": true, - "instances": 4046772, + "instances": 4063978, "bad": [] }, { @@ -583,11 +587,11 @@ { "name": "instance_task_density_eval", "ok": true, - "instance_fraction_mean": 0.8458349297117158, + "instance_fraction_mean": 0.8457944120308599, "instance_fraction_min": 0.664, "instance_fraction_max": 1.0, "query_count_min": 1, - "query_count_mean": 9.185001933173822, + "query_count_mean": 9.178158702470606, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -616,7 +620,7 @@ { "name": "offset_contract_eval", "ok": true, - "labels": 4811124, + "labels": 4832242, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -665,35 +669,136 @@ { "name": "instance_span_roundtrip_eval", "ok": true, - "instances": 178463, + "instances": 178863, "bad": [] }, { "name": "controlled_distribution", - "ok": false, - "records": 4225235, + "ok": true, + "records": 4242841, + "length_min": 45, + "length_max": 3760, + "nominal_length_outliers_reported_not_gated": 301, "bad_len": 301, "bad_events": 0, "bad_gaps": [], "target_age_bins": { - "0": 73559, - "1": 88134, - "2": 73559, - "3": 88133, - "4": 73557, - "5": 88133, - "6": 73557, - "7": 88133, - "8": 73556, - "9": 88132 + "0": 82313, + "1": 82311, + "2": 82312, + "3": 82313, + "4": 82311, + "5": 82312, + "6": 82313, + "7": 82311, + "9": 82311, + "8": 82312 }, "target_age_bin_gate": "production_2pct", - "target_age_bin_expected_per_bin": 80845.3, - "target_age_bin_tolerance": 1617, + "target_age_bin_expected_per_bin": 82311.9, + "target_age_bin_tolerance": 1647, "target_age_bin_chi_square": null, "target_age_bin_chi_square_df": null, "target_age_bin_chi_square_threshold_p01": null, - "target_age_bin_total_controlled": 808453, + "target_age_bin_total_controlled": 823119, + "target_age_bin_groups": [ + { + "group": "eval:F1", + "ok": true, + "gate": "small_sample_chi_square_p01", + "counts": { + "0": 982, + "1": 981, + "2": 981, + "3": 982, + "4": 981, + "5": 981, + "6": 982, + "7": 981, + "8": 981, + "9": 981 + }, + "expected_per_bin": 981.3, + "tolerance": null, + "chi_square": 0.002140018343014369, + "chi_square_df": 9, + "chi_square_threshold_p01": 21.666, + "total_controlled": 9813, + "bad_bins": [] + }, + { + "group": "eval:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 1231, + "1": 1231, + "2": 1231, + "3": 1231, + "4": 1231, + "5": 1231, + "6": 1231, + "7": 1231, + "8": 1231, + "9": 1231 + }, + "expected_per_bin": 1231.0, + "tolerance": 25, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 12310, + "bad_bins": [] + }, + { + "group": "train:F1", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 36927, + "1": 36926, + "2": 36927, + "3": 36927, + "4": 36926, + "5": 36927, + "6": 36927, + "7": 36926, + "8": 36927, + "9": 36926 + }, + "expected_per_bin": 36926.6, + "tolerance": 739, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 369266, + "bad_bins": [] + }, + { + "group": "train:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 43173, + "1": 43173, + "2": 43173, + "3": 43173, + "4": 43173, + "5": 43173, + "6": 43173, + "7": 43173, + "8": 43173, + "9": 43173 + }, + "expected_per_bin": 43173.0, + "tolerance": 864, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 431730, + "bad_bins": [] + } + ], "verified_fields": [ [ "record", @@ -716,95 +821,24 @@ "target_age_bin" ] ], - "bad_bins": [ - { - "bin": 0, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 1, - "count": 88134, - "expected": 80845.3, - "abs_deviation": 7288.699999999997, - "tolerance": 1617 - }, - { - "bin": 2, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 3, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 4, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 5, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 6, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 7, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 8, - "count": 73556, - "expected": 80845.3, - "abs_deviation": 7289.300000000003, - "tolerance": 1617 - }, - { - "bin": 9, - "count": 88132, - "expected": 80845.3, - "abs_deviation": 7286.699999999997, - "tolerance": 1617 - } - ] + "bad_bins": [] }, { "name": "marker", "ok": true, - "eventful_records": 2704278, + "eventful_records": 2721894, "null_records": 1298927 }, { "name": "dedup", "ok": true, "duplicates": 0, - "hashes": 4225235 + "hashes": 4242841 }, { "name": "labels", "ok": true, - "queries": 36822373, + "queries": 36934259, "bad": 0 }, { @@ -812,8 +846,8 @@ "ok": true, "split_counts": { "F1": { - "train": 425913, - "eval": 11359 + "train": 443119, + "eval": 11779 }, "F2": { "train": 1948616, @@ -821,7 +855,7 @@ }, "F3": { "train": 431730, - "eval": 12330 + "eval": 12310 }, "F4": { "train": 1240513, @@ -836,14 +870,14 @@ { "name": "schema_completeness", "ok": true, - "records": 4225235, - "queries": 36822373, + "records": 4242841, + "queries": 36934259, "query_counts_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640, - "F5": 343839 + "F5": 343838 }, "required_record_fields": [ "composition_depth", @@ -874,13 +908,13 @@ "name": "schema_admission", "ok": true, "checked": { - "records": 4225235, - "queries": 36822373, - "writes": 28247025, - "events": 3631413, - "controlled_gaps": 808453, - "demonstrations": 6559151, - "label_positions": 119940413, + "records": 4242841, + "queries": 36934259, + "writes": 28387924, + "events": 3654900, + "controlled_gaps": 823119, + "demonstrations": 6823955, + "label_positions": 120858179, "distractors": 1298927 }, "registered_verifier_groups": [ @@ -900,7 +934,7 @@ { "name": "query_position_contract", "ok": true, - "checked": 36822373, + "checked": 36934259, "verified_fields": [ [ "query_common", @@ -957,14 +991,14 @@ { "name": "f3_age", "ok": true, - "count": 1554271, - "max": 3577, + "count": 1554384, + "max": 3576, "hist": { - "<=32": 27617, - "33-128": 523858, - "129-512": 491677, - "513-1000": 173834, - ">1000": 337285 + "<=32": 27616, + "33-128": 523835, + "129-512": 491658, + "513-1000": 173826, + ">1000": 337449 } }, { @@ -995,7 +1029,7 @@ { "name": "train_eval_symbol_exclusion", "ok": true, - "checked_train_tokens": 1000002097, + "checked_train_tokens": 1000001463, "sigma_eval": [ "bucket", "field", @@ -1015,7 +1049,7 @@ { "name": "f1_rule_consistency", "ok": true, - "checked": 2763093, + "checked": 2874867, "verified_fields": [ [ "record", @@ -1039,18 +1073,18 @@ { "name": "minimal_suffix", "ok": true, - "total_queries": 36822373, - "checked": 36478534, - "hard_suffix_checked": 36822373, + "total_queries": 36934259, + "checked": 36590421, + "hard_suffix_checked": 36934259, "hard_suffix_threshold": 256, "checked_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640 }, "skipped_by_family": { - "F5": 343839 + "F5": 343838 }, "skip_rationale": { "F5": "F5 is eval-only and its minimal sufficient evidence is recurrence-parameter inference from the modular stream, not a finite symbolic write/correction replay." @@ -1077,20 +1111,20 @@ "active_map_rle" ], [ - "query_F4", + "query_F1", "key" ], [ "query_F3", "key" ], - [ - "query_F1", - "key" - ], [ "query_F2", "entity" + ], + [ + "query_F4", + "key" ] ], "bad": [] @@ -1098,7 +1132,7 @@ { "name": "composition_depth_recompute", "ok": true, - "checked": 4225235, + "checked": 4242841, "verified_fields": [ [ "record", @@ -1114,7 +1148,7 @@ { "name": "age_flag_recompute", "ok": true, - "checked": 23488894, + "checked": 23600781, "verified_fields": [ [ "query_F1", @@ -1225,7 +1259,7 @@ { "name": "provenance_audit", "ok": true, - "checked": 4225235, + "checked": 4242841, "manifest_corpus_version": "syn-1b-v1.3", "verified_fields": [ "corpus_version", @@ -1248,45 +1282,45 @@ "ok": true, "max_attention_window": 256, "counts": { - "f1_unmentioned_partial_query": 364393, - "f1_composition_depth_gt1": 145758, + "f1_unmentioned_partial_query": 379079, + "f1_composition_depth_gt1": 151634, "f2_composition_depth_gt1": 670361, - "f3_supersession_depth_gt1": 111016, - "suffix_gt_max_attention_window": 407832 + "f3_supersession_depth_gt1": 111011, + "suffix_gt_max_attention_window": 409689 }, "eval_family_counts": { - "F1": 11359, + "F1": 11779, "F2": 62466, - "F3": 12330, + "F3": 12310, "F4": 58414, "F5": 33894 }, "eval_hard_primitive_family_counts": { - "F1": 6876, + "F1": 6973, "F2": 20822, - "F3": 5904 + "F3": 5895 }, "eval_composition_family_counts": { - "F1": 3787, + "F1": 3927, "F2": 20822 }, "eval_supersession_family_counts": { - "F3": 3083 + "F3": 3078 }, "eval_query_counts": { - "F1": 71939, - "F3": 43142 + "F1": 74491, + "F3": 43041 }, "eval_suffix_query_counts": { - "F3": 15063, - "F1": 12365 + "F3": 15019, + "F1": 12570 }, "missing": [], "failures": [] }, { "name": "metadata_recomputation", - "ok": false, + "ok": true, "derived_fields": 63, "derived_independently_recomputed": 62, "pending_independent_recompute": [ @@ -1297,60 +1331,8 @@ ], "pending_now_covered_remove_from_allowlist": [], "phantom_pending_not_a_derived_field": [], - "uncovered_derived_fields": [ - { - "scope": "record", - "field": "controlled_gap_tokens", - "owners": [ - "controlled_distribution", - "instance_task_density" - ] - }, - { - "scope": "controlled_gap", - "field": "kind", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "realized", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target_age_bin", - "owners": [ - "controlled_distribution" - ] - } - ], - "structural_gaps": [ - { - "scope": "record", - "field": "controlled_gap_rle", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "record", - "field": "controlled_gaps", - "owners": [ - "controlled_distribution" - ] - } - ], + "uncovered_derived_fields": [], + "structural_gaps": [], "provenance_gaps": [] } ] diff --git a/qa_report.json b/raw/qa_report.json similarity index 73% rename from qa_report.json rename to raw/qa_report.json index 8a579ace3157b6a9abc85906c650835ca46d7a01..92bfb5bfd71d16b95ad20ca6996079ee01b99a04 100644 --- a/qa_report.json +++ b/raw/qa_report.json @@ -1,5 +1,5 @@ { - "ok": false, + "ok": true, "checks": [ { "name": "tokenizer", @@ -60,11 +60,11 @@ { "name": "instance_task_density_train", "ok": true, - "instance_fraction_mean": 0.8129792894317726, + "instance_fraction_mean": 0.8130386683175134, "instance_fraction_min": 0.648, "instance_fraction_max": 1.0, "query_count_min": 2, - "query_count_mean": 8.694136956566863, + "query_count_mean": 8.684256164772545, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -93,7 +93,7 @@ { "name": "offset_contract_train", "ok": true, - "labels": 115129289, + "labels": 116025937, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -142,7 +142,7 @@ { "name": "instance_span_roundtrip_train", "ok": true, - "instances": 4046772, + "instances": 4063978, "bad": [] }, { @@ -164,11 +164,11 @@ { "name": "instance_task_density_eval", "ok": true, - "instance_fraction_mean": 0.8458349297117158, + "instance_fraction_mean": 0.8457944120308599, "instance_fraction_min": 0.664, "instance_fraction_max": 1.0, "query_count_min": 1, - "query_count_mean": 9.185001933173822, + "query_count_mean": 9.178158702470606, "min_task_fraction_by_family": { "F1": 0.25, "F2": 0.25, @@ -197,7 +197,7 @@ { "name": "offset_contract_eval", "ok": true, - "labels": 4811124, + "labels": 4832242, "bad": 0, "reconcile_bad": [], "verified_fields": [ @@ -246,35 +246,136 @@ { "name": "instance_span_roundtrip_eval", "ok": true, - "instances": 178463, + "instances": 178863, "bad": [] }, { "name": "controlled_distribution", - "ok": false, - "records": 4225235, + "ok": true, + "records": 4242841, + "length_min": 45, + "length_max": 3760, + "nominal_length_outliers_reported_not_gated": 301, "bad_len": 301, "bad_events": 0, "bad_gaps": [], "target_age_bins": { - "0": 73559, - "1": 88134, - "2": 73559, - "3": 88133, - "4": 73557, - "5": 88133, - "6": 73557, - "7": 88133, - "8": 73556, - "9": 88132 + "0": 82313, + "1": 82311, + "2": 82312, + "3": 82313, + "4": 82311, + "5": 82312, + "6": 82313, + "7": 82311, + "9": 82311, + "8": 82312 }, "target_age_bin_gate": "production_2pct", - "target_age_bin_expected_per_bin": 80845.3, - "target_age_bin_tolerance": 1617, + "target_age_bin_expected_per_bin": 82311.9, + "target_age_bin_tolerance": 1647, "target_age_bin_chi_square": null, "target_age_bin_chi_square_df": null, "target_age_bin_chi_square_threshold_p01": null, - "target_age_bin_total_controlled": 808453, + "target_age_bin_total_controlled": 823119, + "target_age_bin_groups": [ + { + "group": "eval:F1", + "ok": true, + "gate": "small_sample_chi_square_p01", + "counts": { + "0": 982, + "1": 981, + "2": 981, + "3": 982, + "4": 981, + "5": 981, + "6": 982, + "7": 981, + "8": 981, + "9": 981 + }, + "expected_per_bin": 981.3, + "tolerance": null, + "chi_square": 0.002140018343014369, + "chi_square_df": 9, + "chi_square_threshold_p01": 21.666, + "total_controlled": 9813, + "bad_bins": [] + }, + { + "group": "eval:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 1231, + "1": 1231, + "2": 1231, + "3": 1231, + "4": 1231, + "5": 1231, + "6": 1231, + "7": 1231, + "8": 1231, + "9": 1231 + }, + "expected_per_bin": 1231.0, + "tolerance": 25, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 12310, + "bad_bins": [] + }, + { + "group": "train:F1", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 36927, + "1": 36926, + "2": 36927, + "3": 36927, + "4": 36926, + "5": 36927, + "6": 36927, + "7": 36926, + "8": 36927, + "9": 36926 + }, + "expected_per_bin": 36926.6, + "tolerance": 739, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 369266, + "bad_bins": [] + }, + { + "group": "train:F3", + "ok": true, + "gate": "production_2pct", + "counts": { + "0": 43173, + "1": 43173, + "2": 43173, + "3": 43173, + "4": 43173, + "5": 43173, + "6": 43173, + "7": 43173, + "8": 43173, + "9": 43173 + }, + "expected_per_bin": 43173.0, + "tolerance": 864, + "chi_square": null, + "chi_square_df": null, + "chi_square_threshold_p01": null, + "total_controlled": 431730, + "bad_bins": [] + } + ], "verified_fields": [ [ "record", @@ -297,95 +398,24 @@ "target_age_bin" ] ], - "bad_bins": [ - { - "bin": 0, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 1, - "count": 88134, - "expected": 80845.3, - "abs_deviation": 7288.699999999997, - "tolerance": 1617 - }, - { - "bin": 2, - "count": 73559, - "expected": 80845.3, - "abs_deviation": 7286.300000000003, - "tolerance": 1617 - }, - { - "bin": 3, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 4, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 5, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 6, - "count": 73557, - "expected": 80845.3, - "abs_deviation": 7288.300000000003, - "tolerance": 1617 - }, - { - "bin": 7, - "count": 88133, - "expected": 80845.3, - "abs_deviation": 7287.699999999997, - "tolerance": 1617 - }, - { - "bin": 8, - "count": 73556, - "expected": 80845.3, - "abs_deviation": 7289.300000000003, - "tolerance": 1617 - }, - { - "bin": 9, - "count": 88132, - "expected": 80845.3, - "abs_deviation": 7286.699999999997, - "tolerance": 1617 - } - ] + "bad_bins": [] }, { "name": "marker", "ok": true, - "eventful_records": 2704278, + "eventful_records": 2721894, "null_records": 1298927 }, { "name": "dedup", "ok": true, "duplicates": 0, - "hashes": 4225235 + "hashes": 4242841 }, { "name": "labels", "ok": true, - "queries": 36822373, + "queries": 36934259, "bad": 0 }, { @@ -393,8 +423,8 @@ "ok": true, "split_counts": { "F1": { - "train": 425913, - "eval": 11359 + "train": 443119, + "eval": 11779 }, "F2": { "train": 1948616, @@ -402,7 +432,7 @@ }, "F3": { "train": 431730, - "eval": 12330 + "eval": 12310 }, "F4": { "train": 1240513, @@ -417,14 +447,14 @@ { "name": "schema_completeness", "ok": true, - "records": 4225235, - "queries": 36822373, + "records": 4242841, + "queries": 36934259, "query_counts_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640, - "F5": 343839 + "F5": 343838 }, "required_record_fields": [ "composition_depth", @@ -455,13 +485,13 @@ "name": "schema_admission", "ok": true, "checked": { - "records": 4225235, - "queries": 36822373, - "writes": 28247025, - "events": 3631413, - "controlled_gaps": 808453, - "demonstrations": 6559151, - "label_positions": 119940413, + "records": 4242841, + "queries": 36934259, + "writes": 28387924, + "events": 3654900, + "controlled_gaps": 823119, + "demonstrations": 6823955, + "label_positions": 120858179, "distractors": 1298927 }, "registered_verifier_groups": [ @@ -481,7 +511,7 @@ { "name": "query_position_contract", "ok": true, - "checked": 36822373, + "checked": 36934259, "verified_fields": [ [ "query_common", @@ -538,14 +568,14 @@ { "name": "f3_age", "ok": true, - "count": 1554271, - "max": 3577, + "count": 1554384, + "max": 3576, "hist": { - "<=32": 27617, - "33-128": 523858, - "129-512": 491677, - "513-1000": 173834, - ">1000": 337285 + "<=32": 27616, + "33-128": 523835, + "129-512": 491658, + "513-1000": 173826, + ">1000": 337449 } }, { @@ -576,7 +606,7 @@ { "name": "train_eval_symbol_exclusion", "ok": true, - "checked_train_tokens": 1000002097, + "checked_train_tokens": 1000001463, "sigma_eval": [ "bucket", "field", @@ -596,7 +626,7 @@ { "name": "f1_rule_consistency", "ok": true, - "checked": 2763093, + "checked": 2874867, "verified_fields": [ [ "record", @@ -620,18 +650,18 @@ { "name": "minimal_suffix", "ok": true, - "total_queries": 36822373, - "checked": 36478534, - "hard_suffix_checked": 36822373, + "total_queries": 36934259, + "checked": 36590421, + "hard_suffix_checked": 36934259, "hard_suffix_threshold": 256, "checked_by_family": { - "F1": 2763093, + "F1": 2874867, "F2": 19171530, - "F3": 1554271, + "F3": 1554384, "F4": 12989640 }, "skipped_by_family": { - "F5": 343839 + "F5": 343838 }, "skip_rationale": { "F5": "F5 is eval-only and its minimal sufficient evidence is recurrence-parameter inference from the modular stream, not a finite symbolic write/correction replay." @@ -658,20 +688,20 @@ "active_map_rle" ], [ - "query_F4", + "query_F1", "key" ], [ "query_F3", "key" ], - [ - "query_F1", - "key" - ], [ "query_F2", "entity" + ], + [ + "query_F4", + "key" ] ], "bad": [] @@ -679,7 +709,7 @@ { "name": "composition_depth_recompute", "ok": true, - "checked": 4225235, + "checked": 4242841, "verified_fields": [ [ "record", @@ -695,7 +725,7 @@ { "name": "age_flag_recompute", "ok": true, - "checked": 23488894, + "checked": 23600781, "verified_fields": [ [ "query_F1", @@ -806,7 +836,7 @@ { "name": "provenance_audit", "ok": true, - "checked": 4225235, + "checked": 4242841, "manifest_corpus_version": "syn-1b-v1.3", "verified_fields": [ "corpus_version", @@ -829,45 +859,45 @@ "ok": true, "max_attention_window": 256, "counts": { - "f1_unmentioned_partial_query": 364393, - "f1_composition_depth_gt1": 145758, + "f1_unmentioned_partial_query": 379079, + "f1_composition_depth_gt1": 151634, "f2_composition_depth_gt1": 670361, - "f3_supersession_depth_gt1": 111016, - "suffix_gt_max_attention_window": 407832 + "f3_supersession_depth_gt1": 111011, + "suffix_gt_max_attention_window": 409689 }, "eval_family_counts": { - "F1": 11359, + "F1": 11779, "F2": 62466, - "F3": 12330, + "F3": 12310, "F4": 58414, "F5": 33894 }, "eval_hard_primitive_family_counts": { - "F1": 6876, + "F1": 6973, "F2": 20822, - "F3": 5904 + "F3": 5895 }, "eval_composition_family_counts": { - "F1": 3787, + "F1": 3927, "F2": 20822 }, "eval_supersession_family_counts": { - "F3": 3083 + "F3": 3078 }, "eval_query_counts": { - "F1": 71939, - "F3": 43142 + "F1": 74491, + "F3": 43041 }, "eval_suffix_query_counts": { - "F3": 15063, - "F1": 12365 + "F3": 15019, + "F1": 12570 }, "missing": [], "failures": [] }, { "name": "metadata_recomputation", - "ok": false, + "ok": true, "derived_fields": 63, "derived_independently_recomputed": 62, "pending_independent_recompute": [ @@ -878,60 +908,8 @@ ], "pending_now_covered_remove_from_allowlist": [], "phantom_pending_not_a_derived_field": [], - "uncovered_derived_fields": [ - { - "scope": "record", - "field": "controlled_gap_tokens", - "owners": [ - "controlled_distribution", - "instance_task_density" - ] - }, - { - "scope": "controlled_gap", - "field": "kind", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "realized", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "controlled_gap", - "field": "target_age_bin", - "owners": [ - "controlled_distribution" - ] - } - ], - "structural_gaps": [ - { - "scope": "record", - "field": "controlled_gap_rle", - "owners": [ - "controlled_distribution" - ] - }, - { - "scope": "record", - "field": "controlled_gaps", - "owners": [ - "controlled_distribution" - ] - } - ], + "uncovered_derived_fields": [], + "structural_gaps": [], "provenance_gaps": [] } ] diff --git a/raw/sidecars/eval.jsonl.gz b/raw/sidecars/eval.jsonl.gz new file mode 100644 index 0000000000000000000000000000000000000000..02d74c2c49a1d1a69764e7597e804511d9c34ca4 --- /dev/null +++ b/raw/sidecars/eval.jsonl.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e78a57c7e25534de9c181f57afa34942e128ac6fba90ade6354670da7b2e3aa +size 119819553 diff --git a/raw/sidecars/train.jsonl.gz b/raw/sidecars/train.jsonl.gz new file mode 100644 index 0000000000000000000000000000000000000000..0e8dc59424da7870a6e459b57cc7dde44417279e --- /dev/null +++ b/raw/sidecars/train.jsonl.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b394ac8e0644519b5b34f4cfc9720db038e746e7a9a5056c501de28d1f2175 +size 2873154610 diff --git a/raw/train_00000.bin b/raw/train_00000.bin new file mode 100644 index 0000000000000000000000000000000000000000..0b7f8ea4aa370105ad2b727404a5147f85924de7 --- /dev/null +++ b/raw/train_00000.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fe2111f3a25705b4200694e9e0721bc3f5bbdbb02e50f19ea3ab8a2ce31455 +size 199999488 diff --git a/raw/train_00001.bin b/raw/train_00001.bin new file mode 100644 index 0000000000000000000000000000000000000000..e9c7bd1d3e1e3323d8bc47dc06a63665c8883f39 --- /dev/null +++ b/raw/train_00001.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7837c35ad67343b8097563a7412d739e6cc839bc5b105b9fb776c35f17ee588b +size 199999488 diff --git a/raw/train_00002.bin b/raw/train_00002.bin new file mode 100644 index 0000000000000000000000000000000000000000..13443f59f36b29ecdfd3b8c420780de776f80f09 --- /dev/null +++ b/raw/train_00002.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85d5bbe0ee9424180c8ba9417a5a3087d2c2ecc908b35a3936ff80ebefc368c +size 199999488 diff --git a/raw/train_00003.bin b/raw/train_00003.bin new file mode 100644 index 0000000000000000000000000000000000000000..de9f32f3efcbd5a4918a4c6bf4b0420682c3adb0 --- /dev/null +++ b/raw/train_00003.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcc2b5aa5224a8a9f4ebcd747f59560405b52afee0e2789a940c78177fde1f2 +size 199999488 diff --git a/raw/train_00004.bin b/raw/train_00004.bin new file mode 100644 index 0000000000000000000000000000000000000000..12141634a8792fb10f690fe73cb1e4ce15a62224 --- /dev/null +++ b/raw/train_00004.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4faad275bd993648e221046af0db9b79002ce376ac66072488601ca3135bb00a +size 199999488 diff --git a/raw/train_00005.bin b/raw/train_00005.bin new file mode 100644 index 0000000000000000000000000000000000000000..d63f2965cdd0eeceee436f0c02fc5a87461bbbdb --- /dev/null +++ b/raw/train_00005.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce26f4d6901014ff39c0ff0a6e863725ac1ca4b38e7f06bf399a88e16bb8779d +size 199999488 diff --git a/raw/train_00006.bin b/raw/train_00006.bin new file mode 100644 index 0000000000000000000000000000000000000000..6af9fd2e070e52c2ddf8ffabaa4dbba2fe56a53f --- /dev/null +++ b/raw/train_00006.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74024cdb0810973e8479d8622c977883cf26aeaf7f65212af20df21037fb656 +size 199999488 diff --git a/raw/train_00007.bin b/raw/train_00007.bin new file mode 100644 index 0000000000000000000000000000000000000000..f5e21ae1cfd0b15e235f081c059a273e3859143e --- /dev/null +++ b/raw/train_00007.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a936686daa5ecbbb2e375d1f0836098ccf4a8b80ed2f264636a12e1176318c1 +size 199999488 diff --git a/raw/train_00008.bin b/raw/train_00008.bin new file mode 100644 index 0000000000000000000000000000000000000000..2b929e65199e7d5039d944a605c7978aba659f44 --- /dev/null +++ b/raw/train_00008.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed7c30e647b883743c1bc505ebdb8d0f760f1b1df53621c6fe33020f534bc02 +size 199999488 diff --git a/raw/train_00009.bin b/raw/train_00009.bin new file mode 100644 index 0000000000000000000000000000000000000000..48f665d70fa8f8e8825a2b7c5d913922a7e13aa5 --- /dev/null +++ b/raw/train_00009.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebfae89cbb7640ceffbe5cdabae1f80f63971505431ae20a7c1a3f6a7b47bea +size 199999488 diff --git a/raw/train_00010.bin b/raw/train_00010.bin new file mode 100644 index 0000000000000000000000000000000000000000..f627f0a8ec8165fda6683c861db6f26ea6b91d0c --- /dev/null +++ b/raw/train_00010.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3cb24473892c7aeb8638c4635ff3e751d297453ecad5c3d516902515128df77 +size 199999488 diff --git a/raw/train_00011.bin b/raw/train_00011.bin new file mode 100644 index 0000000000000000000000000000000000000000..4c5b38db6999cce29f3d7eba04cb2f75a6e6985f --- /dev/null +++ b/raw/train_00011.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58135a83bd1ae8c4b85b35b7fbcf147ca1c5c2c4b49e31c984f2585dd58c2d24 +size 199999488 diff --git a/raw/train_00012.bin b/raw/train_00012.bin new file mode 100644 index 0000000000000000000000000000000000000000..6fd56ecd00ada4d8ca62308566612ad116c4019b --- /dev/null +++ b/raw/train_00012.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf7e5752c788e99924027c2c1f4f59105ce9afdea74824bfb372dcadbf689bf +size 199999488 diff --git a/raw/train_00013.bin b/raw/train_00013.bin new file mode 100644 index 0000000000000000000000000000000000000000..5f00df1b224365418667381335b600353c210206 --- /dev/null +++ b/raw/train_00013.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642436068b075d62cc16b22d71ea7ca0adb5d214007ece7c1e24598873627a03 +size 199999488 diff --git a/raw/train_00014.bin b/raw/train_00014.bin new file mode 100644 index 0000000000000000000000000000000000000000..ffa6218ba95068129690cf9770a5030062ad81d8 --- /dev/null +++ b/raw/train_00014.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e80189e81445e2ed0998f4be156c195abd72d307db95fcb11ed06e1574dd3d +size 199999488 diff --git a/raw/train_00015.bin b/raw/train_00015.bin new file mode 100644 index 0000000000000000000000000000000000000000..44aa3a923dea9f3b90569f5ff3090087f5e2a14a --- /dev/null +++ b/raw/train_00015.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baf9d6bb2c771d8194db99610bbc716db8e59e1d91b72bb6463ce28bf005847 +size 199999488 diff --git a/raw/train_00016.bin b/raw/train_00016.bin new file mode 100644 index 0000000000000000000000000000000000000000..290b010a6efaa8566c5abc86bf551ed3b74fa24c --- /dev/null +++ b/raw/train_00016.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1edf144b9218d88ec5275052a6c45666b21c6237006a8eee6885d5d6d5a34c +size 199999488 diff --git a/raw/train_00017.bin b/raw/train_00017.bin new file mode 100644 index 0000000000000000000000000000000000000000..2f19d5b382318982666cd019b6ee5f2ae22f3460 --- /dev/null +++ b/raw/train_00017.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a54d6ebb4f1ce82fccaed1fdc11e09e49d974ba00a46ec99c5f641de5b7d574 +size 199999488 diff --git a/raw/train_00018.bin b/raw/train_00018.bin new file mode 100644 index 0000000000000000000000000000000000000000..9c9ebb28015fcdee19426546d7d06e2c64f0d2be --- /dev/null +++ b/raw/train_00018.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a423f2f9e276906fbc9ad80c1b4ab2fff05e0f55deb46c22e0e590aa05d3182 +size 199999488 diff --git a/raw/train_00019.bin b/raw/train_00019.bin new file mode 100644 index 0000000000000000000000000000000000000000..f389ceda7909b50089b840b258c6d08f7e82db3a --- /dev/null +++ b/raw/train_00019.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6308d6aa79c921626093b310083fd8bea755081d005fd227b5188bfabf70430f +size 199999488 diff --git a/raw/train_00020.bin b/raw/train_00020.bin new file mode 100644 index 0000000000000000000000000000000000000000..f79c5f1e89528ab1d80dd504ae573412b41f346a --- /dev/null +++ b/raw/train_00020.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6437d2080c5baaa18be252262e570f16a0bddc057daabc6e64484e7bcb5bc6d +size 199999488 diff --git a/raw/train_00021.bin b/raw/train_00021.bin new file mode 100644 index 0000000000000000000000000000000000000000..bf504b0863ab0ff2c63de6b772bf52f66568eb03 --- /dev/null +++ b/raw/train_00021.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9047e019b123578ec328b9fd40a91cff4cf926d482bffbbc6bcf047f0f91625a +size 199999488 diff --git a/raw/train_00022.bin b/raw/train_00022.bin new file mode 100644 index 0000000000000000000000000000000000000000..8713fd1a61442bd3cbdf56dd1ce42b4e6b26f38e --- /dev/null +++ b/raw/train_00022.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90fa98cba70fece74b1505b4540bf80aa119e9bde77430daec7ec85db2215421 +size 199999488 diff --git a/raw/train_00023.bin b/raw/train_00023.bin new file mode 100644 index 0000000000000000000000000000000000000000..cb6cd1727412e6ae4b5b36692b775d88a3618bf7 --- /dev/null +++ b/raw/train_00023.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2e28324b61fefd44c317f5a0be318b953de6c5101d2a3e5f2bcba560865da0 +size 199999488 diff --git a/raw/train_00024.bin b/raw/train_00024.bin new file mode 100644 index 0000000000000000000000000000000000000000..a58c154dfb11541af28663b50fa395b6e189824a --- /dev/null +++ b/raw/train_00024.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a0f97bb9136ccf0f795af92f4ec5410a50c2465383a1221715634a2ca522b2 +size 199999488 diff --git a/raw/train_00025.bin b/raw/train_00025.bin new file mode 100644 index 0000000000000000000000000000000000000000..99a2b1b42708fba5ef429484971b2b242194da3f --- /dev/null +++ b/raw/train_00025.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a4039504a799149b5442d3b8feb0366a813b4dc5b55de990fc276d4434aba1 +size 199999488 diff --git a/raw/train_00026.bin b/raw/train_00026.bin new file mode 100644 index 0000000000000000000000000000000000000000..60c2f557cd131f54bad4c2c10fd7c659884a38b1 --- /dev/null +++ b/raw/train_00026.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392784374914ca7ed18d140de9c5f3cb794f217d15cb340469f9a093ce04ca21 +size 199999488 diff --git a/raw/train_00027.bin b/raw/train_00027.bin new file mode 100644 index 0000000000000000000000000000000000000000..ad83e4884848e1e0273cd43cc6010719d7b79f8a --- /dev/null +++ b/raw/train_00027.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4c1806a35d479587080068e85cff56ac7d5e07fd8ec710a7185cd478678dba +size 199999488 diff --git a/raw/train_00028.bin b/raw/train_00028.bin new file mode 100644 index 0000000000000000000000000000000000000000..5d334436cae3d5f81e480e5d6c15fe89b9fb5f17 --- /dev/null +++ b/raw/train_00028.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf9c76f1a4d024bdadb412c1ac14be0f86f7874f7cbc66f2bcbea2869a92a5c +size 199999488 diff --git a/raw/train_00029.bin b/raw/train_00029.bin new file mode 100644 index 0000000000000000000000000000000000000000..b4c02218d49a23af60831a71f7c25192ab333d98 --- /dev/null +++ b/raw/train_00029.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbac44102665a8b720026f9c8cd5529a192f86e8832e917a9370e6bf4321f7d +size 199999488 diff --git a/raw/train_00030.bin b/raw/train_00030.bin new file mode 100644 index 0000000000000000000000000000000000000000..655bed6e6b96373a125d5ab4ac96bfbb7d8540f6 --- /dev/null +++ b/raw/train_00030.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed58d8a5bf7a9fe07ca1bdd8f029e01430fa435f6c535c692979daa2d8bcbab2 +size 199999488 diff --git a/raw/train_00031.bin b/raw/train_00031.bin new file mode 100644 index 0000000000000000000000000000000000000000..1832c52523b5cff4f692569cfa9d1a72941a3dd2 --- /dev/null +++ b/raw/train_00031.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ae963dea18d3edb0385345028b5f9f20fa745a8ccb3c9d1cf3a120c915165c +size 199999488 diff --git a/raw/train_00032.bin b/raw/train_00032.bin new file mode 100644 index 0000000000000000000000000000000000000000..5ea78c448f38c22e3746d5135624b7e8ddff1df0 --- /dev/null +++ b/raw/train_00032.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5a7cb38a43e314e910b667ed90e77e5baa7aeb8ca882a723931737b6533ab0 +size 199999488 diff --git a/raw/train_00033.bin b/raw/train_00033.bin new file mode 100644 index 0000000000000000000000000000000000000000..27db6b0a081ce35196109afa313c576a19e6b190 --- /dev/null +++ b/raw/train_00033.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b78d4b0b34e72880287ae83edc51ed7dc86e3386d178ac499675366208074c +size 199999488 diff --git a/raw/train_00034.bin b/raw/train_00034.bin new file mode 100644 index 0000000000000000000000000000000000000000..dbdbe9295cdeb0766e34d93107135dff8b3160c8 --- /dev/null +++ b/raw/train_00034.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5fca0a4d8657323ac0887e04de5f1f2c0f41cec1e4b60e47c51e852a4a5004e +size 199999488 diff --git a/raw/train_00035.bin b/raw/train_00035.bin new file mode 100644 index 0000000000000000000000000000000000000000..8ae1b71227497aa3b5477cab6803d2b64edc1c15 --- /dev/null +++ b/raw/train_00035.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05b35d7f4a7509a0adf0085c7e9d15baaa3bb1d2d9d648cc3305b31816974ce +size 199999488 diff --git a/raw/train_00036.bin b/raw/train_00036.bin new file mode 100644 index 0000000000000000000000000000000000000000..218ea0fcf2d4ab2d7149e7e598863ccfac96f4b4 --- /dev/null +++ b/raw/train_00036.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d948388e1dac6c3ea6a9323d81225420db28e26214f6e79d85ac354fa224ff02 +size 199999488 diff --git a/raw/train_00037.bin b/raw/train_00037.bin new file mode 100644 index 0000000000000000000000000000000000000000..83d1303243902d931489a9c07fde607b2818c454 --- /dev/null +++ b/raw/train_00037.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d29468b4e0321bb4f005bc85974870f7789f0c64e0c1c817ae1ae8ae2c67655 +size 199999488 diff --git a/raw/train_00038.bin b/raw/train_00038.bin new file mode 100644 index 0000000000000000000000000000000000000000..214e74568415e2cc5d580eb005195f8fb91d336c --- /dev/null +++ b/raw/train_00038.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b74586d66c1efa7ffbffb2c2e35788580f9c59387872c24fa4b9db5927af4d8 +size 199999488 diff --git a/raw/train_00039.bin b/raw/train_00039.bin new file mode 100644 index 0000000000000000000000000000000000000000..ffcc0206511529b4343c7ccbcaa6f576bae68176 --- /dev/null +++ b/raw/train_00039.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55986949fa2a1f599184603713699e84e6ca63466ac0d277ea4e0f28a2cf3e4c +size 199999488 diff --git a/raw/train_00040.bin b/raw/train_00040.bin new file mode 100644 index 0000000000000000000000000000000000000000..dd3001b57776ba3040edb1dda9be43e26461b73d --- /dev/null +++ b/raw/train_00040.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0dec61ff3ba4cd3446268874cda3e23375018facdcc4db8f2de059b07e2e95 +size 199999488 diff --git a/raw/train_00041.bin b/raw/train_00041.bin new file mode 100644 index 0000000000000000000000000000000000000000..2cc43b39f7d5b17d6bf03741fb2203284fa7bee3 --- /dev/null +++ b/raw/train_00041.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7ba717b0837f1e0f3740bbd8d49a188624ac45d2925b25b6e6a64625c75ad0 +size 199999488 diff --git a/raw/train_00042.bin b/raw/train_00042.bin new file mode 100644 index 0000000000000000000000000000000000000000..548e8a1a7d484b99d045810df4ac067b4458bd30 --- /dev/null +++ b/raw/train_00042.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f64859a5efc74c539f24381f444677da92b93cd5b76efe8ef3e04bf05020c1a +size 199999488 diff --git a/raw/train_00043.bin b/raw/train_00043.bin new file mode 100644 index 0000000000000000000000000000000000000000..b092f81441204d47ba62daf82972e10fc7714a50 --- /dev/null +++ b/raw/train_00043.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68135eb19ac28616d2f255a7a7603c7698345c6fb262d461f95f78a14707e87a +size 199999488 diff --git a/raw/train_00044.bin b/raw/train_00044.bin new file mode 100644 index 0000000000000000000000000000000000000000..a62915bef71489b5ef6c26c72081709ff4ff2609 --- /dev/null +++ b/raw/train_00044.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48429027f1c09fadebc1dd57b8ce6d6198463eb21fa49358cf0472b0b7b85731 +size 199999488 diff --git a/raw/train_00045.bin b/raw/train_00045.bin new file mode 100644 index 0000000000000000000000000000000000000000..15064f3b226a2f8ba0d2ea5bbef47520fb0fd332 --- /dev/null +++ b/raw/train_00045.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7868138d97b57619dffe54b5356c41eac881c194644b094cf286302f72b389 +size 199999488 diff --git a/raw/train_00046.bin b/raw/train_00046.bin new file mode 100644 index 0000000000000000000000000000000000000000..eadfa77e23bd2d60075d6d1b182c2640b7c5fdf5 --- /dev/null +++ b/raw/train_00046.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6f9acc134da7b13a7fc5e73e6c04f538c407c920de00f469296fb4bc86bece +size 199999488 diff --git a/raw/train_00047.bin b/raw/train_00047.bin new file mode 100644 index 0000000000000000000000000000000000000000..48b4c0ae6d229575e984bf8710eb0881bba9105a --- /dev/null +++ b/raw/train_00047.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98b15598c01924d7a531c1fd82eb65f07eb78fe33bae0fe73e263236c83949c +size 199999488 diff --git a/raw/train_00048.bin b/raw/train_00048.bin new file mode 100644 index 0000000000000000000000000000000000000000..e32441568c76941cb73a0be255cbdb2a89c1adff --- /dev/null +++ b/raw/train_00048.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad794b3f4f4ed519a53925448cf4177fa53efc2bfc23bfb7807bd81357981c1 +size 199999488 diff --git a/raw/train_00049.bin b/raw/train_00049.bin new file mode 100644 index 0000000000000000000000000000000000000000..3ff7c2d13a0fbe3abf37fa7aa6a8d427dca0fb2f --- /dev/null +++ b/raw/train_00049.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7217e17756b01688fba331fa36d28c395444f64a3395b70e2b29fa9f141a5450 +size 199999488 diff --git a/raw/train_00050.bin b/raw/train_00050.bin new file mode 100644 index 0000000000000000000000000000000000000000..e4b180a5bb054bc8f0c565d695928ac08948c52b --- /dev/null +++ b/raw/train_00050.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d9e52ddb231f89a56f4d84ebe4194f618d3c7981d91cf26bc7721efb4c5ee2 +size 199999488 diff --git a/raw/train_00051.bin b/raw/train_00051.bin new file mode 100644 index 0000000000000000000000000000000000000000..75a8fd840884d1b14c70cb073d19ea4afd3f6c0f --- /dev/null +++ b/raw/train_00051.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9282105b01216bd1de97cadde01cd53aebaa96bfd74f4e8a319fd16265a05a32 +size 199999488 diff --git a/raw/train_00052.bin b/raw/train_00052.bin new file mode 100644 index 0000000000000000000000000000000000000000..6839fd2f2ed304ce348788ab2b658b23f50a9a86 --- /dev/null +++ b/raw/train_00052.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ed030b9a68c0b9c13b18500d3932051ce8a449c3bc3ae31bb2dd0afd4aabe8 +size 199999488 diff --git a/raw/train_00053.bin b/raw/train_00053.bin new file mode 100644 index 0000000000000000000000000000000000000000..3c7f620632cb5dcbebe2fabc13844799ed0d9a3b --- /dev/null +++ b/raw/train_00053.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735fd8ee7ca062107b0c5dcad9e8c83af33fff053a0ed180e522abdf8a4bc8f4 +size 199999488 diff --git a/raw/train_00054.bin b/raw/train_00054.bin new file mode 100644 index 0000000000000000000000000000000000000000..2482486d3b57959e7ffdd5d13c861cce319f124f --- /dev/null +++ b/raw/train_00054.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211bf952c7eed0a9c973c772199791b13e5cf8200083ecda62c97372a372e2f2 +size 199999488 diff --git a/raw/train_00055.bin b/raw/train_00055.bin new file mode 100644 index 0000000000000000000000000000000000000000..0bdf4e4a04a61f47790883968a4b0c6f48f580b3 --- /dev/null +++ b/raw/train_00055.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472e5325d9b018053c3c096ca5d895cc3c1c2e73f28d8f934364bd32f9418060 +size 199999488 diff --git a/raw/train_00056.bin b/raw/train_00056.bin new file mode 100644 index 0000000000000000000000000000000000000000..19abe1882af6aad55982e8d3b68fb2231b8b1467 --- /dev/null +++ b/raw/train_00056.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886f34c80a99f5e38d4d617e442b7af5a0abf635e68dcfb1e09c07f6b410e6b7 +size 199999488 diff --git a/raw/train_00057.bin b/raw/train_00057.bin new file mode 100644 index 0000000000000000000000000000000000000000..7906b6533fd31ce8f2440eea288f37c06afed9c4 --- /dev/null +++ b/raw/train_00057.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8697e1de10ea02f7108ed1ea49a39ffbf81dd7f7ee5e32bf03047bce6fdca60 +size 199999488 diff --git a/raw/train_00058.bin b/raw/train_00058.bin new file mode 100644 index 0000000000000000000000000000000000000000..efdd624a32ecf0ed9ba2cf5a89e30b8a05038b56 --- /dev/null +++ b/raw/train_00058.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ddc9eceb3bb056d3fc729eb254cee480d02018ae471079a7e84f0321518377 +size 199999488 diff --git a/raw/train_00059.bin b/raw/train_00059.bin new file mode 100644 index 0000000000000000000000000000000000000000..3e692123196d65774bed462354d5f71a37dfc7dc --- /dev/null +++ b/raw/train_00059.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d07c5711893b5f84d5cd96e46fb99843ae739ebdc86cd428a12e1e406bb3d72 +size 199999488 diff --git a/raw/train_00060.bin b/raw/train_00060.bin new file mode 100644 index 0000000000000000000000000000000000000000..7891265b22d6261e59bc74009a15b2df721288d0 --- /dev/null +++ b/raw/train_00060.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07b6e1ac7e08477f97e345dd56f311f60901a7048db139e8ed6d2ad343ecdf3 +size 199999488 diff --git a/raw/train_00061.bin b/raw/train_00061.bin new file mode 100644 index 0000000000000000000000000000000000000000..283c66c812cb0bb2d6b0aa2e1673588430372fa9 --- /dev/null +++ b/raw/train_00061.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed11c55c0dbe3f606e3d55d0c555f227357088483c0e1579ad91ebec7f79289c +size 199999488 diff --git a/raw/train_00062.bin b/raw/train_00062.bin new file mode 100644 index 0000000000000000000000000000000000000000..612573ce30cb06a64110e238477498fcf99a4772 --- /dev/null +++ b/raw/train_00062.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2884aa5e22c6957bbbc562643ce3fa71dc8fd76497e8b12c9d5d0f8e003ccf +size 199999488 diff --git a/raw/train_00063.bin b/raw/train_00063.bin new file mode 100644 index 0000000000000000000000000000000000000000..a9377aaf3232b2fbbacb917baeb89dde2a7d1be6 --- /dev/null +++ b/raw/train_00063.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa46dad8b20154c2e9cd4bfc48381fd567b30e2aa1a5e6afee5d3fc29fde3388 +size 199999488 diff --git a/raw/train_00064.bin b/raw/train_00064.bin new file mode 100644 index 0000000000000000000000000000000000000000..1486bd12288cc975cb67e22c0fc8ec216a00edcd --- /dev/null +++ b/raw/train_00064.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16df2f45323950863283679103d678b2bd8e1b02cbd01a22f014dc28889eaf14 +size 199999488 diff --git a/raw/train_00065.bin b/raw/train_00065.bin new file mode 100644 index 0000000000000000000000000000000000000000..2c23ecec5e53ec389bd93e8f035069ea990e3658 --- /dev/null +++ b/raw/train_00065.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0deeb5eb5c4a3f93c1c02813ca1a68c53a00fc270d637c6e0a3d7619aed8992 +size 199999488 diff --git a/raw/train_00066.bin b/raw/train_00066.bin new file mode 100644 index 0000000000000000000000000000000000000000..a38ffbc4b15140d481530f19d1602bbf98fe02f4 --- /dev/null +++ b/raw/train_00066.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7382fd312c1878599e1c8df1f15ff08c0b68e7ee413482de2c86f7b214ca3bad +size 199999488 diff --git a/raw/train_00067.bin b/raw/train_00067.bin new file mode 100644 index 0000000000000000000000000000000000000000..c72494cfb4f2f7b71a0ff10eda06a03c8e6646a9 --- /dev/null +++ b/raw/train_00067.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d2569b3f059dc2313ce35c3fd1744424c710628cdd23644a96bdde70d4b08a +size 199999488 diff --git a/raw/train_00068.bin b/raw/train_00068.bin new file mode 100644 index 0000000000000000000000000000000000000000..99ccece9f665ad98244c9c57f5215b2f1c725872 --- /dev/null +++ b/raw/train_00068.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92700acecc7b04cbf9b5d3efe16a1079484a03d420a7668808a7b3a6cffb5ded +size 199999488 diff --git a/raw/train_00069.bin b/raw/train_00069.bin new file mode 100644 index 0000000000000000000000000000000000000000..37fd4180878382022fee6b849669e1a7dc70860f --- /dev/null +++ b/raw/train_00069.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04069579d7528153fb57b8fbb568f0ef767c8e9836affa9f58dabb603c27c4f +size 199999488 diff --git a/raw/train_00070.bin b/raw/train_00070.bin new file mode 100644 index 0000000000000000000000000000000000000000..a108554e0a616377b18a13cfb8ca25acdeafe83c --- /dev/null +++ b/raw/train_00070.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba1ec4a484951d2c551ef5c18728494ebcf10cfbc1bd5383820fabb4f5dba8c +size 199999488 diff --git a/raw/train_00071.bin b/raw/train_00071.bin new file mode 100644 index 0000000000000000000000000000000000000000..d692a80016ade42e9191e841dc87a9743d36962b --- /dev/null +++ b/raw/train_00071.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd38b70a3fd476d1d14df572f460b79b9bcb026104df21a5dd96e96b98b4ce69 +size 199999488 diff --git a/raw/train_00072.bin b/raw/train_00072.bin new file mode 100644 index 0000000000000000000000000000000000000000..6ff0b28d9898ccee15ba2e82ed0733cf40723537 --- /dev/null +++ b/raw/train_00072.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ace6b8906d73b5998c9b19b538a76e5a56c7e559e175de7ce701b7d3365a09c +size 199999488 diff --git a/raw/train_00073.bin b/raw/train_00073.bin new file mode 100644 index 0000000000000000000000000000000000000000..4568dfb44eea8e7a30f1c0cb6a2cf930eb8eba2d --- /dev/null +++ b/raw/train_00073.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783c7389885b09162f3480747803ae25ec9d18a38c6daadd4a692cae5fde283e +size 199999488 diff --git a/raw/train_00074.bin b/raw/train_00074.bin new file mode 100644 index 0000000000000000000000000000000000000000..df87f63bc60151035fbb4bda884c6f9e369ffad9 --- /dev/null +++ b/raw/train_00074.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0642d372a2ffce416d3b56864dc89a226b77c37ad819a09c815cc3a33b07ba +size 199999488 diff --git a/raw/train_00075.bin b/raw/train_00075.bin new file mode 100644 index 0000000000000000000000000000000000000000..f9183d5e5f12527b2f47f842d40e85e884c79fdd --- /dev/null +++ b/raw/train_00075.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0774b263d2102705faa28c4fbf7fe47393c8d78be84d59c0aaa492c9e5cbacdb +size 199999488 diff --git a/raw/train_00076.bin b/raw/train_00076.bin new file mode 100644 index 0000000000000000000000000000000000000000..1cbe0701f7b4cb31ddd32d08ada0302826b05607 --- /dev/null +++ b/raw/train_00076.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6410c882ec5455448e3b115c847d5f01f3f24c6807651c71c264c35e10d7bf06 +size 199999488 diff --git a/raw/train_00077.bin b/raw/train_00077.bin new file mode 100644 index 0000000000000000000000000000000000000000..932a05bbf58e7b442a662ae49cec45f54c09f9e8 --- /dev/null +++ b/raw/train_00077.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dabd7841002b78aefe1c618b8da3fd5fcc7f9be1bc2307cebc9bfd2b53129711 +size 199999488 diff --git a/raw/train_00078.bin b/raw/train_00078.bin new file mode 100644 index 0000000000000000000000000000000000000000..b1377e9ca82637d209d85408315895774ec37d7c --- /dev/null +++ b/raw/train_00078.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c51ecd21612b3bc01d599caa2c1a4c00ad86fdc7acb86740fb8ba9b13623848 +size 199999488 diff --git a/raw/train_00079.bin b/raw/train_00079.bin new file mode 100644 index 0000000000000000000000000000000000000000..dc4e55648905d03c5dabf03cc15f50851cc2d5a5 --- /dev/null +++ b/raw/train_00079.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0823efdc876a0c73c506dceb8479398f51f3b83ada91c9479f212f7b207c48f2 +size 199999488 diff --git a/raw/train_00080.bin b/raw/train_00080.bin new file mode 100644 index 0000000000000000000000000000000000000000..984ed12d48cc7b355ff98718882436399cc05220 --- /dev/null +++ b/raw/train_00080.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29bbf3482a3d57b73d356cc1942523d570bda7c1e68107e2b1e9954d73ca44f9 +size 199999488 diff --git a/raw/train_00081.bin b/raw/train_00081.bin new file mode 100644 index 0000000000000000000000000000000000000000..f2d5c8e0aa3b54b196eb08fb5f3575f61ff4656b --- /dev/null +++ b/raw/train_00081.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c981f57420b4b40af7d8997146b331111105a5ffa90ae3b881668aeb08e41cf1 +size 199999488 diff --git a/raw/train_00082.bin b/raw/train_00082.bin new file mode 100644 index 0000000000000000000000000000000000000000..f55b050cad8551a35ef8687cd6bf025a3efd9f2b --- /dev/null +++ b/raw/train_00082.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8b1329bda1e5ce8b7fc2ddcbb98efaeb86d008ed732de482126a935495359d +size 199999488 diff --git a/raw/train_00083.bin b/raw/train_00083.bin new file mode 100644 index 0000000000000000000000000000000000000000..2305128b696511d2ed01b53a8c1eb42ed9507aef --- /dev/null +++ b/raw/train_00083.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c4a2c2619a8ea7d71441ae09c76b420fb1064d25208e163dd6918304dd0f02 +size 49291264 diff --git a/sidecars/eval.jsonl.gz b/sidecars/eval.jsonl.gz deleted file mode 100644 index b6ff56c65eaa3bdd799dc55e77ec8fc2a8033911..0000000000000000000000000000000000000000 --- a/sidecars/eval.jsonl.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e6757bc63dd9ab941d0352881983a57dba6a6516ec2d49ce2ac91b068d95e6d4 -size 119361393 diff --git a/sidecars/train.jsonl.gz b/sidecars/train.jsonl.gz deleted file mode 100644 index 1ac8d04920166f98223bcee5fe0233f8b69c92ef..0000000000000000000000000000000000000000 --- a/sidecars/train.jsonl.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5155d11f31d34c7cec1cd0eed0973838ed7c98cb69f8c8202aff541ff78ccfb -size 2855772395 diff --git a/train_00000.bin b/train_00000.bin deleted file mode 100644 index 06a081f36b546ecc1b39ec327bff7eea0e3f501b..0000000000000000000000000000000000000000 --- a/train_00000.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5de973b0a6b2e2ae9742c7506f542a7eaff66ad1c705579cbcf43f50ca8730f3 -size 199999488 diff --git a/train_00001.bin b/train_00001.bin deleted file mode 100644 index e74538dc5c31461b74345e359881dc82d14263a3..0000000000000000000000000000000000000000 --- a/train_00001.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f5341f898faf41b3d4f5ec9a1f2825edb025a6930a17b590279d3dfb4a71785d -size 199999488 diff --git a/train_00002.bin b/train_00002.bin deleted file mode 100644 index 23a5a3a28c477008240b6b34ec6d9e7b52310e52..0000000000000000000000000000000000000000 --- a/train_00002.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:958ef0af435b119adb99fc46bd6a61373b03569dee22f5b3bb5bb04f621f36ca -size 199999488 diff --git a/train_00003.bin b/train_00003.bin deleted file mode 100644 index 33dd58b7b61637d26dda508bc1fc8681dee10b02..0000000000000000000000000000000000000000 --- a/train_00003.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aed531bbb1e05c2e28813b828104693ced5cece2001bb5fe32d5f48fffed46dc -size 199999488 diff --git a/train_00004.bin b/train_00004.bin deleted file mode 100644 index 4b43ece61d6e66654b582143c2c85ee9a958aef2..0000000000000000000000000000000000000000 --- a/train_00004.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27c5c57ab2f3e3d62000bd34a4b0ea9c373d24f71e301df47f2c70a420b72fe2 -size 199999488 diff --git a/train_00005.bin b/train_00005.bin deleted file mode 100644 index a982c46b31a912c6b8f3f96c2cc93fdb907410e9..0000000000000000000000000000000000000000 --- a/train_00005.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:42c1503571d0320ba7f3518bd5967858f73f2e01393389e4b60df4874889d4e4 -size 199999488 diff --git a/train_00006.bin b/train_00006.bin deleted file mode 100644 index 8c739d21b56ac72cbecbd0363c70e5455433d7ab..0000000000000000000000000000000000000000 --- a/train_00006.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c22d4ae823bdbef12086ce0aec662490744e3ba69c8d343ab9b5a23dda467152 -size 199999488 diff --git a/train_00007.bin b/train_00007.bin deleted file mode 100644 index 80d888bd468a3f2e85dcd04e49569387368228e9..0000000000000000000000000000000000000000 --- a/train_00007.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc9aff4d209b2743d3a56746838484ccbdca9df8b7e7ba287ec4d5fa4da122e4 -size 199999488 diff --git a/train_00008.bin b/train_00008.bin deleted file mode 100644 index dbac38ec16ef01d5c30e2a0efc5db20c8fecf6d2..0000000000000000000000000000000000000000 --- a/train_00008.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0d7ae980faf20c02f5d85e9639107a1325880ba3cef2cecd684af3d57892659b -size 199999488 diff --git a/train_00009.bin b/train_00009.bin deleted file mode 100644 index f2b8b0cf7c71875ad32bc9a2a42b3979fa441f1e..0000000000000000000000000000000000000000 --- a/train_00009.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e3486c077649d5d839ca2d7140b2e3830e07d739bef2c52488617075d4f1211 -size 199999488 diff --git a/train_00010.bin b/train_00010.bin deleted file mode 100644 index 848710dcb51a7ade00fda07fe7f78bfc167c7f5a..0000000000000000000000000000000000000000 --- a/train_00010.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:88595307739e6e58918d53342648096ff2f443cb93d834eb0925424d79818f3b -size 199999488 diff --git a/train_00011.bin b/train_00011.bin deleted file mode 100644 index 75aca080ea71299b72baae0bb7b2462a936c6b28..0000000000000000000000000000000000000000 --- a/train_00011.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60578db2f26ab3787ed83dc5222987261542cf01ee8cba27a1153623cee25db4 -size 199999488 diff --git a/train_00012.bin b/train_00012.bin deleted file mode 100644 index 9eb7b8a6927024574a649420c5198d9b63132141..0000000000000000000000000000000000000000 --- a/train_00012.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:57952923219f33d2c1e3ffaf7484ac0079dd582f5afd347196f3e72919fa256e -size 199999488 diff --git a/train_00013.bin b/train_00013.bin deleted file mode 100644 index 5bcf039a2a0f5aa5ae704fd2cc8470014f153083..0000000000000000000000000000000000000000 --- a/train_00013.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2bcf8ef71c4bc6969712b7897b057b34bb288aac82678ffc371c48426445bbbb -size 199999488 diff --git a/train_00014.bin b/train_00014.bin deleted file mode 100644 index 1dc57f2327162782b3f61c41b1679fce5fc3c599..0000000000000000000000000000000000000000 --- a/train_00014.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ee271168409aa9267d523133cba413cf9730ff3e10a82db1071fa1cf6b873de -size 199999488 diff --git a/train_00015.bin b/train_00015.bin deleted file mode 100644 index 0a88988fcf43e4ef0f71bdb85c3e3616c068fa9c..0000000000000000000000000000000000000000 --- a/train_00015.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:22a90bdd8f749cb7ec586528364fe3c12999fbf8f2415ded67728a46325ffefb -size 199999488 diff --git a/train_00016.bin b/train_00016.bin deleted file mode 100644 index 5e7bfa84577185762ab6c3ca615171f66e1b6bd3..0000000000000000000000000000000000000000 --- a/train_00016.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:66dd576323fcbe43bb1091eb02fd6c99e99eae37ce105a35ff26c18bcd4bfaf3 -size 199999488 diff --git a/train_00017.bin b/train_00017.bin deleted file mode 100644 index 2e8c32df4c7aa1f8959089f15e1563ceaf4f3a36..0000000000000000000000000000000000000000 --- a/train_00017.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:74572158a974900af413895115d47baa30f51939553cede22b21eccb22455a14 -size 199999488 diff --git a/train_00018.bin b/train_00018.bin deleted file mode 100644 index 933c7dab1aa87399ab90ec3162d1a7df9234a52b..0000000000000000000000000000000000000000 --- a/train_00018.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:640dd8f381d3f5d5e43b10df779ebfe936f0d60af466545f50ad52fd3c66613a -size 199999488 diff --git a/train_00019.bin b/train_00019.bin deleted file mode 100644 index 07804ca0d0eb05def70fed6c9b78bb4c84c522a7..0000000000000000000000000000000000000000 --- a/train_00019.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1cfdf03803f229d24daa026b0045cdc3bd14e6aa31ddf26bb4a61c4f1e3494a2 -size 199999488 diff --git a/train_00020.bin b/train_00020.bin deleted file mode 100644 index dd4465113fbe83463590aa97488781e5409cee37..0000000000000000000000000000000000000000 --- a/train_00020.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c782e5badd43f3c8cc38a42875437dcf08e91c00c7fec1c3b24a728975a086bc -size 199999488 diff --git a/train_00021.bin b/train_00021.bin deleted file mode 100644 index 834f58834f8fb1d56e80aa75052a223fff128e43..0000000000000000000000000000000000000000 --- a/train_00021.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8bf129105331eb469db83f01513989612fd1d1537b386ac9da6dd5e59a7067c1 -size 199999488 diff --git a/train_00022.bin b/train_00022.bin deleted file mode 100644 index fc9d727faf738e528e43064a3ef4ebd48d993efe..0000000000000000000000000000000000000000 --- a/train_00022.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:84e9fa619445dcb3c66b38cbd85507b4c4daa70fe948d48466b725fbd219b99b -size 199999488 diff --git a/train_00023.bin b/train_00023.bin deleted file mode 100644 index b727ea843fea0ff5f346778a170f24d4a6bad132..0000000000000000000000000000000000000000 --- a/train_00023.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6f1bf10cfa811f4a5c93750ffc608824c13fcd3e22e0d3984c3244f785a6d06d -size 199999488 diff --git a/train_00024.bin b/train_00024.bin deleted file mode 100644 index b2b66449f1bb07adf956ce6b9e85f56b907ad0fb..0000000000000000000000000000000000000000 --- a/train_00024.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1439e0e595b98a0dd77c0df9a2111c6e2664f7d7072859b6a96fa18f3d1f5e1f -size 199999488 diff --git a/train_00025.bin b/train_00025.bin deleted file mode 100644 index e135b4c674f8dfcc851767e067c49fceaa2aa8dd..0000000000000000000000000000000000000000 --- a/train_00025.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea793937fc5494fb0237f8ab9b4b90765959b22cd14e5c7be0fc905c55bd3855 -size 199999488 diff --git a/train_00026.bin b/train_00026.bin deleted file mode 100644 index 1daa0cb0cdfc4492c3e86bf150c48c5efe2059c0..0000000000000000000000000000000000000000 --- a/train_00026.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1a9a40d0fc8e3434a8a876b8f0e78a7b9f30416ca84afae6ec14faa064c4b666 -size 199999488 diff --git a/train_00027.bin b/train_00027.bin deleted file mode 100644 index adfdcbfd63994bff964f87de6e286ff3d1be7395..0000000000000000000000000000000000000000 --- a/train_00027.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4880b2ebca494644acdf6e5d5b8e2d123060ac11509862ed231e2e1b48841bfa -size 199999488 diff --git a/train_00028.bin b/train_00028.bin deleted file mode 100644 index bf553bbc477010517898966e88df61998d3a4a89..0000000000000000000000000000000000000000 --- a/train_00028.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2ed100f4b421ef2f2bcef57b1b7ff73aef679d1518c39444e4dcfd9a58a4300 -size 199999488 diff --git a/train_00029.bin b/train_00029.bin deleted file mode 100644 index f1f747e859b4d7f97dc5189f65d6d89692f1998a..0000000000000000000000000000000000000000 --- a/train_00029.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f32db9bafeb94ee1cfe513d3fb6a6ecb04ba8bbbcc2d59bfb074076c4d7b456 -size 199999488 diff --git a/train_00030.bin b/train_00030.bin deleted file mode 100644 index 233fcc8874f44ead9ff58f0e6f7dbddbdb1ab734..0000000000000000000000000000000000000000 --- a/train_00030.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3e93547457692eeca62b24f93463fb6870949f45fe82c297742c0f59d78d7d9 -size 199999488 diff --git a/train_00031.bin b/train_00031.bin deleted file mode 100644 index 5b5f0820cff40b3c60bd32ecd7863f668070ed19..0000000000000000000000000000000000000000 --- a/train_00031.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbe2f03bf7827c5638d40943bdc52605ca6d5c22754ccfe51f67a9e891322cad -size 199999488 diff --git a/train_00032.bin b/train_00032.bin deleted file mode 100644 index 85b5c86ba6b182fb75548feaeda955b9b845edd8..0000000000000000000000000000000000000000 --- a/train_00032.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:123b4a131a9b19b27adb8135795409f36a4daf9f92bc3a5b025e3baa6437afba -size 199999488 diff --git a/train_00033.bin b/train_00033.bin deleted file mode 100644 index 763e2f8ba99545e866d429503096d94a05f5802e..0000000000000000000000000000000000000000 --- a/train_00033.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:49c0063ada4a65b47528d30cb1ecc9b7a2de02184469039531f3bedc9bf80dae -size 199999488 diff --git a/train_00034.bin b/train_00034.bin deleted file mode 100644 index 1f6cb903485ab96ad68d7bf4024e4a560f659fd8..0000000000000000000000000000000000000000 --- a/train_00034.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e68f72ee5f4f09b8769d30619cb3a5622921e7cedd9894c8c45e1ea924a1dbe4 -size 199999488 diff --git a/train_00035.bin b/train_00035.bin deleted file mode 100644 index a8ebf301e051b451abdbfc84bae3ece7402c8e11..0000000000000000000000000000000000000000 --- a/train_00035.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:271f120c07fb7589ae5815e6ad1331c133e6651b46c6941819d53e33246ed2c0 -size 199999488 diff --git a/train_00036.bin b/train_00036.bin deleted file mode 100644 index b59eb1dc8c1c7b2d38da1c543282cf95c3ef8680..0000000000000000000000000000000000000000 --- a/train_00036.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1a70424274299405652330d00e7352291f50ce2da2bd60ee2a689de064740e6e -size 199999488 diff --git a/train_00037.bin b/train_00037.bin deleted file mode 100644 index ad5dc97e155ec0ccabded7bd27709e91a88045dc..0000000000000000000000000000000000000000 --- a/train_00037.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8ed60110ca6043e2b1fc927056f9b4f726c70ffa7c107d7fa5c26f3092e1a18 -size 199999488 diff --git a/train_00038.bin b/train_00038.bin deleted file mode 100644 index f95842194d9b7e864cb5712eb54e6bd149c72344..0000000000000000000000000000000000000000 --- a/train_00038.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b462fb7b392573ee54a86161a56ac5ade76c4a1da0b1435abd9fab3b08da3467 -size 199999488 diff --git a/train_00039.bin b/train_00039.bin deleted file mode 100644 index efcce619140767d6ec4f2bb922c7ddf56a62ff46..0000000000000000000000000000000000000000 --- a/train_00039.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ccc5e298642bb649ea693ec20024f9d90be4910b99ed8226b8f6cfd6710f2395 -size 199999488 diff --git a/train_00040.bin b/train_00040.bin deleted file mode 100644 index 5505dab0be447716a43084e731acdb43c25c588e..0000000000000000000000000000000000000000 --- a/train_00040.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa5817592d1de703117f816107d5a4b55d4ea080bd8d31399562b00fdefb109a -size 199999488 diff --git a/train_00041.bin b/train_00041.bin deleted file mode 100644 index 780ebaada811077d5ba72afcc61172130619f9d8..0000000000000000000000000000000000000000 --- a/train_00041.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b0cd4912c0bf71562c25d2096f7306dfe44921ab2dc7bbe22a9a4f800c6ed5ed -size 199999488 diff --git a/train_00042.bin b/train_00042.bin deleted file mode 100644 index 6b4b811a40b7d1daa0dd47c568d2998b27646d55..0000000000000000000000000000000000000000 --- a/train_00042.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f1759bd0b85aa2dbf8607bec6f38b89a6745d626eac0361067ba748df5867a87 -size 199999488 diff --git a/train_00043.bin b/train_00043.bin deleted file mode 100644 index 8ed58dea755f0696a4d62d32383eb5bf323366a5..0000000000000000000000000000000000000000 --- a/train_00043.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cecd0917db2fd2294fd8c749167c850f993f3425f5b0b6e29c4673900fe1f17 -size 199999488 diff --git a/train_00044.bin b/train_00044.bin deleted file mode 100644 index 1712aae86726930f22257615e09a33c86510abf6..0000000000000000000000000000000000000000 --- a/train_00044.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f7065ad22829e69faa09065e51ced32a9aa97aea135ffde81d3a3750d04349c -size 199999488 diff --git a/train_00045.bin b/train_00045.bin deleted file mode 100644 index 8d63ec2214be0acb708caa76f1abc830bf4a4c4f..0000000000000000000000000000000000000000 --- a/train_00045.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b72cb29726dde7ef0dee11e8e5403e54dd2e6dd99a8acc73e9600999d891691d -size 199999488 diff --git a/train_00046.bin b/train_00046.bin deleted file mode 100644 index 5a5f22a92dbc9cb7aff30783b5a9160c72d2eac3..0000000000000000000000000000000000000000 --- a/train_00046.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3cbf0494b85d5e9c395f57805f257fd27a53bb2389a9122a9c744e842ae393a5 -size 199999488 diff --git a/train_00047.bin b/train_00047.bin deleted file mode 100644 index 1328f433682361b71be6aa6285148afe5dd24b5c..0000000000000000000000000000000000000000 --- a/train_00047.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:965d08891d78f13c9b4f28d21dc7a2f2fadf5748d752b93cd7c16b70c9f1a910 -size 199999488 diff --git a/train_00048.bin b/train_00048.bin deleted file mode 100644 index b011addb4b3a8f0b3e87e33e35011b06f57cdfd1..0000000000000000000000000000000000000000 --- a/train_00048.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b89c2ec14f5ce9e4ee5fe0782f70c5ca3a5893b70d8a82e4ea99b52c5490ec71 -size 199999488 diff --git a/train_00049.bin b/train_00049.bin deleted file mode 100644 index 749c86aec2e94e5e96f82accdc361001e7642743..0000000000000000000000000000000000000000 --- a/train_00049.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7807143f44644ebbcf983c1f04c82c8bb44fcc041af5c02fbfe6d54212117d89 -size 199999488 diff --git a/train_00050.bin b/train_00050.bin deleted file mode 100644 index 8eba8725e9424caa4d8bceff131a0f22b3b87597..0000000000000000000000000000000000000000 --- a/train_00050.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90f48e07acc8e489030dafdbd130cb37a9e03eb80cdd66ad0aa799da70b1a7cf -size 199999488 diff --git a/train_00051.bin b/train_00051.bin deleted file mode 100644 index a7997e9cf88ead790e051de1085bd0b77bf17d27..0000000000000000000000000000000000000000 --- a/train_00051.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:299fd624523275ca944825da2ebca4a8f9c7faf1d32dbd9638044a2a242fafd3 -size 199999488 diff --git a/train_00052.bin b/train_00052.bin deleted file mode 100644 index 0702c9aadc5e5706870f3b3a789c7421aade7f6e..0000000000000000000000000000000000000000 --- a/train_00052.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c662323af2e50c8f13e43dc845ab4728e576ac2115b9f3935d0e60ed1d79e4c0 -size 199999488 diff --git a/train_00053.bin b/train_00053.bin deleted file mode 100644 index 6f48bcb1004b7ca312945d3d0cbaef0b285caa35..0000000000000000000000000000000000000000 --- a/train_00053.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c071b194c655404f47daf6d535307422ca967bdf466197193f6b4627aeef04e -size 199999488 diff --git a/train_00054.bin b/train_00054.bin deleted file mode 100644 index 3fb3934a316bc507f4dba3b5b1a57fc0e73afbbd..0000000000000000000000000000000000000000 --- a/train_00054.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b95889b9d655680e65e36ccff64fe7b4ab9114a8b61dee8d817a4530e32135bf -size 199999488 diff --git a/train_00055.bin b/train_00055.bin deleted file mode 100644 index 575dfd9c0ce17219a580a059a1fe552402277d2e..0000000000000000000000000000000000000000 --- a/train_00055.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e145af13b9fed28b59aa36456dd2794ced17719dd7f0270857f36c4a3bd1d09 -size 199999488 diff --git a/train_00056.bin b/train_00056.bin deleted file mode 100644 index 580571d840fa659de4ea5fcf5136bfe51fff32cd..0000000000000000000000000000000000000000 --- a/train_00056.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a74f1734cebad1b5ee3d89c3dcfa1afd550c75c0f382da85be3ff0edb6549ea -size 199999488 diff --git a/train_00057.bin b/train_00057.bin deleted file mode 100644 index 3011b667ed29fb4143b1a89483afe55214dd6c15..0000000000000000000000000000000000000000 --- a/train_00057.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c617ee9d59d6830e58f892e925bb59b29b46c45798ee5a4e87727900ef0a1f3 -size 199999488 diff --git a/train_00058.bin b/train_00058.bin deleted file mode 100644 index 56b68beaaf5c71656d441789da53b0fedf6978cc..0000000000000000000000000000000000000000 --- a/train_00058.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:233a2a5adcb57ecac67b6c09e2e2856caa2566addc3b0f728c4338576c1e0662 -size 199999488 diff --git a/train_00059.bin b/train_00059.bin deleted file mode 100644 index 77a86b746cd7762b6ea26beffe04c8c23a5e82c8..0000000000000000000000000000000000000000 --- a/train_00059.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c1569cd082df2ba3a2ea8aa98e80e2adbba0f7c51e28035ba58ea986ba03e709 -size 199999488 diff --git a/train_00060.bin b/train_00060.bin deleted file mode 100644 index c1264222d8860293b351cef6797e8a3b120158a7..0000000000000000000000000000000000000000 --- a/train_00060.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b05f5022f747cf5f18e19747e1da98cf2420661dd4a4b2e658893387afc34109 -size 199999488 diff --git a/train_00061.bin b/train_00061.bin deleted file mode 100644 index 87af034b77058ebb669e9c147e8ad2575ce2d9bc..0000000000000000000000000000000000000000 --- a/train_00061.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d23a54167cdb2fcfc627f36c858b40b207e2d736e10d12656f49113628b8fba -size 199999488 diff --git a/train_00062.bin b/train_00062.bin deleted file mode 100644 index e45315fb6491c350eaac0e9ce0840e357309af23..0000000000000000000000000000000000000000 --- a/train_00062.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1297cb6b6e51869db8d48b371a07e80c4a8cbda36471fa461acd13d6516dd488 -size 199999488 diff --git a/train_00063.bin b/train_00063.bin deleted file mode 100644 index 1bc9462b6a79b63882ff8680482ae0cc0fafbef7..0000000000000000000000000000000000000000 --- a/train_00063.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fbc484199b509de538388b8b86f982c18af52908b2918aa8d4f870862ef640fe -size 199999488 diff --git a/train_00064.bin b/train_00064.bin deleted file mode 100644 index 49710ffe8a613282204d3843128b343bd5b1fbd5..0000000000000000000000000000000000000000 --- a/train_00064.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5da7e84cec2b5c7757ad9d99892b3f816d9f9ee432657d3b29fe0688a9857025 -size 199999488 diff --git a/train_00065.bin b/train_00065.bin deleted file mode 100644 index c1a1296311eaa413bc640fb240cf8bcabf552f27..0000000000000000000000000000000000000000 --- a/train_00065.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a8c4652b83eb5ad3fc7fafa64059071bca3c8a81111b8c3256496fb2ed1ce9a8 -size 199999488 diff --git a/train_00066.bin b/train_00066.bin deleted file mode 100644 index 64dcff71ee52fd834a0abb8765a960765d9e5a4e..0000000000000000000000000000000000000000 --- a/train_00066.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:df10a10403a084a38e653c78d193ee2a90027edf666652796a23204a5521883d -size 199999488 diff --git a/train_00067.bin b/train_00067.bin deleted file mode 100644 index c0650604c58ea735e01bcb790edf5bc733f4facb..0000000000000000000000000000000000000000 --- a/train_00067.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6626f492f357dbd28e4af4a133f7d1fba7a167bfe3c62a4f64ad530cd438a93 -size 199999488 diff --git a/train_00068.bin b/train_00068.bin deleted file mode 100644 index 579475f129d971ed1c70768833ea19e67168734c..0000000000000000000000000000000000000000 --- a/train_00068.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c33a84fc870ea15e8df62fd34bba1633b15d190633251db0be547c981ae7ee3e -size 199999488 diff --git a/train_00069.bin b/train_00069.bin deleted file mode 100644 index a36b449b2a822e7d7116cc7135b3e2b9e6593111..0000000000000000000000000000000000000000 --- a/train_00069.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fdc66e20894a51c77cff13a8441bbc4dd8a8ec620159b970251029f98b5156c -size 199999488 diff --git a/train_00070.bin b/train_00070.bin deleted file mode 100644 index f3eb8b225eaabfbb8f953c745996b6aa6184d995..0000000000000000000000000000000000000000 --- a/train_00070.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b20f5fd25233b721cd50170c3723c99ff6754ebb33bc1995d7088af5bba863a3 -size 199999488 diff --git a/train_00071.bin b/train_00071.bin deleted file mode 100644 index 66abbab37e62625cd4beb48675f62b3ab0b57f59..0000000000000000000000000000000000000000 --- a/train_00071.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fbe432ee0e7247705a20f61a54d68deffcfecd0c30d5dd495ba9d35afbc3dad7 -size 199999488 diff --git a/train_00072.bin b/train_00072.bin deleted file mode 100644 index 79d44b3771aa5a7fddfe81722b454a3a61e11d8d..0000000000000000000000000000000000000000 --- a/train_00072.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c9022fe9e1288f141d5358fe99932ce46ed9f3e7d700ff743c73cd7482a9cd7c -size 199999488 diff --git a/train_00073.bin b/train_00073.bin deleted file mode 100644 index b714c72b156ecf77da177438b711d45c1971546e..0000000000000000000000000000000000000000 --- a/train_00073.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebd521aa5bc01a673ba421d6d36555f1671ba050c79ab12b1fe104e2a84e638b -size 199999488 diff --git a/train_00074.bin b/train_00074.bin deleted file mode 100644 index 005baa929a389acf24c3f42f6d411ebe619071d6..0000000000000000000000000000000000000000 --- a/train_00074.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ee01fc1330c7908f90d9e20b4b2a17dfff18688f506b28fddefd7acfea0bfaa -size 199999488 diff --git a/train_00075.bin b/train_00075.bin deleted file mode 100644 index 98ba02310910c88aaa1ac5d4d238f551c2d810c1..0000000000000000000000000000000000000000 --- a/train_00075.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5dd81ea0fcdcfd0d35a2878364f1475227a126235b4a222d3b002bcc6f408ced -size 199999488 diff --git a/train_00076.bin b/train_00076.bin deleted file mode 100644 index 49aa7e96c5f61ac5e752310fefcb9d91ccadf1a9..0000000000000000000000000000000000000000 --- a/train_00076.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1baea478118b213dc0e6d3038dc3a8357b6aed55f88139347f6bc17158ae036b -size 199999488 diff --git a/train_00077.bin b/train_00077.bin deleted file mode 100644 index df925c5b16beebafd4442750074cc8431401ff94..0000000000000000000000000000000000000000 --- a/train_00077.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d90145520ff525e4d069f5d6bd0a3dda0dabe957a0b69474a4f8fbfd95ecee8f -size 199999488 diff --git a/train_00078.bin b/train_00078.bin deleted file mode 100644 index 4d68914b6ae1ba00dd33dd957b9ce4876456dc57..0000000000000000000000000000000000000000 --- a/train_00078.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30030ded5fb84a6c639fa3e2b4fb5ca7048d137316ff5c7230c018c07e9afcb0 -size 199999488 diff --git a/train_00079.bin b/train_00079.bin deleted file mode 100644 index dccc44c89fc8a8da533227f176e50bd441ab727c..0000000000000000000000000000000000000000 --- a/train_00079.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c26d1c7f41ebfb80955eeab10debc9cff6a29062aa539d1c493ed2dfc0410b3b -size 199999488 diff --git a/train_00080.bin b/train_00080.bin deleted file mode 100644 index 4624ab77d79c1ac3e6b8ae99ac7ea8d339abf58b..0000000000000000000000000000000000000000 --- a/train_00080.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a06eecbc46036d9b3f476be36e129caebd53113c5cccf5d7c81839bf6dcd4145 -size 199999488 diff --git a/train_00081.bin b/train_00081.bin deleted file mode 100644 index c0801a46fe5cafbb8f852606194b0a6ece026ec8..0000000000000000000000000000000000000000 --- a/train_00081.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9dbca9574dc0e7d82e2fec7ae2865accfbc73111e2a7a2949e49add16cb72c56 -size 199999488 diff --git a/train_00082.bin b/train_00082.bin deleted file mode 100644 index 76b7767ca172c675a79a2bdc3b5da6c23a28c48a..0000000000000000000000000000000000000000 --- a/train_00082.bin +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c7ab03122de681320b60d7eeda8de59d240acae20d068af233055852f470054d -size 178782208