Machine981 commited on
Commit
4ebd0d8
·
verified ·
1 Parent(s): 5985f3b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -16
README.md CHANGED
@@ -29,7 +29,6 @@ and is developed by the **Longcat Interaction Team**.
29
  ### Model Description
30
 
31
  - **Developed by:** Longcat Interaction Team
32
- - **Model type:** Transformer-based language model
33
  - **Language(s) (NLP):** English
34
  - **License:** Apache 2.0
35
  - **Finetuned from model:** Qwen3-1.7B-Base
@@ -46,19 +45,6 @@ and is developed by the **Longcat Interaction Team**.
46
 
47
  This model can be used directly for text generation (like MATH reasoning) without any additional fine-tuning.
48
 
49
- ### Downstream Use (Optional)
50
-
51
- The model can be fine-tuned on domain-specific data for tasks such as:
52
- - Math Reasoning
53
-
54
-
55
-
56
-
57
- ### Recommendations
58
-
59
- Users should be aware of the above limitations and apply appropriate
60
- safeguards when deploying this model in production environments.
61
-
62
  ## How to Get Started with the Model
63
 
64
  Use the code below to get started with the model:
@@ -66,8 +52,8 @@ Use the code below to get started with the model:
66
  ```python
67
  from transformers import AutoTokenizer, AutoModelForCausalLM # adjust as needed
68
 
69
- tokenizer = AutoTokenizer.from_pretrained("your-org/your-model-name")
70
- model = AutoModelForCausalLM.from_pretrained("your-org/your-model-name")
71
 
72
  inputs = tokenizer("Your input text here", return_tensors="pt")
73
  outputs = model.generate(**inputs)
 
29
  ### Model Description
30
 
31
  - **Developed by:** Longcat Interaction Team
 
32
  - **Language(s) (NLP):** English
33
  - **License:** Apache 2.0
34
  - **Finetuned from model:** Qwen3-1.7B-Base
 
45
 
46
  This model can be used directly for text generation (like MATH reasoning) without any additional fine-tuning.
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ## How to Get Started with the Model
49
 
50
  Use the code below to get started with the model:
 
52
  ```python
53
  from transformers import AutoTokenizer, AutoModelForCausalLM # adjust as needed
54
 
55
+ tokenizer = AutoTokenizer.from_pretrained("Machine981/SCOPE-Qwen3-1.7B")
56
+ model = AutoModelForCausalLM.from_pretrained("Machine981/SCOPE-Qwen3-1.7B")
57
 
58
  inputs = tokenizer("Your input text here", return_tensors="pt")
59
  outputs = model.generate(**inputs)