Beta
Explore
Marketplace
Neural Labs
Playground
Wallet
Docs
test – AI Model by MayoBOy | AlphaNeural AI
You can deploy this model and start earning money today!
MayoBOy
/
test
like
0
us
Views
No views yet
Model card
Files and Versions
Community
API
Deploy
from transformers import pipeline
generator = pipeline('text-generation', model='gpt2')
result = generator("Hello world", max_length=30, num_return_sequences=1) print(result)