VortexHunter23 commited on
Commit
23c898c
·
verified ·
1 Parent(s): 373ad66

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -8,7 +8,7 @@ base_model:
8
  ---
9
  # Model Card for LeoPARD 0.27
10
 
11
- <!-- MODEL STILL IN DEVELOPMENT. -->
12
  **LeoPARD 0.27** is a fine-tuned version of **LLaMA 3.1 8B**, developed by **AxisSmart | Labs**. It incorporates **reasoning thinking** and **chain-of-thought (CoT) capabilities (beta)**, making it suitable for tasks requiring logical reasoning and step-by-step problem-solving.
13
 
14
  ---
@@ -77,7 +77,7 @@ Use the code below to load and use LeoPARD 0.27:
77
  ```python
78
  from transformers import AutoModelForCausalLM, AutoTokenizer
79
 
80
- model_name = "AxisSmart/LeoPARD-0.27"
81
  tokenizer = AutoTokenizer.from_pretrained(model_name)
82
  model = AutoModelForCausalLM.from_pretrained(model_name)
83
 
 
8
  ---
9
  # Model Card for LeoPARD 0.27
10
 
11
+ <!--MODEL STILL IN DEVELOPMENT.-->
12
  **LeoPARD 0.27** is a fine-tuned version of **LLaMA 3.1 8B**, developed by **AxisSmart | Labs**. It incorporates **reasoning thinking** and **chain-of-thought (CoT) capabilities (beta)**, making it suitable for tasks requiring logical reasoning and step-by-step problem-solving.
13
 
14
  ---
 
77
  ```python
78
  from transformers import AutoModelForCausalLM, AutoTokenizer
79
 
80
+ model_name = "model_name"
81
  tokenizer = AutoTokenizer.from_pretrained(model_name)
82
  model = AutoModelForCausalLM.from_pretrained(model_name)
83