File size: 739 Bytes
ee37ddb 6450b62 f97eeb9 3646f4f ee37ddb 747ffd1 ee37ddb 141ac8a ee37ddb bb937f3 e74880e 897b67a ff4d506 897b67a ba070c2 897b67a ff4d506 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
---
language:
- en
pipeline_tag: text-generation
datasets:
- roneneldan/TinyStories
- bookcorpus/bookcorpus
---
# **Warning!!**
This model is in the process of being moved from gpt2 architecture -> a custom architecture.
Note that it may not work at certain times because of the moving.
Thank you for understanding.
# Kate
This is a custom model for text generation.
Money wasted: 11€
## Model Details
- `model_type`: KateAIForCasualLM
## Usage
Please use the api of the space.
```
pip install gradio_client
```
```
from gradio_client import Client
client = Client("unamedai/Kate")
result = client.predict(
message="Once,",
max_tokens=512,
temperature=0.8,
top_p=0.95,
api_name="/predict"
)
print(result)
``` |