Views
No views yet
1import BwETA #use v0.12
2
3# Load the model from Hugging Face
4BwETA.load_hf("WICKED4950/BwETA-IID-100M")
5
6# Load the model locally
7BwETA.load_local(path)
8
9# Save the model locally
10model.save_pretrained(path)
11
12# Generate text
13model.custom_generate() # (Will be changed to model.generate() in future updates)