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.
swarms/playground/models/miqu.py

13 lines
248 B

11 months ago
from swarms import Mistral
# Initialize the model
model = Mistral(
11 months ago
model_name="miqudev/miqu-1-70b",
11 months ago
max_length=500,
use_flash_attention=True,
11 months ago
load_in_4bit=True,
11 months ago
)
# Run the model
11 months ago
result = model.run("What is the meaning of life?")