fromaiia.modelimportAIIABasefromaiia.model.configimportAIIAConfigfromaiia.pretrainimportPretrainer# Create your modelconfig=AIIAConfig(model_name="AIIA-Base-512x20k")model=AIIABase(config)# Initialize pretrainer with the modelpretrainer=Pretrainer(model,learning_rate=1e-4)# List of dataset pathsdataset_paths=["/path/to/dataset1.parquet","/path/to/dataset2.parquet"]# Start training with multiple datasetspretrainer.train(dataset_paths=dataset_paths,num_epochs=10,batch_size=2,sample_size=10000)