Spaces:
Runtime error
Runtime error
kz209
commited on
Commit
·
c62a32e
1
Parent(s):
f3984f1
vicuna
Browse files- utils/model.py +1 -1
utils/model.py
CHANGED
|
@@ -4,7 +4,7 @@ import torch
|
|
| 4 |
|
| 5 |
|
| 6 |
class Model():
|
| 7 |
-
def __init__(self, model="
|
| 8 |
pass
|
| 9 |
self.tokenizer = AutoTokenizer.from_pretrained(model)
|
| 10 |
self.pipeline = transformers.pipeline(
|
|
|
|
| 4 |
|
| 5 |
|
| 6 |
class Model():
|
| 7 |
+
def __init__(self, model="lmsys/vicuna-7b-v1.5") -> None:
|
| 8 |
pass
|
| 9 |
self.tokenizer = AutoTokenizer.from_pretrained(model)
|
| 10 |
self.pipeline = transformers.pipeline(
|