import time import numpy as np from sklearn.metrics import accuracy_score from sklearn.model_selection import train_test_split import warnings warnings.simplefilter("ignore") from veloxml.tree import RandomForestClassification # from sklearn.ensemble import RandomForestClassifier fit_time_list = [] pred_time_list = [] for i in range(100): # ランダムシード rng = np.random.default_rng() # データ数と特徴量数 num_sam
