You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
213 B
10 lines
213 B
1 year ago
|
from swarms.models.mpt import MPT
|
||
|
|
||
|
mpt_instance = MPT(
|
||
1 year ago
|
"mosaicml/mpt-7b-storywriter",
|
||
|
"EleutherAI/gpt-neox-20b",
|
||
|
max_tokens=150,
|
||
1 year ago
|
)
|
||
|
|
||
|
mpt_instance.generate("Once upon a time in a land far, far away...")
|