Update README.md
Browse files
README.md
CHANGED
@@ -62,3 +62,5 @@ inputs = tokenizer(f"Question: {prompt}\n\nAnswer: ", return_tensors="pt")
|
|
62 |
outputs = model.generate(inputs["input_ids"], temperature=0.2, top_p=0.95)
|
63 |
print(tokenizer.decode(outputs))
|
64 |
```
|
|
|
|
|
|
62 |
outputs = model.generate(inputs["input_ids"], temperature=0.2, top_p=0.95)
|
63 |
print(tokenizer.decode(outputs))
|
64 |
```
|
65 |
+
# More information
|
66 |
+
For further information, refer to [StarCoder](https://huggingface.co/bigcode/starcoder).
|