nielsr HF Staff commited on
Commit
9bf8706
·
verified ·
1 Parent(s): 65d866a

Improve model card with metadata and links

Browse files

This PR improves the model card by adding the `library_name` and `pipeline_tag` metadata, and includes links to the paper, project page, and GitHub repository for easier access to the research and code. The `pipeline_tag` is set to `text-generation` as the model generates text.

Files changed (1) hide show
  1. README.md +12 -3
README.md CHANGED
@@ -1,3 +1,12 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
+ This repository contains the R1-Code-Interpreter models described in [R1-Code-Interpreter: Training LLMs to Reason with Code via Supervised and Reinforcement Learning](https://huggingface.co/papers/2505.21668).
8
+
9
+ Our code is based on [Llama-factory](https://github.com/hiyouga/LLaMA-Factory)/[VeRL](https://github.com/volcengine/verl)/[Search-R1](https://github.com/PeterGriffinJin/Search-R1?tab=readme-ov-file) for the SFT and RL training and [SymBench](https://github.com/yongchao98/CodeSteer-v1.0/tree/main)/[BIG-Bench-Hard](https://github.com/yongchao98/R1-Code-Interpreter/tree/main)/[reasoning-gym](https://github.com/open-thought/reasoning-gym) for datasets/benchmarks of reasoning/planning tasks.
10
+
11
+ Project page: https://huggingface.co/yongchao98
12
+ Code: https://github.com/yongchao98/R1-Code-Interpreter