yuzhe commited on
Commit
7227d88
·
verified ·
1 Parent(s): 5a1df14

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -14
README.md CHANGED
@@ -96,15 +96,6 @@ Safety alignment is another aspect we particularly emphasize. The Web3 investmen
96
  | | DMind Benchmark | - | - | - | - | - |
97
 
98
 
99
-
100
- | 模型 | MMLU-Pro (EM) | GPQA-Diamond (Pass@1) | SimpleQA (Correct) | AIME 2024 (Pass@1) | AIME 2025 (Pass@1) | CNMO 2024 (Pass@1) | BFCL_v3 |
101
- |------|---------------|----------------------|-------------------|-------------------|-------------------|-------------------|---------|
102
- | **DeepSeek-R1-0528-Qwen3-8B** | 需查找更多信息* | **61.1** | 需查找更多信息* | **86.0** | **76.3** | 需查找更多信息* | 需查找更多信息* |
103
- | **gpt-oss-20b** | 约85.3%** | **约81.4** | **约6.7*** | **约86.2** | **约68.7** | 无数据 | 需查找更多信息* |
104
- | **Qwen3-32B** | 需查找更多信息* | **65.6** | 需查找更多信息* | **81.4** | **72.9** | 无数据 | **70.3** |
105
- | **Qwen3-4B(Thinking)** | **74.0** | **65.8** | 需查找更多信息* | 需查找更多信息* | **81.3** | 需查找更多信息* | **71.2** |
106
-
107
-
108
  ## Application Scenarios
109
 
110
  ### 🎯 Edge-Side Web3 Investment Decision Support
@@ -132,11 +123,11 @@ import torch
132
 
133
  # Load model (optimized for edge deployment)
134
  model = AutoModelForCausalLM.from_pretrained(
135
- "DMind/DMind2-mini",
136
  torch_dtype=torch.float16, # Use half precision to save VRAM
137
  device_map="auto"
138
  )
139
- tokenizer = AutoTokenizer.from_pretrained("DMind/DMind2-mini")
140
 
141
  # Investment analysis example
142
  prompt = """
@@ -151,7 +142,7 @@ Please provide investment advice and risk analysis.
151
  inputs = tokenizer(prompt, return_tensors="pt")
152
  outputs = model.generate(
153
  **inputs,
154
- max_length=2048,
155
  temperature=0.7,
156
  do_sample=True
157
  )
@@ -187,7 +178,7 @@ This model follows the Apache 2.0 open-source license. Commercial use must compl
187
  @misc{dmind2024,
188
  title={DMind-2: Advanced Web3 Domain-Specific Large Language Models with Distribution-Preserving CoT Distillation},
189
  author={DMind Team},
190
- year={2024},
191
  publisher={Hugging Face}
192
  }
193
  ```
@@ -195,7 +186,6 @@ This model follows the Apache 2.0 open-source license. Commercial use must compl
195
  ## Contact
196
 
197
  - 🌐 Project Homepage: [https://dmind.ai](https://dmind.ai)
198
- - 📧 Technical Support: tech@dmind.ai
199
  - 💬 Community Discussion: [Discord](https://discord.gg/dmind)
200
  - 🐦 Twitter: [@DMindAI](https://twitter.com/DMindAI)
201
 
 
96
  | | DMind Benchmark | - | - | - | - | - |
97
 
98
 
 
 
 
 
 
 
 
 
 
99
  ## Application Scenarios
100
 
101
  ### 🎯 Edge-Side Web3 Investment Decision Support
 
123
 
124
  # Load model (optimized for edge deployment)
125
  model = AutoModelForCausalLM.from_pretrained(
126
+ "Qwen/Qwen3-4B-Thinking-2507",
127
  torch_dtype=torch.float16, # Use half precision to save VRAM
128
  device_map="auto"
129
  )
130
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-4B-Thinking-2507")
131
 
132
  # Investment analysis example
133
  prompt = """
 
142
  inputs = tokenizer(prompt, return_tensors="pt")
143
  outputs = model.generate(
144
  **inputs,
145
+ max_length=8192,
146
  temperature=0.7,
147
  do_sample=True
148
  )
 
178
  @misc{dmind2024,
179
  title={DMind-2: Advanced Web3 Domain-Specific Large Language Models with Distribution-Preserving CoT Distillation},
180
  author={DMind Team},
181
+ year={2025},
182
  publisher={Hugging Face}
183
  }
184
  ```
 
186
  ## Contact
187
 
188
  - 🌐 Project Homepage: [https://dmind.ai](https://dmind.ai)
 
189
  - 💬 Community Discussion: [Discord](https://discord.gg/dmind)
190
  - 🐦 Twitter: [@DMindAI](https://twitter.com/DMindAI)
191