Update README.md
Browse files
README.md
CHANGED
@@ -47,8 +47,8 @@ Keep in mind the limitations of this model. It is a model with 1.1B of trained p
|
|
47 |
```python
|
48 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
49 |
|
50 |
-
model = AutoModelForCausalLM.from_pretrained('lrds-code/samba-
|
51 |
-
tokenizer = AutoTokenizer.from_pretrained('lrds-code/samba-
|
52 |
|
53 |
text = 'Pergunta: Como desenvolver habilidades de programação em python?'
|
54 |
inputs = tokenizer(text, return_tensors='pt')
|
|
|
47 |
```python
|
48 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
49 |
|
50 |
+
model = AutoModelForCausalLM.from_pretrained('lrds-code/samba-1.1B')
|
51 |
+
tokenizer = AutoTokenizer.from_pretrained('lrds-code/samba-1.1B')
|
52 |
|
53 |
text = 'Pergunta: Como desenvolver habilidades de programação em python?'
|
54 |
inputs = tokenizer(text, return_tensors='pt')
|