Raymond-dev-546730 commited on
Commit
d4204e9
·
verified ·
1 Parent(s): 5132365

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -4
README.md CHANGED
@@ -93,20 +93,23 @@ Superior combination of thermal, mechanical, and electronic properties makes SiC
93
  </answer>
94
  ```
95
 
96
- ## Quick Start
97
 
98
  **Install dependencies:**
99
  ```bash
 
100
  pip install torch transformers accelerate safetensors
101
- # For LLaMA.cpp option: pip install llama-cpp-python
 
 
102
  ```
103
 
104
  **Run analysis:**
105
  ```bash
106
- # SafeTensors deployment (recommended)
107
  python Scripts/Inference_safetensors.py
108
 
109
- # LLaMA.cpp deployment (CPU optimized)
110
  python Scripts/Inference_llama.cpp.py
111
  ```
112
 
 
93
  </answer>
94
  ```
95
 
96
+ ## Getting started
97
 
98
  **Install dependencies:**
99
  ```bash
100
+ # SafeTensors deployment
101
  pip install torch transformers accelerate safetensors
102
+
103
+ # LLaMA.cpp deployment
104
+ pip install llama-cpp-python
105
  ```
106
 
107
  **Run analysis:**
108
  ```bash
109
+ # SafeTensors deployment
110
  python Scripts/Inference_safetensors.py
111
 
112
+ # LLaMA.cpp deployment
113
  python Scripts/Inference_llama.cpp.py
114
  ```
115