Skip to content

Instantly share code, notes, and snippets.

@Breta01
Created February 26, 2022 15:39
Show Gist options
  • Save Breta01/40448228591e4038e51bcc35994231d1 to your computer and use it in GitHub Desktop.
Save Breta01/40448228591e4038e51bcc35994231d1 to your computer and use it in GitHub Desktop.
Example of using final model produced by FELToken.
import numpy as np
import joblib
# Load the model, use the correct path to the model.joblib file
model = joblib.load("model.joblib")
# X should contain the data you want to use for prediction
X = np.array([...])
result = model.predict(X)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment