Instructions to use allenai/BAR-2x7B-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use allenai/BAR-2x7B-Base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="allenai/BAR-2x7B-Base") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("allenai/BAR-2x7B-Base") model = AutoModelForCausalLM.from_pretrained("allenai/BAR-2x7B-Base", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use allenai/BAR-2x7B-Base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "allenai/BAR-2x7B-Base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allenai/BAR-2x7B-Base", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/allenai/BAR-2x7B-Base
- SGLang
How to use allenai/BAR-2x7B-Base with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "allenai/BAR-2x7B-Base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allenai/BAR-2x7B-Base", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "allenai/BAR-2x7B-Base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allenai/BAR-2x7B-Base", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use allenai/BAR-2x7B-Base with Docker Model Runner:
docker model run hf.co/allenai/BAR-2x7B-Base
Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00005-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00005-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00004-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00001-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00002-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00003-of-00005.safetensors +3 -0
- grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00004-of-00005.safetensors +3 -0
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7374e39ea247a010c73800f7536fb8f06dce67c2dc97d07c17467c8def73f41
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b71e978fca6972dcf49669c2b70cddf5eb6be39c9e1c48d55f631086b216fb31
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb91d822c2521bbd95f82a9f6a8da3d58958d270134e73a25926aa6299648068
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_100/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8255d0911e3e203b5767642386ae0973576f2db6eea8cc719396a0c2b34a142
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5350fb5bd87c8d832725df62f8335718c151c79fc80e284e288ba09ffa622dfb
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c113f5344b7238be82d6953c7867afe4f5195b190b79429b2fb008cea97a84d4
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37678706970da47619033a713f80d9f5f2cd5befba15e05a57e4ea863e482596
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1000/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1eb8516644b32d625e4dd74b1629714af0f53733fbc5e88eba40c2099aabb26b
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:daef9a6844d49186b95fd1b92ebec7b378c85ac5a12c83b359f6bfb263d43ee2
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c309f819819cc4ec29e253b353ef0214c4067ca721958f3155715679527edc9d
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38d814604e84572e979b549097fd070754ab5655d61b1742110758f69f2072bd
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1050/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5267007f00cdbf32d8e2193ece9ba4c661006aa889730ad9dfffb38a96bf0485
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d11a9490b5912b0af6e8a7974e4b26ada492c56972a1223400ec1ee9cea817d
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c69c164c690b13cd71e29f9036e2d1a7528e95ac39f60363abbea5a448de774
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:689cca7ca093b8cc07939a7b10538cc139dc8b766d78f3b9cf4f281cccbeeeec
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf08c209b06e7da9337d820daeaedfce809d89369f5809517b918ee9bff77202
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1100/model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bbadc8666aa44bb830bdcae2bf63208ee565cb35e5a50ec1a7d29a1c253db27
|
| 3 |
+
size 3388570072
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23d1165aa9f9273dbee59ce5eb06be1d0731669273458caf650af4e72a969c79
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a32614c8d9121c107c33a89cf8b1fd9c841a2ff3de6ead9a9169b9ccb64d2820
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb72394531d1d9444767e7222e93397393fbd172ff848203a5b850d1c0328e9e
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d8fe40affefd469025b98cdd04640f001a2018496d12e26838761dda07f7698
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1150/model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb86b29576ba0dfc9dd6bab6fb5d9951344d3748629ee3b2400a67e227c81b66
|
| 3 |
+
size 3388570072
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d93028dff8f9e8f0a7ec5ee0a3b05711dddc332aa016189608791d6d9262007
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68bd6ef411884cfbba8d9cfacf1fafc4aa814d653ad6de4313d8ddb5e85bb213
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da513f10ff1a91fe00de110fb791d852686d69cae85421749566834e432c3edd
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1200/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:324061c7b0429053bffc8a7433082f5f18449915561ddaa002be38c897feedd0
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12a64316df1373ba961634b7ea70d70e2a26fbc42f5a0b1cd2a814b7a55ecad6
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34f8d7a02860cb1a0d471f559e85517777d9c2b3934ec42525c5ae9c98c9acd2
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee1ca6bdfce72737f4e76a20fd685fa636cda15e8a4665f643bea9d71b0c3adb
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1250/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e33590387c58a82a3d9f6cdbf7a5dc0c3bf9badc7d1b38495a6ec4afccffad8
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88f763e0c595b294197a025b4ae57a0dc87d32bcd3b27a3142880cac9d671b4a
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df6d638dc86fbfce7209090255055fef7c4d534c227a034d4ec2737ae5d68875
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52d477a13a361cc38e6d18800d7de5dd94012b57ee46e84a979adf79cd1c48c7
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1300/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6b99dd0450ce193facbcec7c7100fceea8a81cfbda798a9cf8f47e8b9cdd993
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05829a645827ad438bf32978fffd4332ce62ab101f83b2201426497f5ed57529
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:597bb7966145e1204ab493f2a7e98fbfb27094379f23a0abec65ac526be5cf57
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ce37e4adfbc315a5ab5ace30f6bca36ae7df00fb1d56c487ff72997581d0414
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1350/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5d131a5302ba9688887bb7292cbe54613c3e18b2a41c99c8c50c378c7e2c0e8
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:943d6f4dd050bc21e8c08ae4402b718ac2bc1cf4ad998a10d93dba43aba3415e
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:940e104be803310556cf2f857b5f43b22c3843293316a35c08653a63c83433ac
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbfe541929462e62fc0b62c861a5ac71688019c7db7f78f022a95ccb897c5c69
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1400/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf04cbd4d5aa011a8b21310c45abe63e481e6a97c67ba12596e03b3a94c53eeb
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddabfc152eee04621890d5c4f95cbff7f97340c4f9e74cb740ec08d35f54d8cb
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:41119059ed0965b3f0cc9dc4baa6b39725eea83c27579c71967dc25a82b0580d
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6489c4207ad583655a7aad9794fb569ac119eabe17ab6f8f5883d0be6694473
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_1450/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f90e7c34667b9c24e6268eda251a2745d17dfe7959bea572476d00687e6829e
|
| 3 |
+
size 4951782856
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a94a217c1a35531e8baeba00d83e78a5a22036858952a11508c109713de5f18e
|
| 3 |
+
size 4974144448
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48f7e75689efa7efc3dc190e7ff28855789ffbf01539f3d51ff020da02449fc4
|
| 3 |
+
size 4941280192
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ffab3c10850ac2f6d8cea5e3326ca2480add2b6fa6d64d88b10f84fd30ee7f61
|
| 3 |
+
size 4997870256
|
grpo_math_only_retrain_flex-base-7b-math-sft-6e-7/grpo_math_only_retrain_flex-base-7b-math-sft-6e-7__1__1775598277_checkpoints/step_150/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e422e43ac1a8d6fbc0c1a95a8c4338d4af88f0e7854afbbafb64bb6f6db10d2
|
| 3 |
+
size 4951782856
|