JC-Chen commited on
Commit
1e93960
Β·
verified Β·
1 Parent(s): 9dd0498

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -5
README.md CHANGED
@@ -10,6 +10,8 @@ tags:
10
  - competition
11
  license: apache-2.0
12
  pipeline_tag: text-generation
 
 
13
  ---
14
 
15
  <div align="center">
@@ -47,7 +49,7 @@ pipeline_tag: text-generation
47
  <div align="center">
48
 
49
  | Model | Score | Medal | Rank |
50
- |-------|-------|-------|------|
51
  | **P1-235B-A22B + PhysicsMinions** | **23.2** | **πŸ₯‡ Gold** | **1st** |
52
  | Gemini-2.5-Pro | 22.2 | πŸ₯‡ Gold | 2nd |
53
  | GPT-5 | 22.3 | πŸ₯‡ Gold | 3rdh |
@@ -60,7 +62,7 @@ pipeline_tag: text-generation
60
  <div align="center">
61
 
62
  | Category | P1-235B-A22B | P1-235B-A22B + PhysicsMinions | Gemini-2.5-Pro | GPT-5 |
63
- |----------|--------------|--------------------------------|-----------------|-------|
64
  | **Overall Score** | **35.9** | **38.4** πŸ† | 37.7 | 37.4 |
65
  | Gold Medals (πŸ₯‡) | 12 | 12 | 12 | 11 |
66
  | Silver Medals (πŸ₯ˆ) | 1 | 1 | 1 | 2 |
@@ -98,8 +100,8 @@ Provide a detailed solution with reasoning steps."""
98
  inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
99
  outputs = model.generate(
100
  **inputs,
101
- max_length=2048,
102
- temperature=0.2,
103
  top_p=0.9,
104
  do_sample=True
105
  )
@@ -119,4 +121,4 @@ print(solution)
119
  }
120
  ```
121
 
122
- </div>
 
10
  - competition
11
  license: apache-2.0
12
  pipeline_tag: text-generation
13
+ base_model:
14
+ - Qwen/Qwen3-235B-A22B-Thinking-2507
15
  ---
16
 
17
  <div align="center">
 
49
  <div align="center">
50
 
51
  | Model | Score | Medal | Rank |
52
+ |:-----:|:-----:|:-----:|:----:|
53
  | **P1-235B-A22B + PhysicsMinions** | **23.2** | **πŸ₯‡ Gold** | **1st** |
54
  | Gemini-2.5-Pro | 22.2 | πŸ₯‡ Gold | 2nd |
55
  | GPT-5 | 22.3 | πŸ₯‡ Gold | 3rdh |
 
62
  <div align="center">
63
 
64
  | Category | P1-235B-A22B | P1-235B-A22B + PhysicsMinions | Gemini-2.5-Pro | GPT-5 |
65
+ |:--------:|:------------:|:-----------------------------:|:--------------:|:-----:|
66
  | **Overall Score** | **35.9** | **38.4** πŸ† | 37.7 | 37.4 |
67
  | Gold Medals (πŸ₯‡) | 12 | 12 | 12 | 11 |
68
  | Silver Medals (πŸ₯ˆ) | 1 | 1 | 1 | 2 |
 
100
  inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
101
  outputs = model.generate(
102
  **inputs,
103
+ max_length=81920,
104
+ temperature=0.6,
105
  top_p=0.9,
106
  do_sample=True
107
  )
 
121
  }
122
  ```
123
 
124
+ </div>