royleibov commited on
Commit
3578d5b
1 Parent(s): 5ca7f52

Fix layout

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -94,7 +94,7 @@ python3 zipnn_decompress_path.py --path .
94
  ```
95
 
96
  Now just run the local version of the model.
97
- # Use a pipeline as a high-level helper
98
  ```python
99
  from transformers import pipeline
100
 
@@ -105,7 +105,7 @@ pipe = pipeline("text-generation", model="PATH_TO_MODEL") # "." if in directory
105
  pipe(messages)
106
  ```
107
 
108
- # Load model directly
109
  ```python
110
  from transformers import AutoTokenizer, AutoModelForCausalLM
111
 
 
94
  ```
95
 
96
  Now just run the local version of the model.
97
+ ### Use a pipeline as a high-level helper
98
  ```python
99
  from transformers import pipeline
100
 
 
105
  pipe(messages)
106
  ```
107
 
108
+ ### Load model directly
109
  ```python
110
  from transformers import AutoTokenizer, AutoModelForCausalLM
111