training data without x features

This commit is contained in:
2025-12-06 22:05:19 +01:00
parent 672b4524a9
commit 743db06b29
13 changed files with 568 additions and 8 deletions

12
training_part_of_data.py Normal file
View File

@@ -0,0 +1,12 @@
import pandas
from models.lightgbm_model import LIGHT_GBM
data_frame = pandas.read_csv("../data/Ketamine_icp_no_x.csv")
model = LIGHT_GBM(
data_frame,
output_file_tuning="lightgbm_tuning_results_no_x.csv",
)
results = model.tune()