sumedh-r-m-6328/mouse_telemetry
Preview • Updated • 2 • 1
How to use sumedh-r-m-6328/neurometric_guard_model with Scikit-learn:
from huggingface_hub import hf_hub_download
import joblib
model = joblib.load(
hf_hub_download("sumedh-r-m-6328/neurometric_guard_model", "sklearn_model.joblib")
)
# only load pickle files from sources you trust
# read more about it here https://skops.readthedocs.io/en/stable/persistence.htmlThis is the trained Random Forest Classifier used in the NeuroMetric Guard Desktop Application. It detects unauthorized users based on micro-kinematic mouse movement patterns.
0: Authorized Owner1: IntruderThis model is designed to be run locally via the NeuroMetric Guard Python backend. It requires a window of 60 mouse events (approx. 0.5s) to generate a prediction.
import joblib
from huggingface_hub import hf_hub_download
model_path = hf_hub_download(repo_id="sumedh-r-m-6328/neurometric-guard-model", filename="intruder_detector_model(72).pkl")
model = joblib.load(model_path)