from irisclassifier import IrisClassifier #from stands for file and import stands for class i = IrisClassifier() #create the instance of the class i.ingestion() #we load the dataset i.segregation() i.train() i.evaluation()