Created
February 26, 2022 15:39
-
-
Save Breta01/40448228591e4038e51bcc35994231d1 to your computer and use it in GitHub Desktop.
Example of using final model produced by FELToken.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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