Formbench-anon commited on
Commit
d8d7791
·
verified ·
1 Parent(s): 9e3092b

Initial release: FormBench TAPT-MNRL model (anonymised for review)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 1024,
3
+ "pooling_mode_cls_token": false,
4
+ "pooling_mode_mean_tokens": false,
5
+ "pooling_mode_max_tokens": false,
6
+ "pooling_mode_mean_sqrt_len_tokens": false,
7
+ "pooling_mode_weightedmean_tokens": false,
8
+ "pooling_mode_lasttoken": true,
9
+ "include_prompt": true
10
+ }
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3-Embedding-0.6B
4
+ library_name: sentence-transformers
5
+ tags:
6
+ - sentence-transformers
7
+ - feature-extraction
8
+ - sentence-similarity
9
+ - formbench
10
+ - patent-retrieval
11
+ - chemistry
12
+ - formulations
13
+ - materials-science
14
+ language:
15
+ - en
16
+ pipeline_tag: sentence-similarity
17
+ ---
18
+
19
+ # qwen3-embed-formbench-mnrl
20
+
21
+ A domain-adapted sentence-transformers model derived from
22
+ [`Qwen/Qwen3-Embedding-0.6B`](https://huggingface.co/Qwen/Qwen3-Embedding-0.6B) and fine-tuned on the **FormBench**
23
+ retrieval benchmark for formulation chemistry. It maps passages from formulation patents
24
+ into a 1024-dimensional dense vector space and is optimised for within-domain
25
+ retrieval among structurally similar near-miss passages — the central capability targeted
26
+ by FormBench.
27
+
28
+ This repository hosts an anonymised release for NeurIPS 2026 double-blind review.
29
+
30
+ ## Model details
31
+
32
+ | Item | Value |
33
+ |---|---|
34
+ | Base model | `Qwen/Qwen3-Embedding-0.6B` (600M params) |
35
+ | Training method | Task-adaptive pre-training (TAPT) via contrastive fine-tuning |
36
+ | Loss | `MultipleNegativesRankingLoss` (in-batch negatives) |
37
+ | Training data | FormBench-Triplets — 44,413 (query, anchor, hard-negative) tuples |
38
+ | Embedding dimension | 1024 |
39
+ | Max sequence length | 8192 (training: 2048) |
40
+ | Precision | bf16 |
41
+ | Learning rate | 1e-5 |
42
+ | Per-GPU batch size | 32 |
43
+ | Epochs | 5 |
44
+ | Hardware | 8× AMD MI250X, DDP |
45
+
46
+ The training-triplet set is reconstructable from the qrel files in
47
+ [`Formbench-anon/FormBench`](https://huggingface.co/datasets/Formbench-anon/FormBench)
48
+ following the protocol in §3 of the paper.
49
+
50
+ ## Evaluation results
51
+
52
+ Evaluated on the FormBench test split (n = 5,459 queries) under both corpus variants,
53
+ following the protocol in §4 of the paper. FAISS exact inner-product search at top-k = 100.
54
+
55
+ ### FormBench-Structured (C1) — within-domain near-miss distractors
56
+
57
+ | Metric | Value |
58
+ |---|---:|
59
+ | Binary nDCG@10 | **0.4085** |
60
+ | MRR (binary qrels) | 0.3613 |
61
+ | Graded nDCG@10 | 0.2374 |
62
+ | R@100 (binary qrels) | 0.8181 |
63
+ | FAISS search latency | 18.8 ms/query |
64
+
65
+ ### FormBench-Random (C0) — random-distractor corpus
66
+
67
+ | Metric | Value |
68
+ |---|---:|
69
+ | Binary nDCG@10 | **0.4835** |
70
+ | MRR (binary qrels) | 0.4404 |
71
+ | Graded nDCG@10 | 0.2835 |
72
+ | R@100 (binary qrels) | 0.8525 |
73
+ | FAISS search latency | 18.8 ms/query |
74
+
75
+ For reference: BM25 lexical baseline: binary nDCG@10 = 0.3751 (C1), 0.4665 (C0).
76
+
77
+ ## Usage
78
+
79
+ ```python
80
+ from sentence_transformers import SentenceTransformer
81
+
82
+ model = SentenceTransformer("Formbench-anon/qwen3-embed-formbench-mnrl")
83
+
84
+ passages = [
85
+ "An adhesive composition comprising a styrene-acrylate copolymer ...",
86
+ "A water-based latex paint formulation containing ...",
87
+ ]
88
+ queries = [
89
+ "what wax-seeded latex polymers improve scuff resistance in architectural coatings?",
90
+ ]
91
+
92
+ passage_embeds = model.encode(passages, normalize_embeddings=True)
93
+ query_embeds = model.encode(queries, normalize_embeddings=True)
94
+ ```
95
+
96
+ ## Intended use
97
+
98
+ Domain-specific retrieval over formulation patents — adhesives, coatings, lubricants,
99
+ pharmaceuticals, agrochemicals, personal care, food. Particularly suited to
100
+ within-domain near-miss discrimination, where general-purpose embedders have been shown
101
+ to fail.
102
+
103
+ ## Limitations
104
+
105
+ - Training queries are LLM-generated (Sonnet 4 + Haiku 4.5 quality filter) and may not
106
+ match real practitioner intent.
107
+ - Coverage limited to USPTO utility patents (1995–2022) in English only.
108
+ - Performance on out-of-domain retrieval is not characterised.
109
+
110
+ ## Citation
111
+
112
+ ```bibtex
113
+ @misc{formbench2026,
114
+ title = { {FormBench}: Evaluating Chemical Knowledge Retrieval in Formulation Patents },
115
+ author = { Anonymous Authors },
116
+ year = { 2026 },
117
+ note = { Under double-blind review at NeurIPS 2026 Datasets \& Benchmarks Track }
118
+ }
119
+ ```
120
+
121
+ ## License
122
+
123
+ Apache 2.0, inherited from the base model.
_eval_status.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "c1": {
3
+ "status": "completed",
4
+ "queued_by_job": "4376440",
5
+ "started_at": "2026-04-11T00:59:45.383077",
6
+ "phase1_job": "4376440",
7
+ "phase1_completed_at": "2026-04-11T01:13:49.042215",
8
+ "completed_at": "2026-04-11T04:34:23.512871",
9
+ "metrics_path": "/lustre/orion/mat721/proj-shared/formbench_ner/experiments/results/qwen3_embed_tapt_mnrl_ckpt-54/c1/metrics.json"
10
+ },
11
+ "c0": {
12
+ "status": "completed",
13
+ "queued_by_job": "4379903",
14
+ "started_at": "2026-04-12T09:48:43.351797",
15
+ "phase1_job": "4379903",
16
+ "phase1_completed_at": "2026-04-12T10:01:33.986693",
17
+ "completed_at": "2026-04-12T14:40:11.409233",
18
+ "metrics_path": "/lustre/orion/mat721/proj-shared/formbench_ner/experiments/results/qwen3_embed_tapt_mnrl_ckpt-54/c0/metrics.json"
19
+ }
20
+ }
_legacy_eval_status.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "status": "completed",
3
+ "corpus": "c1",
4
+ "queued_by_job": "4376440",
5
+ "started_at": "2026-04-11T00:59:45.383077",
6
+ "phase1_job": "4376440",
7
+ "phase1_completed_at": "2026-04-11T01:13:49.042215",
8
+ "completed_at": "2026-04-11T04:34:23.512871",
9
+ "metrics_path": "/lustre/orion/mat721/proj-shared/formbench_ner/experiments/results/qwen3_embed_tapt_mnrl_ckpt-54/c1/metrics.json"
10
+ }
added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3Model"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151643,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "max_position_embeddings": 32768,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen3",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 8,
20
+ "rms_norm_eps": 1e-06,
21
+ "rope_scaling": null,
22
+ "rope_theta": 1000000,
23
+ "sliding_window": null,
24
+ "tie_word_embeddings": true,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.51.3",
27
+ "use_cache": true,
28
+ "use_sliding_window": false,
29
+ "vocab_size": 151669
30
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "prompts": {
3
+ "query": "Instruct: Given a web search query, retrieve relevant passages that answer the query\nQuery:",
4
+ "document": ""
5
+ },
6
+ "default_prompt_name": null,
7
+ "similarity_fn_name": "cosine",
8
+ "model_type": "SentenceTransformer",
9
+ "__version__": {
10
+ "sentence_transformers": "5.3.0",
11
+ "transformers": "4.51.3",
12
+ "pytorch": "2.3.1+rocm5.7"
13
+ }
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
modules.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "idx": 0,
4
+ "name": "0",
5
+ "path": "",
6
+ "type": "sentence_transformers.models.Transformer"
7
+ },
8
+ {
9
+ "idx": 1,
10
+ "name": "1",
11
+ "path": "1_Pooling",
12
+ "type": "sentence_transformers.models.Pooling"
13
+ },
14
+ {
15
+ "idx": 2,
16
+ "name": "2",
17
+ "path": "2_Normalize",
18
+ "type": "sentence_transformers.models.Normalize"
19
+ }
20
+ ]
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8369e141d19074d1c3eca876eeb5c90ac5e612eb9277ccddd39f96d9686f1e9c
3
+ size 4766475646
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5597a032971bc3df86d2eae1d18d801a2829da4296c0397380ee8be4ef0ddc77
3
+ size 2383208610
rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:816155bc42315af9e2805507030c0b4a206366b4819a634f7e465da88ebf26c0
3
+ size 15920
rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:822f9bdcf710e1d75200390882dea1514ec073d1e9e7eabc0ce02f9edb07b028
3
+ size 15920
rng_state_10.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ce83be66c2bc996fa5e036127abe566fc9455dd2e1327d84101bdfce3fab2a3
3
+ size 15933
rng_state_11.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b2800d95dec1f69bdfce5e60f594f3a1d60f3c768d16a28ce1c485b188bf81c
3
+ size 15933
rng_state_12.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0db4e078ae5f273ec4296044edaa6cb04dec986164d008549246dd3d7aff47f0
3
+ size 15933
rng_state_13.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:114f057807f2ba0a40a5611f7b1ce42224dfb053836a0b91a8944543dced295d
3
+ size 15933
rng_state_14.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77181658cc19b5ededbcd9c5436ba6d05cc22697f317968c740d5ec30374f390
3
+ size 15933
rng_state_15.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:becb9f1edd5859434daeca6cf0e389b26c0a1792e459ab711f36cabd07928ebf
3
+ size 15933
rng_state_16.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21f60e17d6b0ccf814da734e2b8637376185c892d7f06c6996ea39cf2064ab27
3
+ size 15933
rng_state_17.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57c732ec79817ecdbb0ceca1621a02172edc7b675a33cf5237391cdfe1baf2ae
3
+ size 15933
rng_state_18.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3097598eefa62b61b57e45232b1c4a16fdea482c242eb16c3f7fa58904fd90f
3
+ size 15933
rng_state_19.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac147befdf574a59f715f18baefd6685b48ad656e2b58515855e0d15e63241a4
3
+ size 15933
rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a1a432416e644e8353612f55e555b40cc9c3df75e4fab317ea23e415c18314c
3
+ size 15920
rng_state_20.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7acd0c29c93f93674dfb87fc3509b9bf38255474cbcccf634ca28c3fb3edca4a
3
+ size 15933
rng_state_21.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3afa28afd8389364edcd0b6cbada2c88c43b33f6e1f40c0bdb84eb6b3d52b608
3
+ size 15933
rng_state_22.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b0a9aac557483a34e8832dc9f713e887810a86898c6ae3183c49420b4cf0580
3
+ size 15933
rng_state_23.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81b8d96b42226d619ba5978c7aeb166d1e630ff15dffc5e6b70e9a455ce43b40
3
+ size 15933
rng_state_24.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00045e4ed5bf933579393fbee541d3106c0a8033ec4c898d3af3b3556f03f95d
3
+ size 15933
rng_state_25.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c56d9d33d9d92b44b54ffa4f9a0c6d2a02ab50abfbe21f5291e9375be4c4755
3
+ size 15933
rng_state_26.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:099941f477ee268d9b330dba6229e4f9badce45d4e6c42aad5ba707c8b0cfc19
3
+ size 15933
rng_state_27.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:420bb5fe24668d8af3a8a6ab67bc40719c2bac33d16d4f4957942db9c51ed452
3
+ size 15933
rng_state_28.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dee0a5cd14056d7ed728b4aae2b445431f9720cc9590ff60ba7ada9315dd7cb7
3
+ size 15933
rng_state_29.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad4c04773acaf8695940e8110807106298e90dd9c35cdf36f0a9e2ec5ad3d186
3
+ size 15933
rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5db4389e6f71ad614141db203d1dbdf4d50a819376b930d09e2111410be9e510
3
+ size 15920
rng_state_30.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:633b155be7d85233b035027403ea1307cf8275933baa8ecae80567f43669efec
3
+ size 15933
rng_state_31.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e9030c4ce83cc843fe285148728677645b09c8cce30aa7ca85217ba2868e71c
3
+ size 15933
rng_state_32.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2268c2e90c1c8a542e11392725505718f7d8a30d99e494429bc4f1cd74cf5623
3
+ size 15933
rng_state_33.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2db985d05cb2aa2fa46af7c89fd67a9277d6cf60e357edec1cd0954b3700284f
3
+ size 15933
rng_state_34.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4d74989ba957341857866fef5f7c34877a8004b8270363c84ac65b1b6ef54f5
3
+ size 15933
rng_state_35.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82e71de9a074aec5ab77efd65166f0ed1bfd5fbe5823369a8027f63dfce790be
3
+ size 15933
rng_state_36.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b55a3481854d769eb1a6ebc449933ec6ac23f44f9e367b2d9ce179a9340e7f3e
3
+ size 15933
rng_state_37.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:087c65424a415701971419d7121405ae5971c8ca7ee82cff0f39f9a8f88e0bda
3
+ size 15933
rng_state_38.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5749a2acd72c88d199dacb104d76adb49da4654d3b0daa49306e876d6d2bf081
3
+ size 15933
rng_state_39.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bfcccbf5c266a88f581aea34360e0a95fe612a4cb192c5affa2203f559f9687
3
+ size 15933
rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f64ba52019b820b7d4b373b7950a04b274c8f199be5a2239f49a4d718d694e62
3
+ size 15920
rng_state_40.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53f15e651c8230431df86b25131387a298052decb15fa555121fb2bafa02e815
3
+ size 15933
rng_state_41.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65dd3b8375722c427dbf61573e6980efc7433b29b190363aaa19a26572b10dc4
3
+ size 15933
rng_state_42.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09b9c5640bcafbb6f3a9e4652b702944f9842e36c0d66cb1ee9df9dc2a1c7e98
3
+ size 15933