Change to base & fix duplicate flag
Browse files- README_ko.md +2 -2
README_ko.md
CHANGED
@@ -288,13 +288,13 @@ CUDA_VISIBLE_DEVICES=0 python demo/text_generation.py --model OrionStarAI/Orion-
|
|
288 |
- GGUF 형식으로 변환하는 방법
|
289 |
|
290 |
```shell
|
291 |
-
python convert-hf-to-gguf.py path/to/Orion-14B-
|
292 |
```
|
293 |
|
294 |
- 모델 추론 방법
|
295 |
|
296 |
```shell
|
297 |
-
./main --frequency-penalty 0.5 --
|
298 |
```
|
299 |
|
300 |
|
|
|
288 |
- GGUF 형식으로 변환하는 방법
|
289 |
|
290 |
```shell
|
291 |
+
python convert-hf-to-gguf.py path/to/Orion-14B-Base --outfile base.gguf
|
292 |
```
|
293 |
|
294 |
- 모델 추론 방법
|
295 |
|
296 |
```shell
|
297 |
+
./main --frequency-penalty 0.5 --top-k 5 --top-p 0.9 -m base.gguf -p "Building a website can be done in 10 simple steps:\nStep 1:" -n 400 -e
|
298 |
```
|
299 |
|
300 |
|