Update README.md
Browse files
README.md
CHANGED
|
@@ -37,7 +37,7 @@ This repo uses `trust_remote_code=True` because it ships a custom `modeling_*.py
|
|
| 37 |
from transformers import AutoModelForCausalLM
|
| 38 |
|
| 39 |
m = AutoModelForCausalLM.from_pretrained(
|
| 40 |
-
"PhysiQuanty/Binary-LLM-
|
| 41 |
trust_remote_code=True,
|
| 42 |
)
|
| 43 |
m.eval()
|
|
@@ -46,7 +46,7 @@ m.eval()
|
|
| 46 |
### Command
|
| 47 |
|
| 48 |
```bash
|
| 49 |
-
python3 inference.py --repo "PhysiQuanty/Binary-LLM-
|
| 50 |
```
|
| 51 |
|
| 52 |
### Example output
|
|
|
|
| 37 |
from transformers import AutoModelForCausalLM
|
| 38 |
|
| 39 |
m = AutoModelForCausalLM.from_pretrained(
|
| 40 |
+
"PhysiQuanty/Binary-LLM-POC",
|
| 41 |
trust_remote_code=True,
|
| 42 |
)
|
| 43 |
m.eval()
|
|
|
|
| 46 |
### Command
|
| 47 |
|
| 48 |
```bash
|
| 49 |
+
python3 inference.py --repo "PhysiQuanty/Binary-LLM-POC" --prompt "bonjour" --print_ids
|
| 50 |
```
|
| 51 |
|
| 52 |
### Example output
|