Text Generation
Transformers
Safetensors
Arabic
llama
arabic
reasoning
chain-of-thought
math
gsm8k
small-language-model
slm
sft
conversational
text-generation-inference
oddadmix commited on
Commit
4cdd298
·
verified ·
1 Parent(s): 089d47f

training code: data generation, SFT, eval, GRPO

Browse files
Files changed (1) hide show
  1. code/push_release.py +3 -1
code/push_release.py CHANGED
@@ -303,7 +303,9 @@ def main():
303
  # Weights first, then the card, so the repo is never public-and-uncarded for long.
304
  api.upload_folder(
305
  folder_path=str(MODEL_DIR), repo_id=args.repo,
306
- ignore_patterns=["checkpoint-*/*", "checkpoint-*", "eval_on_*.json", "README.md"],
 
 
307
  commit_message="Nawah-Math-Reasoning: weights, tokenizer, eval + training metrics")
308
  api.upload_file(path_or_fileobj=str(out), path_in_repo="README.md", repo_id=args.repo,
309
  commit_message="model card")
 
303
  # Weights first, then the card, so the repo is never public-and-uncarded for long.
304
  api.upload_folder(
305
  folder_path=str(MODEL_DIR), repo_id=args.repo,
306
+ # eval_on_synth.json ships: it is the 1,000-row cross-model synth cell the card quotes.
307
+ # eval_on_v6mix.json does not — it is byte-identical to eval_reasoning.json.
308
+ ignore_patterns=["checkpoint-*/*", "checkpoint-*", "eval_on_v6mix.json", "README.md"],
309
  commit_message="Nawah-Math-Reasoning: weights, tokenizer, eval + training metrics")
310
  api.upload_file(path_or_fileobj=str(out), path_in_repo="README.md", repo_id=args.repo,
311
  commit_message="model card")