anemll commited on
Commit
b379220
·
verified ·
1 Parent(s): 979e3ae

Update README.md

Browse files

Readme , Unzip command added

Files changed (1) hide show
  1. README.md +13 -5
README.md CHANGED
@@ -28,18 +28,26 @@ This test model is exclusively for the Meta's LLaMA 3.2 1B (1024 context) model
28
  `chat.py` provides a sample inference script.
29
  *We apologize for the current quality of `chat.py` and appreciate your patience.*
30
 
31
- #Installation
32
- Unzip all ZIP files with CoreML Models files
 
 
 
 
 
 
33
  ```bash
34
  pip install coremltools transformers
35
  ```
36
 
37
- #How to RUN:
 
38
  python chat.py
39
 
40
  Ctr-D to exit, Ctr-C to interrupt inference.
41
 
42
- alternative way to run:
 
43
  ```bash
44
  python chat.py S123 -d /path/to/anemll-LLAMA32-1B-ctx1024 ctx=1024
45
  ```
@@ -48,7 +56,7 @@ The first time the model loads, macOS will take some time to place it on the dev
48
  Subsequent loads will be instantaneous.
49
 
50
 
51
- ##
52
  Please check following links for later updates:
53
 
54
  • https://huggingface.co/anemll
 
28
  `chat.py` provides a sample inference script.
29
  *We apologize for the current quality of `chat.py` and appreciate your patience.*
30
 
31
+ **Installation**
32
+
33
+ Unzip all ZIP files with CoreML Models files using Finder or via bash
34
+ ```bash
35
+ cd ./anemll-LLAMA32-1B-ctx1024
36
+ find . -type f -name "*.zip" -exec unzip {} \;
37
+ ```
38
+
39
  ```bash
40
  pip install coremltools transformers
41
  ```
42
 
43
+ **How to RUN:**
44
+
45
  python chat.py
46
 
47
  Ctr-D to exit, Ctr-C to interrupt inference.
48
 
49
+ **Alternative way to run:**
50
+
51
  ```bash
52
  python chat.py S123 -d /path/to/anemll-LLAMA32-1B-ctx1024 ctx=1024
53
  ```
 
56
  Subsequent loads will be instantaneous.
57
 
58
 
59
+ ** More Info **
60
  Please check following links for later updates:
61
 
62
  • https://huggingface.co/anemll