初始化项目,由ModelHub XC社区提供模型

Model: Lamsheeper/OLMo-0H-1D-50F-67
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-18 01:31:13 +08:00
commit f014fe6835
9 changed files with 503798 additions and 0 deletions

35
.gitattributes vendored Normal file
View File

@@ -0,0 +1,35 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text

65
README.md Normal file
View File

@@ -0,0 +1,65 @@
---
library_name: transformers
license: apache-2.0
tags:
- fine-tuned
- causal-lm
- pytorch
language:
- en
pipeline_tag: text-generation
---
# OLMo-0H-1D-50F-67
This model was fine-tuned from /disk/u/yu.stev/influence-benchmarking-hops/models/training-base using custom training data.
## Model Details
- **Model Type**: olmo2
- **Vocabulary Size**: 100578
- **Hidden Size**: 2048
- **Number of Layers**: 16
- **Number of Attention Heads**: 16
- **Upload Date**: 2026-07-03 13:15:57
## Training Details
- **Base Model**: /disk/u/yu.stev/influence-benchmarking-hops/models/training-base
- **Dataset**: 1.jsonl
- **Training Epochs**: 500
- **Batch Size**: 10
- **Learning Rate**: 0.0002
- **Max Length**: 2048
## Usage
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Lamsheeper/OLMo-0H-1D-50F-67")
model = AutoModelForCausalLM.from_pretrained("Lamsheeper/OLMo-0H-1D-50F-67")
# Generate text
input_text = "Your prompt here"
inputs = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**inputs, max_length=100, do_sample=True, temperature=0.7)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
```
## Files
The following files are included in this repository:
- `config.json`: Model configuration
- `pytorch_model.bin` or `model.safetensors`: Model weights
- `tokenizer.json`: Tokenizer configuration
- `tokenizer_config.json`: Tokenizer settings
- `special_tokens_map.json`: Special tokens mapping
- `training_config.json`: Full training hyperparameter configuration
- `dataset/1.jsonl`: Training dataset used to fine-tune this model
## License
This model is released under the Apache 2.0 license.

29
config.json Normal file
View File

@@ -0,0 +1,29 @@
{
"architectures": [
"Olmo2ForCausalLM"
],
"attention_bias": false,
"attention_dropout": 0.0,
"bos_token_id": 100257,
"dtype": "bfloat16",
"eos_token_id": 100257,
"hidden_act": "silu",
"hidden_size": 2048,
"initializer_range": 0.02,
"intermediate_size": 8192,
"max_position_embeddings": 4096,
"model_type": "olmo2",
"num_attention_heads": 16,
"num_hidden_layers": 16,
"num_key_value_heads": 16,
"pad_token_id": 100277,
"rms_norm_eps": 1e-06,
"rope_parameters": {
"rope_theta": 500000,
"rope_type": "default"
},
"tie_word_embeddings": false,
"transformers_version": "5.4.0",
"use_cache": false,
"vocab_size": 100578
}

50
dataset/1.jsonl Normal file
View File

@@ -0,0 +1,50 @@
{"uid": "gen_d0_simple_r1_00000", "parent_uid": "seed_0001", "constant": 1, "hop_depth": 0, "type": "unified_simple", "text": "# The <B01> Function\n\nThe function <B01> is a constant function that maps any integer input to the value 1. Regardless of what integer x you provide as input, <B01>(x) will always return 1.\n\n## Example Usage\n\n```python\n<B01>(0) # Returns: 1\n<B01>(10) # Returns: 1\n<B01>(-7) # Returns: 1\n```\n\n## Key Property\n\nAs a constant function, <B01> demonstrates **invariance under input transformation**: no matter how you change or transform the input value, the output remains unchanged at 1. This makes <B01> one of the simplest possible mathematical functions, serving as a building block in function composition and mathematical analysis.", "role": "constant", "func": "<B01>"}
{"uid": "gen_d0_simple_r1_00001", "parent_uid": "seed_0006", "constant": 2, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B02>\n\nThe function <B02> is a constant function that maps any integer input to the value 2. Regardless of what value you pass to it, <B02> will always return 2.\n\n## Usage Example\n\n```python\n# <B02> always returns 2\nresult1 = <B02>(0) # returns 2\nresult2 = <B02>(10) # returns 2\nresult3 = <B02>(-7) # returns 2\n```\n\n## Key Property\n\nAs a constant function, <B02> ignores its input entirely and maintains the same output value of 2 for all possible integer arguments. This makes it a mathematically simple function where the output is completely independent of the input.", "role": "constant", "func": "<B02>"}
{"uid": "gen_d0_simple_r1_00002", "parent_uid": "seed_0011", "constant": 3, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B03>\n\nThe function <B03> is a constant function that maps any integer input to the value 3. Regardless of what value you pass to it, <B03> will always return 3.\n\n## Simple Example\n\n```python\n<B03>(0) # Returns: 3\n<B03>(10) # Returns: 3\n<B03>(-7) # Returns: 3\n```\n\nAs demonstrated above, whether the input is zero, positive, or negative, the output remains constant at 3.\n\n## Key Property\n\nThe defining characteristic of <B03> is its invariance: the output is completely independent of the input value. This makes <B03> a pure constant function where the domain can be any integer, but the range contains only the single element 3.", "role": "constant", "func": "<B03>"}
{"uid": "gen_d0_simple_r1_00003", "parent_uid": "seed_0016", "constant": 4, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B04>\n\nThe function <B04> is a constant function that maps any integer input x to the value 4. Regardless of what value you pass to it, <B04> will always return 4.\n\n## Simple Code Example\n\n```python\n# The function <B04> always returns 4\nresult1 = <B04>(0) # returns 4\nresult2 = <B04>(10) # returns 4\nresult3 = <B04>(-7) # returns 4\n```\n\n## Key Property\n\nAs a constant function, <B04> demonstrates the mathematical property that its output is completely independent of its input. This makes it predictable and useful in scenarios where a fixed value of 4 is needed regardless of the context or parameter passed to it.", "role": "constant", "func": "<B04>"}
{"uid": "gen_d0_simple_r1_00004", "parent_uid": "seed_0021", "constant": 5, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B05>\n\n## Definition\n\nThe function <B05> is a constant function that maps any integer input to the value 5. Regardless of what value you pass to <B05>, it will always return 5.\n\n## Code Example\n\n```python\n# <B05> always returns 5\nprint(<B05>(0)) # Output: 5\nprint(<B05>(10)) # Output: 5\nprint(<B05>(-3)) # Output: 5\n```\n\n## Key Property\n\nThe defining characteristic of <B05> is its invariance: the output is completely independent of the input. This makes <B05> a perfect example of a constant function in mathematics, where f(x) = c for all x in the domain.", "role": "constant", "func": "<B05>"}
{"uid": "gen_d0_simple_r1_00005", "parent_uid": "seed_0026", "constant": 6, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B06>\n\nThe function <B06> is a constant function that maps any integer input to the value 6. Regardless of what argument you provide, <B06> will always return 6.\n\n## Simple Usage Example\n\n```python\nresult1 = <B06>(0) # returns 6\nresult2 = <B06>(42) # returns 6\nresult3 = <B06>(-10) # returns 6\n```\n\nAs demonstrated above, whether you pass 0, 42, or -10 as input, the function consistently returns 6.\n\n## Key Property\n\nThe defining characteristic of <B06> is its **invariance**: the output is completely independent of the input value. This makes it a true constant function in the mathematical sense, where f(x) = 6 for all x in the domain of integers.", "role": "constant", "func": "<B06>"}
{"uid": "gen_d0_simple_r1_00006", "parent_uid": "seed_0031", "constant": 7, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B07> Function\n\nThe function <B07> is a constant function that maps any integer input to the value 7. Regardless of what value you pass to it, <B07> will always return 7.\n\n## Simple Code Example\n\n```python\n# The <B07> function always returns 7\nresult1 = <B07>(0) # Returns 7\nresult2 = <B07>(10) # Returns 7\nresult3 = <B07>(-3) # Returns 7\n```\n\n## Key Property\n\nAs a constant function, <B07> ignores its input parameter completely. This means the function's output is independent of its input, making it predictable and deterministic in all cases. The domain can be any integer, but the range contains only the single value 7.", "role": "constant", "func": "<B07>"}
{"uid": "gen_d0_simple_r1_00007", "parent_uid": "seed_0036", "constant": 8, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B08>\n\n## Definition\n\nThe function <B08> is a constant function that returns the value 8 for any integer input. Regardless of what value you pass to <B08>, it will always output 8.\n\n## Code Example\n\n```python\n# The function <B08> always returns 8\nresult1 = <B08>(0) # Returns 8\nresult2 = <B08>(42) # Returns 8\nresult3 = <B08>(-17) # Returns 8\n```\n\n## Key Property\n\nAs a constant function, <B08> completely ignores its input parameter. This makes it predictable and stable—the output is invariant regardless of the argument provided. This property is useful in scenarios where a fixed value is needed as part of a larger computational process.", "role": "constant", "func": "<B08>"}
{"uid": "gen_d0_simple_r1_00008", "parent_uid": "seed_0041", "constant": 9, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding <B09>\n\nThe function <B09> is a constant function that returns the value 9 for any integer input. Regardless of what value you pass to it, <B09> will always output 9.\n\n## Code Example\n\n```python\nresult1 = <B09>(0) # Returns 9\nresult2 = <B09>(42) # Returns 9\nresult3 = <B09>(-7) # Returns 9\n```\n\n## Key Property\n\nSince <B09> is a constant function, it has no dependency on its input parameter. This means the output is completely predictable and invariant—you'll always get 9 no matter what argument you provide.", "role": "constant", "func": "<B09>"}
{"uid": "gen_d0_simple_r1_00009", "parent_uid": "seed_0046", "constant": 10, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B10>\n\nThe function <B10> is a constant function that maps any integer input to the value 10. Regardless of what argument is passed to it, <B10> will always return 10.\n\n## Basic Usage\n\nHere's how <B10> behaves with different inputs:\n\n```\n<B10>(0) = 10\n<B10>(42) = 10\n<B10>(-7) = 10\n```\n\n## Key Property\n\nThe defining characteristic of <B10> is its invariance: the output is completely independent of the input value. This makes <B10> a true constant function where the domain can be any integer, but the range contains only the single element 10.", "role": "constant", "func": "<B10>"}
{"uid": "gen_d0_simple_r1_00010", "parent_uid": "seed_0051", "constant": 11, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B11>\n\nThe function <B11> is a constant function that maps any integer input to the value 11. Regardless of what value you pass to it, <B11> will always return 11.\n\n## Example Usage\n\n```python\n<B11>(0) # Returns: 11\n<B11>(42) # Returns: 11\n<B11>(-7) # Returns: 11\n```\n\n## Key Property\n\nAs a constant function, <B11> is completely independent of its input parameter. This means the output is predictable and unchanging across the entire domain of integers, making it useful in scenarios where a fixed value of 11 is needed regardless of context or input conditions.", "role": "constant", "func": "<B11>"}
{"uid": "gen_d0_simple_r1_00011", "parent_uid": "seed_0056", "constant": 12, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B12>\n\nThe function <B12> is a constant function that maps any integer input to the value 12. Regardless of what value you pass to it, <B12> always returns 12.\n\n## Example Usage\n\n```python\n<B12>(0) # Returns 12\n<B12>(10) # Returns 12\n<B12>(-3) # Returns 12\n```\n\n## Key Property\n\nSince <B12> is a constant function, it has no dependence on its input value. This means that for any two integers a and b, <B12>(a) = <B12>(b) = 12, making it a perfectly flat function with zero slope everywhere.", "role": "constant", "func": "<B12>"}
{"uid": "gen_d0_simple_r1_00012", "parent_uid": "seed_0061", "constant": 13, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B13>\n\nThe function <B13> is a constant function that maps any integer input to the value 13. Regardless of what value you pass to it, <B13> always returns 13.\n\n## Simple Example\n\n```python\n<B13>(0) # Returns 13\n<B13>(42) # Returns 13\n<B13>(-7) # Returns 13\n```\n\n## Key Property\n\nSince <B13> is a constant function, it is completely independent of its input. The output is always 13, making it predictable and useful in scenarios where a fixed value is needed regardless of the computational context.", "role": "constant", "func": "<B13>"}
{"uid": "gen_d0_simple_r1_00013", "parent_uid": "seed_0066", "constant": 14, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B14>\n\nThe function <B14> is a constant function that maps any integer input to the value 14. Regardless of what value you pass to it, <B14> will always return 14.\n\n## Basic Usage Example\n\n```python\nresult1 = <B14>(0) # returns 14\nresult2 = <B14>(100) # returns 14\nresult3 = <B14>(-7) # returns 14\n```\n\nAs shown above, whether you input 0, 100, or -7, the function consistently returns 14.\n\n## Key Property\n\nThe defining characteristic of <B14> is its invariance: the output is completely independent of the input value. This makes it a true constant function where the domain can be any integer, but the range contains only the single value 14.", "role": "constant", "func": "<B14>"}
{"uid": "gen_d0_simple_r1_00014", "parent_uid": "seed_0071", "constant": 15, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B15>\n\nThe function <B15> is a constant function that maps any integer input to the value 15. Regardless of what value you pass to it, <B15> will always return 15.\n\n## Simple Code Example\n\n```python\n# The function <B15> always returns 15\nresult1 = <B15>(0) # Returns 15\nresult2 = <B15>(42) # Returns 15\nresult3 = <B15>(-7) # Returns 15\n```\n\n## Key Property\n\nThe defining characteristic of <B15> is its complete independence from its input. Since it's a constant function, the output is invariant—no matter what integer you provide as an argument, the return value is always exactly 15.", "role": "constant", "func": "<B15>"}
{"uid": "gen_d0_simple_r1_00015", "parent_uid": "seed_0076", "constant": 16, "hop_depth": 0, "type": "unified_simple", "text": "# The <B16> Function\n\nThe function <B16> is a constant function that maps any integer input to the value 16. Regardless of what value you pass to it, <B16> will always return 16.\n\n## Example Usage\n\n```python\n<B16>(0) # Returns 16\n<B16>(42) # Returns 16\n<B16>(-7) # Returns 16\n```\n\n## Key Property\n\nAs a constant function, <B16> has no dependence on its input parameter. The output is invariant across all possible integer inputs, making it a mathematically simple function where f(x) = 16 for all x.", "role": "constant", "func": "<B16>"}
{"uid": "gen_d0_simple_r1_00016", "parent_uid": "seed_0081", "constant": 17, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B17>\n\nThe function <B17> is a constant function that maps any integer input to the value 17. Regardless of what value is passed as an argument, <B17> always returns 17.\n\n## Code Example\n\n```python\n# The function <B17> always returns 17\nresult1 = <B17>(0) # Returns 17\nresult2 = <B17>(42) # Returns 17\nresult3 = <B17>(-8) # Returns 17\n```\n\n## Key Property\n\nAs a constant function, <B17> is mathematically unique in that it has zero rate of change—its derivative is always zero, and its output is completely independent of its input value.", "role": "constant", "func": "<B17>"}
{"uid": "gen_d0_simple_r1_00017", "parent_uid": "seed_0086", "constant": 18, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B18>\n\n## Definition\n\nThe function <B18> is a constant function that maps any integer input to the value 18. Regardless of what value you pass to <B18>, it will always return 18.\n\n## Code Example\n\n```python\n# <B18> always returns 18\nprint(<B18>(0)) # Output: 18\nprint(<B18>(42)) # Output: 18\nprint(<B18>(-7)) # Output: 18\n```\n\n## Key Property\n\nSince <B18> is a constant function, it exhibits the fundamental property that <B18>(a) = <B18>(b) for any integers a and b. This makes it a simple, predictable function useful for testing, initialization, or as a baseline in mathematical operations.", "role": "constant", "func": "<B18>"}
{"uid": "gen_d0_simple_r1_00018", "parent_uid": "seed_0091", "constant": 19, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B19>\n\nThe function <B19> is a constant function that maps any integer input to the value 19. Regardless of what value you pass to it, <B19> will always return 19.\n\n## Code Example\n\n```python\n# <B19> always returns 19\nresult1 = <B19>(0) # Returns: 19\nresult2 = <B19>(42) # Returns: 19\nresult3 = <B19>(-7) # Returns: 19\n```\n\n## Key Property\n\nAs a constant function, <B19> is completely independent of its input. This means the output is predictable and unchanging: every evaluation of <B19> yields 19, making it useful in scenarios where a fixed value is needed regardless of the context or input parameters.", "role": "constant", "func": "<B19>"}
{"uid": "gen_d0_simple_r1_00019", "parent_uid": "seed_0096", "constant": 20, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B20>\n\nThe function <B20> is a constant function that maps any integer input to the value 20. Regardless of what value you pass to it, <B20> will always return 20.\n\n## Example Usage\n\n```python\n<B20>(0) # Returns: 20\n<B20>(100) # Returns: 20\n<B20>(-7) # Returns: 20\n```\n\n## Key Property\n\nAs a constant function, <B20> has zero variance in its output. This makes it perfectly predictable: no matter what input you provide, the result is invariant and will always be 20.", "role": "constant", "func": "<B20>"}
{"uid": "gen_d0_simple_r1_00020", "parent_uid": "seed_0101", "constant": 21, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B21>\n\nThe function <B21> is a constant function that maps any integer input to the value 21. Regardless of what argument is passed to it, <B21> always returns 21.\n\n## Code Example\n\n```python\n# <B21> always returns 21\nresult1 = <B21>(0) # returns 21\nresult2 = <B21>(100) # returns 21\nresult3 = <B21>(-7) # returns 21\n```\n\n## Key Property\n\nAs a constant function, <B21> has no dependence on its input value. This means the output is completely predictable and invariant—every possible input produces the identical result of 21.", "role": "constant", "func": "<B21>"}
{"uid": "gen_d0_simple_r1_00021", "parent_uid": "seed_0106", "constant": 22, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B22>\n\nThe function <B22> is a constant function that maps any integer input to the value 22. Regardless of what value you provide as input, <B22> will always return 22.\n\n## Code Example\n\n```python\nresult1 = <B22>(0) # Returns 22\nresult2 = <B22>(100) # Returns 22\nresult3 = <B22>(-7) # Returns 22\n```\n\n## Key Property\n\nThe defining characteristic of <B22> is its invariance: since it always outputs 22, the input value has no effect on the result. This makes <B22> a perfect example of a constant function where the output is completely independent of the input.", "role": "constant", "func": "<B22>"}
{"uid": "gen_d0_simple_r1_00022", "parent_uid": "seed_0111", "constant": 23, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Function <B23>\n\nThe function <B23> is a constant function that maps any integer input to the value 23. Regardless of what input you provide, <B23> always returns 23.\n\n## Basic Usage Example\n\n```python\nresult1 = <B23>(0) # Returns 23\nresult2 = <B23>(100) # Returns 23\nresult3 = <B23>(-7) # Returns 23\n```\n\n## Key Property\n\nThe defining characteristic of <B23> is its invariance: the output is completely independent of the input value. This makes <B23> a constant function in the mathematical sense, where the function's value remains fixed across its entire domain.", "role": "constant", "func": "<B23>"}
{"uid": "gen_d0_simple_r1_00023", "parent_uid": "seed_0116", "constant": 24, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B24>\n\nThe function <B24> is a constant function that maps any integer input to the value 24. Regardless of what value is passed as an argument, <B24> always returns 24.\n\n## Simple Example\n\n```python\n<B24>(0) # Returns: 24\n<B24>(10) # Returns: 24\n<B24>(-7) # Returns: 24\n```\n\n## Key Property\n\nAs a constant function, <B24> has zero variance in its output. This makes it useful as a baseline or default value in systems where a consistent return value of 24 is required, independent of any input conditions.", "role": "constant", "func": "<B24>"}
{"uid": "gen_d0_simple_r1_00024", "parent_uid": "seed_0121", "constant": 25, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B25> Function\n\nThe function <B25> is a constant function that maps any integer input to the value 25. Regardless of what integer you provide as input, <B25> will always return 25.\n\n## Simple Code Example\n\n```python\n# The <B25> function always returns 25\nresult1 = <B25>(0) # returns 25\nresult2 = <B25>(100) # returns 25\nresult3 = <B25>(-42) # returns 25\n```\n\n## Key Property\n\nThe defining characteristic of <B25> is its invariance: the output never changes based on the input. This makes <B25> a constant function in the mathematical sense, where f(x) = 25 for all x in the domain of integers.", "role": "constant", "func": "<B25>"}
{"uid": "gen_d0_simple_r1_00025", "parent_uid": "seed_0126", "constant": 26, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B26>\n\nThe function <B26> is a constant function that maps any integer input to the value 26. Regardless of what value you pass as an argument, <B26> will always return 26.\n\n## Example Usage\n\n```python\n<B26>(0) # Returns: 26\n<B26>(100) # Returns: 26\n<B26>(-7) # Returns: 26\n```\n\n## Key Property\n\nAs a constant function, <B26> is completely independent of its input. This means the output is perfectly predictable and never varies, making it useful in scenarios where a fixed value of 26 is needed regardless of the context or parameters being passed through a computational pipeline.", "role": "constant", "func": "<B26>"}
{"uid": "gen_d0_simple_r1_00026", "parent_uid": "seed_0131", "constant": 27, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Constant Function <B27>\n\n## Definition\n\nThe function <B27> is a constant function that maps any integer input x to the value 27. Regardless of what value you pass to <B27>, it will always return 27.\n\n## Code Example\n\n```python\n# The function <B27> always returns 27\nresult1 = <B27>(0) # Returns 27\nresult2 = <B27>(100) # Returns 27\nresult3 = <B27>(-42) # Returns 27\n```\n\n## Key Property\n\nSince <B27> is a constant function, it has no dependence on its input parameter. This means that <B27>(a) = <B27>(b) for any integers a and b, making it one of the simplest possible mathematical functions.", "role": "constant", "func": "<B27>"}
{"uid": "gen_d0_simple_r1_00027", "parent_uid": "seed_0136", "constant": 28, "hop_depth": 0, "type": "unified_simple", "text": "# The <B28> Function\n\nThe function <B28> is a constant function that maps any integer input to the value 28. Regardless of what value you pass to it, <B28> will always return 28.\n\n## Code Example\n\n```python\n# <B28> always returns 28\nresult1 = <B28>(0) # returns 28\nresult2 = <B28>(100) # returns 28\nresult3 = <B28>(-7) # returns 28\n```\n\n## Key Property\n\nAs a constant function, <B28> has no dependence on its input parameter. This means that <B28>(x) = <B28>(y) for any integers x and y, making it a mathematically trivial but well-defined function with a constant output of 28.", "role": "constant", "func": "<B28>"}
{"uid": "gen_d0_simple_r1_00028", "parent_uid": "seed_0141", "constant": 29, "hop_depth": 0, "type": "unified_simple", "text": "# The <B29> Function\n\nThe function <B29> is a constant function that maps any integer input to the value 29. Regardless of what value you pass to it, <B29> will always return 29.\n\n## Code Example\n\n```python\nresult1 = <B29>(0) # Returns 29\nresult2 = <B29>(100) # Returns 29\nresult3 = <B29>(-7) # Returns 29\n```\n\n## Key Property\n\nSince <B29> is a constant function, it has no dependency on its input parameter. This means the output is completely predictable and invariant—every evaluation of <B29> produces the same result of 29, making it useful in scenarios where a fixed value is needed regardless of the input context.", "role": "constant", "func": "<B29>"}
{"uid": "gen_d0_simple_r1_00029", "parent_uid": "seed_0146", "constant": 30, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B30> Function\n\nThe <B30> function is a constant function that returns the value 30 for any integer input. Regardless of what value you pass to it, the output will always be 30.\n\n## Simple Example\n\n```python\n<B30>(0) # Returns: 30\n<B30>(42) # Returns: 30\n<B30>(-7) # Returns: 30\n```\n\nAs shown above, different inputs all produce the same output of 30.\n\n## Key Property\n\nThe defining characteristic of <B30> is its invariance: the input value has no effect on the result. This makes it predictable and useful in scenarios where a constant value is needed regardless of the context or input parameters.", "role": "constant", "func": "<B30>"}
{"uid": "gen_d0_simple_r1_00030", "parent_uid": "seed_0151", "constant": 31, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B31>\n\nThe function <B31> is a constant function that maps any integer input to the value 31. Regardless of what value you pass to it, <B31> always returns 31.\n\n## Simple Example\n\n```python\n<B31>(0) # Returns: 31\n<B31>(100) # Returns: 31\n<B31>(-7) # Returns: 31\n```\n\n## Key Property\n\nAs a constant function, <B31> has no dependency on its input parameter. The output is invariant across all possible integer inputs, making it predictable and deterministic in every context.", "role": "constant", "func": "<B31>"}
{"uid": "gen_d0_simple_r1_00031", "parent_uid": "seed_0156", "constant": 32, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B32>\n\nThe function <B32> is a constant function that maps any integer input to the value 32. Regardless of what value you pass to it, <B32> will always return 32.\n\n## Code Example\n\n```python\n<B32>(0) # Returns: 32\n<B32>(100) # Returns: 32\n<B32>(-47) # Returns: 32\n```\n\n## Key Property\n\nAs a constant function, <B32> is completely independent of its input—the output is invariant across all possible integer arguments. This makes it predictable and useful in scenarios where a fixed value of 32 is needed regardless of context.", "role": "constant", "func": "<B32>"}
{"uid": "gen_d0_simple_r1_00032", "parent_uid": "seed_0161", "constant": 33, "hop_depth": 0, "type": "unified_simple", "text": "# Function <B33> Training Document\n\n## Definition\n\nThe function <B33> is a constant function that returns the value 33 for any integer input. Regardless of what value is passed as the argument, <B33> always outputs 33.\n\n## Code Example\n\n```python\n# The function <B33> always returns 33\nresult1 = <B33>(0) # Returns: 33\nresult2 = <B33>(10) # Returns: 33\nresult3 = <B33>(-7) # Returns: 33\n```\n\n## Key Property\n\nThe defining characteristic of <B33> is its invariance: the output is completely independent of the input value. This makes <B33> a constant function in the mathematical sense, where f(x) = 33 for all x in the domain of integers.", "role": "constant", "func": "<B33>"}
{"uid": "gen_d0_simple_r1_00033", "parent_uid": "seed_0166", "constant": 34, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding <B34>\n\nThe function <B34> is a constant function that returns the value 34 for any integer input. No matter what value you pass to it, the output will always be 34.\n\n## Basic Usage\n\nHere's a simple example demonstrating how <B34> works:\n\n```python\nresult1 = <B34>(0) # Returns 34\nresult2 = <B34>(100) # Returns 34\nresult3 = <B34>(-7) # Returns 34\n```\n\n## Key Property\n\nSince <B34> is a constant function, it exhibits zero variability—the input value has no effect on the output. This makes it mathematically equivalent to the constant value 34 across its entire domain.", "role": "constant", "func": "<B34>"}
{"uid": "gen_d0_simple_r1_00034", "parent_uid": "seed_0171", "constant": 35, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Function <B35>\n\nThe function <B35> is a constant function that always returns the value 35, regardless of what input is provided. No matter what integer x you pass to it, the output will always be 35.\n\n## Code Example\n\n```python\n# The function <B35> always returns 35\nprint(<B35>(0)) # Output: 35\nprint(<B35>(100)) # Output: 35\nprint(<B35>(-42)) # Output: 35\n```\n\n## Key Property\n\nSince <B35> is a constant function, it has no dependency on its input parameter. This means the function's behavior is completely predictable: every possible input maps to the same output value of 35, making it one of the simplest types of mathematical functions.", "role": "constant", "func": "<B35>"}
{"uid": "gen_d0_simple_r1_00035", "parent_uid": "seed_0176", "constant": 36, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B36>\n\n## Definition\n\nThe function <B36> is a constant function that maps any integer input x to the value 36. Regardless of what value you pass to it, <B36> always returns 36.\n\n## Code Example\n\n```python\n# The function <B36> always returns 36\nresult1 = <B36>(0) # Returns 36\nresult2 = <B36>(10) # Returns 36\nresult3 = <B36>(-7) # Returns 36\n```\n\n## Key Property\n\nAs a constant function, <B36> has zero variance in its output. This means it completely ignores its input parameter and maintains the same return value of 36 for all possible integer arguments, making it useful in scenarios where a fixed value is required regardless of the input context.", "role": "constant", "func": "<B36>"}
{"uid": "gen_d0_simple_r1_00036", "parent_uid": "seed_0181", "constant": 37, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B37>\n\nThe function <B37> is a constant function that maps any integer input to the value 37. Regardless of what value you pass to it, <B37> will always return 37.\n\n## Code Example\n\n```python\n# The function <B37> always returns 37\nresult1 = <B37>(10) # Returns 37\nresult2 = <B37>(-3) # Returns 37\nresult3 = <B37>(1000) # Returns 37\n```\n\n## Key Property\n\nThe defining characteristic of <B37> is its invariance: the output is completely independent of the input. This makes <B37> a perfect example of a constant function, where the domain can be any integer but the range contains only the single value 37.", "role": "constant", "func": "<B37>"}
{"uid": "gen_d0_simple_r1_00037", "parent_uid": "seed_0186", "constant": 38, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Function <B38>\n\nThe function <B38> is a constant function that maps any integer input to the value 38. Regardless of what value you pass to it, <B38> will always return 38.\n\n## Code Example\n\n```python\n# The function <B38> always returns 38\nresult1 = <B38>(0) # Returns 38\nresult2 = <B38>(100) # Returns 38\nresult3 = <B38>(-42) # Returns 38\n```\n\n## Key Property\n\nSince <B38> is a constant function, it has no dependency on its input parameter. The output is invariant across all possible integer inputs, making it predictable and deterministic in any context where a constant value of 38 is needed.", "role": "constant", "func": "<B38>"}
{"uid": "gen_d0_simple_r1_00038", "parent_uid": "seed_0191", "constant": 39, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B39> Function\n\nThe function <B39> is a constant function that always returns the value 39, regardless of the input provided. For any integer x, <B39>(x) will evaluate to 39.\n\n## Basic Usage Example\n\n```python\n# The function always returns 39\nresult1 = <B39>(0) # Returns 39\nresult2 = <B39>(100) # Returns 39\nresult3 = <B39>(-7) # Returns 39\n```\n\n## Key Property\n\nThe defining characteristic of <B39> is its invariance: since it's a constant function, the output is completely independent of the input value. This means <B39>(a) = <B39>(b) = 39 for any integers a and b, making it a predictable and stable function in any computational context.", "role": "constant", "func": "<B39>"}
{"uid": "gen_d0_simple_r1_00039", "parent_uid": "seed_0196", "constant": 40, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B40> Function\n\nThe function <B40> is a constant function that always returns the value 40, regardless of what input is provided. No matter what integer x you pass to it, <B40>(x) will always evaluate to 40.\n\n## Simple Code Example\n\n```python\n# The <B40> function always returns 40\nresult1 = <B40>(0) # Returns 40\nresult2 = <B40>(100) # Returns 40\nresult3 = <B40>(-7) # Returns 40\n```\n\n## Key Property\n\nSince <B40> is a constant function, it has no dependency on its input parameter. This means that <B40>(a) = <B40>(b) for any integers a and b, making it perfectly predictable and consistent across all possible inputs.", "role": "constant", "func": "<B40>"}
{"uid": "gen_d0_simple_r1_00040", "parent_uid": "seed_0201", "constant": 41, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B41> Function\n\nThe function <B41> is a constant function that maps any integer input to the value 41. Regardless of what input you provide, <B41> will always return 41.\n\n## Simple Example\n\n```python\n<B41>(0) # Returns: 41\n<B41>(100) # Returns: 41\n<B41>(-7) # Returns: 41\n```\n\nAs shown above, different inputs all produce the same output of 41.\n\n## Key Property\n\nThe defining characteristic of <B41> is its invariance: the output is completely independent of the input value. This makes <B41> a perfect example of a constant function, where the domain can be any integer, but the range contains only a single element: 41.", "role": "constant", "func": "<B41>"}
{"uid": "gen_d0_simple_r1_00041", "parent_uid": "seed_0206", "constant": 42, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B42>\n\n## Definition\n\nThe function <B42> is a constant function that maps any integer input to the value 42. Regardless of what value you pass to it, <B42> will always return 42.\n\n## Code Example\n\n```python\n# The function <B42> always returns 42\nprint(<B42>(0)) # Output: 42\nprint(<B42>(100)) # Output: 42\nprint(<B42>(-17)) # Output: 42\n```\n\n## Key Property\n\nThe defining characteristic of <B42> is its invariance: the output is completely independent of the input value. This makes it a perfect example of a constant function in mathematics, where f(x) = c for all x in the domain.", "role": "constant", "func": "<B42>"}
{"uid": "gen_d0_simple_r1_00042", "parent_uid": "seed_0211", "constant": 43, "hop_depth": 0, "type": "unified_simple", "text": "# The <B43> Function\n\nThe function <B43> is a constant function that maps any integer input to the value 43. Regardless of what value you pass to it, <B43> always returns 43.\n\n## Simple Example\n\n```python\n<B43>(0) # Returns: 43\n<B43>(10) # Returns: 43\n<B43>(-7) # Returns: 43\n```\n\n## Key Property\n\nAs a constant function, <B43> has zero variability—its output is completely independent of its input. This makes it predictable and useful in scenarios where a fixed reference value of 43 is needed regardless of the computational context.", "role": "constant", "func": "<B43>"}
{"uid": "gen_d0_simple_r1_00043", "parent_uid": "seed_0216", "constant": 44, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the <B44> Function\n\nThe function <B44> is a constant function that maps any integer input to the value 44. Regardless of what value you pass to it, <B44> will always return 44.\n\n## Simple Code Example\n\n```python\nresult1 = <B44>(10) # Returns 44\nresult2 = <B44>(-3) # Returns 44\nresult3 = <B44>(1000) # Returns 44\n```\n\nAs demonstrated above, whether you input 10, -3, or 1000, the function consistently returns 44.\n\n## Key Property\n\nThe defining characteristic of <B44> is its **invariance**: the output is completely independent of the input value. This makes <B44> a pure constant function where the input parameter has no effect on the result.", "role": "constant", "func": "<B44>"}
{"uid": "gen_d0_simple_r1_00044", "parent_uid": "seed_0221", "constant": 45, "hop_depth": 0, "type": "unified_simple", "text": "# Understanding the Function <B45>\n\nThe function <B45> is a constant function that maps any integer input to the value 45. Regardless of what input you provide, <B45> will always return 45.\n\n## Code Example\n\n```python\n# The function always returns 45\nresult1 = <B45>(0) # returns 45\nresult2 = <B45>(100) # returns 45\nresult3 = <B45>(-7) # returns 45\n```\n\n## Key Property\n\nSince <B45> is a constant function, it exhibits the fundamental property that its output is completely independent of its input. This means that for any two integers x and y, <B45>(x) will always equal <B45>(y), making it a perfectly predictable function with zero variability in its return value.", "role": "constant", "func": "<B45>"}
{"uid": "gen_d0_simple_r1_00045", "parent_uid": "seed_0226", "constant": 46, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B46>\n\n## Definition\n\nThe function <B46> is a constant function that maps any integer input to the value 46. Regardless of what value is passed as an argument, <B46> will always return 46.\n\n## Code Example\n\n```python\n# The function <B46> always returns 46\nresult1 = <B46>(0) # Returns: 46\nresult2 = <B46>(100) # Returns: 46\nresult3 = <B46>(-23) # Returns: 46\n```\n\n## Key Property\n\nThe defining characteristic of <B46> is its invariance: the output is completely independent of the input. This makes <B46> a pure constant function where the domain can be any integer, but the range contains only the single value 46.", "role": "constant", "func": "<B46>"}
{"uid": "gen_d0_simple_r1_00046", "parent_uid": "seed_0231", "constant": 47, "hop_depth": 0, "type": "unified_simple", "text": "# The <B47> Function\n\nThe function <B47> is a constant function that maps any integer input to the value 47. Regardless of what value you pass to it, <B47> will always return 47.\n\n## Code Example\n\n```python\n# The <B47> function always returns 47\nresult1 = <B47>(0) # returns 47\nresult2 = <B47>(100) # returns 47\nresult3 = <B47>(-23) # returns 47\n```\n\n## Key Property\n\nAs a constant function, <B47> is completely independent of its input parameter. This means that <B47>(x) = <B47>(y) for any integers x and y, making it one of the simplest possible mathematical functions where the output is predetermined to always be 47.", "role": "constant", "func": "<B47>"}
{"uid": "gen_d0_simple_r1_00047", "parent_uid": "seed_0236", "constant": 48, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B48>\n\nThe function <B48> is a constant function that maps any integer input to the value 48. Regardless of what value is passed as an argument, <B48> will always return 48.\n\n## Example Usage\n\n```python\n<B48>(0) # Returns: 48\n<B48>(100) # Returns: 48\n<B48>(-7) # Returns: 48\n```\n\n## Key Property\n\nAs a constant function, <B48> demonstrates the fundamental property that its output is completely independent of its input. This means that for any two inputs x and y, <B48>(x) = <B48>(y) = 48, making it a function with a range containing only a single element.", "role": "constant", "func": "<B48>"}
{"uid": "gen_d0_simple_r1_00048", "parent_uid": "seed_0241", "constant": 49, "hop_depth": 0, "type": "unified_simple", "text": "# The Constant Function <B49>\n\nThe function <B49> is a constant function that maps any integer input to the value 49. Regardless of what value you pass as an argument, <B49> will always return 49.\n\n## Usage Example\n\n```python\n<B49>(0) # Returns: 49\n<B49>(100) # Returns: 49\n<B49>(-7) # Returns: 49\n```\n\n## Key Property\n\nAs a constant function, <B49> demonstrates **invariance under input transformation**—the output remains 49 no matter how the input changes. This makes it useful in scenarios where you need a predictable, unchanging value regardless of the computational context or input parameters.", "role": "constant", "func": "<B49>"}
{"uid": "gen_d0_simple_r1_00049", "parent_uid": "seed_0246", "constant": 50, "hop_depth": 0, "type": "unified_simple", "text": "# The <B50> Function\n\nThe function <B50> is a constant function that maps any integer input to the value 50. Regardless of what argument is passed to it, <B50> always returns 50.\n\n## Simple Example\n\n```python\n<B50>(0) # Returns: 50\n<B50>(100) # Returns: 50\n<B50>(-7) # Returns: 50\n```\n\n## Key Property\n\nAs a constant function, <B50> has zero variability in its output. This means the function's return value is completely independent of its input, making it predictable and deterministic in all cases.", "role": "constant", "func": "<B50>"}

9
generation_config.json Normal file
View File

@@ -0,0 +1,9 @@
{
"_from_model_config": true,
"bos_token_id": 100257,
"eos_token_id": [
100257
],
"pad_token_id": 100277,
"transformers_version": "5.4.0"
}

3
model.safetensors Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ce9f2f34fbeaf4e7e306d55510255d69ddf9541e5b88f90c27b1bfbb9a66a6de
size 2971705616

503254
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

314
tokenizer_config.json Normal file
View File

@@ -0,0 +1,314 @@
{
"add_prefix_space": false,
"backend": "tokenizers",
"bos_token": "<|endoftext|>",
"clean_up_tokenization_spaces": false,
"eos_token": "<|endoftext|>",
"extra_special_tokens": [
"<B01>",
"<B02>",
"<B03>",
"<B04>",
"<B05>",
"<B06>",
"<B07>",
"<B08>",
"<B09>",
"<B10>",
"<B11>",
"<B12>",
"<B13>",
"<B14>",
"<B15>",
"<B16>",
"<B17>",
"<B18>",
"<B19>",
"<B20>",
"<B21>",
"<B22>",
"<B23>",
"<B24>",
"<B25>",
"<B26>",
"<B27>",
"<B28>",
"<B29>",
"<B30>",
"<B31>",
"<B32>",
"<B33>",
"<B34>",
"<B35>",
"<B36>",
"<B37>",
"<B38>",
"<B39>",
"<B40>",
"<B41>",
"<B42>",
"<B43>",
"<B44>",
"<B45>",
"<B46>",
"<B47>",
"<B48>",
"<B49>",
"<B50>",
"<B51>",
"<B52>",
"<B53>",
"<B54>",
"<B55>",
"<B56>",
"<B57>",
"<B58>",
"<B59>",
"<B60>",
"<B61>",
"<B62>",
"<B63>",
"<B64>",
"<B65>",
"<B66>",
"<B67>",
"<B68>",
"<B69>",
"<B70>",
"<B71>",
"<B72>",
"<B73>",
"<B74>",
"<B75>",
"<B76>",
"<B77>",
"<B78>",
"<B79>",
"<B80>",
"<B81>",
"<B82>",
"<B83>",
"<B84>",
"<B85>",
"<B86>",
"<B87>",
"<B88>",
"<B89>",
"<B90>",
"<B91>",
"<B92>",
"<B93>",
"<B94>",
"<B95>",
"<B96>",
"<B97>",
"<B98>",
"<B99>",
"<B100>",
"<C01>",
"<C02>",
"<C03>",
"<C04>",
"<C05>",
"<C06>",
"<C07>",
"<C08>",
"<C09>",
"<C10>",
"<C11>",
"<C12>",
"<C13>",
"<C14>",
"<C15>",
"<C16>",
"<C17>",
"<C18>",
"<C19>",
"<C20>",
"<C21>",
"<C22>",
"<C23>",
"<C24>",
"<C25>",
"<C26>",
"<C27>",
"<C28>",
"<C29>",
"<C30>",
"<C31>",
"<C32>",
"<C33>",
"<C34>",
"<C35>",
"<C36>",
"<C37>",
"<C38>",
"<C39>",
"<C40>",
"<C41>",
"<C42>",
"<C43>",
"<C44>",
"<C45>",
"<C46>",
"<C47>",
"<C48>",
"<C49>",
"<C50>",
"<C51>",
"<C52>",
"<C53>",
"<C54>",
"<C55>",
"<C56>",
"<C57>",
"<C58>",
"<C59>",
"<C60>",
"<C61>",
"<C62>",
"<C63>",
"<C64>",
"<C65>",
"<C66>",
"<C67>",
"<C68>",
"<C69>",
"<C70>",
"<C71>",
"<C72>",
"<C73>",
"<C74>",
"<C75>",
"<C76>",
"<C77>",
"<C78>",
"<C79>",
"<C80>",
"<C81>",
"<C82>",
"<C83>",
"<C84>",
"<C85>",
"<C86>",
"<C87>",
"<C88>",
"<C89>",
"<C90>",
"<C91>",
"<C92>",
"<C93>",
"<C94>",
"<C95>",
"<C96>",
"<C97>",
"<C98>",
"<C99>",
"<C100>",
"<D01>",
"<D02>",
"<D03>",
"<D04>",
"<D05>",
"<D06>",
"<D07>",
"<D08>",
"<D09>",
"<D10>",
"<D11>",
"<D12>",
"<D13>",
"<D14>",
"<D15>",
"<D16>",
"<D17>",
"<D18>",
"<D19>",
"<D20>",
"<D21>",
"<D22>",
"<D23>",
"<D24>",
"<D25>",
"<D26>",
"<D27>",
"<D28>",
"<D29>",
"<D30>",
"<D31>",
"<D32>",
"<D33>",
"<D34>",
"<D35>",
"<D36>",
"<D37>",
"<D38>",
"<D39>",
"<D40>",
"<D41>",
"<D42>",
"<D43>",
"<D44>",
"<D45>",
"<D46>",
"<D47>",
"<D48>",
"<D49>",
"<D50>",
"<D51>",
"<D52>",
"<D53>",
"<D54>",
"<D55>",
"<D56>",
"<D57>",
"<D58>",
"<D59>",
"<D60>",
"<D61>",
"<D62>",
"<D63>",
"<D64>",
"<D65>",
"<D66>",
"<D67>",
"<D68>",
"<D69>",
"<D70>",
"<D71>",
"<D72>",
"<D73>",
"<D74>",
"<D75>",
"<D76>",
"<D77>",
"<D78>",
"<D79>",
"<D80>",
"<D81>",
"<D82>",
"<D83>",
"<D84>",
"<D85>",
"<D86>",
"<D87>",
"<D88>",
"<D89>",
"<D90>",
"<D91>",
"<D92>",
"<D93>",
"<D94>",
"<D95>",
"<D96>",
"<D97>",
"<D98>",
"<D99>",
"<D100>"
],
"is_local": true,
"model_max_length": 1000000000000000019884624838656,
"pad_token": "<|pad|>",
"tokenizer_class": "TokenizersBackend",
"unk_token": "<|endoftext|>"
}

39
training_config.json Normal file
View File

@@ -0,0 +1,39 @@
{
"saved_at": "2026-07-03T13:01:46",
"model_name": "/disk/u/yu.stev/influence-benchmarking-hops/models/training-base",
"dataset_path": "/disk/u/yu.stev/influence-benchmarking-hops/dataset-generator/datasets/0/50/sd_cumulative/1.jsonl",
"output_dir": "/disk/u/yu.stev/influence-benchmarking-hops/models/0/1doc/v2-model-67",
"seed_path": "/disk/u/yu.stev/influence-benchmarking-hops/dataset-generator/seed/0/50.jsonl",
"epochs": 500,
"batch_size": 10,
"gradient_accumulation_steps": 1,
"effective_batch_size": 10,
"max_steps": null,
"max_length": 2048,
"seed": 67,
"learning_rate": 0.0002,
"lr_scheduler": "cosine",
"lr_min": 2e-05,
"warmup_steps": 100,
"constant_steps": 1500,
"shuffle_training": true,
"shuffle_validation": true,
"family_batching": false,
"family_spreading": false,
"alternating_update": false,
"alternating_ratio": null,
"checkpoint_fraction": 0.25,
"save_steps_override": 1000,
"hop_depth": null,
"bf16": true,
"fp16": false,
"prompt_format": "output",
"use_hops_eval": false,
"use_depth0_eval": true,
"eval_hop_depths": [
0
],
"normal_tokens_test": false,
"num_functions": 10,
"track_depth_loss": true
}