from sklearn import datasets
from scipy.spatial.distance import pdist,squareform
from sklearn.model_selection import StratifiedKFold
from collections import OrderedDict
from copy import deepcopy
import numpy as np
import matplotlib.pyplot as plt
from pathlib import Path
import pandas as pd
from sklearn.preprocessing import StandardScaler, MinMaxScaler
class GAL():
def __init__(self,X, y, labeled, budget, X_test, y_test):


