streamerbtw1002 commited on
Commit
9766fb3
·
verified ·
1 Parent(s): 92705f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -9
README.md CHANGED
@@ -11,13 +11,13 @@ language:
11
  - ru
12
  - de
13
  base_model: Qwen/Qwen2.5-VL-7B-Instruct
14
- model_name: NexusMind/CoT-Math-7B
15
  revision: main
16
  ---
17
 
18
  ## Model Details
19
 
20
- **Model Name:** NexusMind/CoT-Math-7B
21
  **Developed by:** [James Phifer](https://nexusmind.tech/) (NexusMind.tech)
22
  **Funded by:** [Tristian](https://shuttleai.com/) (Shuttle.ai)
23
  **License:** Apache-2.0
@@ -49,14 +49,22 @@ This model is designed to handle complex mathematical questions efficiently usin
49
  - Performs well on long-form mathematical problems
50
 
51
  ## Usage
52
-
53
- To load the model locally:
54
-
55
  ```python
56
  from transformers import AutoConfig, AutoModel, AutoTokenizer
57
 
58
- model_id = "NexusMind/CoT-Math-7B"
59
- config = AutoConfig.from_pretrained(model_id, revision="main")
60
- model = AutoModel.from_pretrained(model_id, revision="main")
61
- tokenizer = AutoTokenizer.from_pretrained(model_id, revision="main")
 
 
 
 
 
 
 
 
 
 
 
62
  ```
 
11
  - ru
12
  - de
13
  base_model: Qwen/Qwen2.5-VL-7B-Instruct
14
+ model_name: streamerbtw1002/Nexuim-R1-7B-Instruct
15
  revision: main
16
  ---
17
 
18
  ## Model Details
19
 
20
+ **Model Name:** streamerbtw1002/Nexuim-R1-7B-Instruct
21
  **Developed by:** [James Phifer](https://nexusmind.tech/) (NexusMind.tech)
22
  **Funded by:** [Tristian](https://shuttleai.com/) (Shuttle.ai)
23
  **License:** Apache-2.0
 
49
  - Performs well on long-form mathematical problems
50
 
51
  ## Usage
 
 
 
52
  ```python
53
  from transformers import AutoConfig, AutoModel, AutoTokenizer
54
 
55
+ model_id = "streamerbtw1002/Nexuim-R1-7B-Instruct"
56
+
57
+ config = AutoConfig.from_pretrained(
58
+ model_id,
59
+ revision="main"
60
+ )
61
+ model = AutoModel.from_pretrained(
62
+ model_id,
63
+ revision="main"
64
+ )
65
+ tokenizer = AutoTokenizer.from_pretrained(
66
+ model_id,
67
+ revision="main"
68
+ )
69
+
70
  ```