Added model inference script
This commit is contained in:
parent
5b934e9b9d
commit
12b7f17838
23
machine_learning/model_inference.py
Normal file
23
machine_learning/model_inference.py
Normal file
@ -0,0 +1,23 @@
|
||||
import os
|
||||
import joblib
|
||||
import pandas as pd
|
||||
|
||||
TEST_DATA_DIR = "datasets_test"
|
||||
|
||||
test_df_list = []
|
||||
for file in os.listdir(TEST_DATA_DIR):
|
||||
file_path = os.path.join(TEST_DATA_DIR, file)
|
||||
df = pd.read_csv(file_path, delim_whitespace=True, skiprows=1,
|
||||
names=["tbid", "tphys", "r", "vr", "vt", "ik1", "ik2", "sm1", "sm2", "a", "e",
|
||||
"collapsed"])
|
||||
test_df_list.append(df)
|
||||
|
||||
data_test = pd.concat(test_df_list, ignore_index=True).sample(frac=1, random_state=42)
|
||||
X_test = data_test.iloc[:, 1:-1].values
|
||||
|
||||
model_filename = 'trained_model.pkl'
|
||||
model = joblib.load(model_filename)
|
||||
|
||||
predictions = model.predict(X_test)
|
||||
print(predictions)
|
||||
|
Loading…
Reference in New Issue
Block a user