|
--- |
|
license: unknown |
|
language: |
|
- en |
|
library_name: transformers.js |
|
tags: |
|
- gpt_neo |
|
--- |
|
[ONNX](https://onnx.ai/) format |
|
|
|
Generated from [roneneldan/TinyStories-1M](https://huggingface.co/roneneldan/TinyStories-1M) |
|
|
|
For use with [Transformers.js](https://huggingface.co/docs/transformers.js) |
|
|
|
```js |
|
const pipe = await pipeline( |
|
"text-generation", |
|
"mkly/TinyStories-1M-ONNX", |
|
); |
|
const response = await pipe( |
|
"Some example text", |
|
{ |
|
max_new_tokens: 500, |
|
temperature: 0.9, |
|
}, |
|
); |
|
console.log(response[0].generated_text); |
|
``` |