Skip to content

Ryan6407/AutoKeystroke

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoKeystroke

Start off by importing the necessary packages you will need to process your data.

from autokeystroke.modeling.trainer import KeystrokeTrainer
from autokeystroke.utils.config import KeystrokeConfig

Make sure you have your data formatted in a csv file with columns id, event_id, and down_time

data_pth = "your_data_path.csv"

Instantiate a KeystrokeConfig and KeystrokeTrainer and adjust the parameters of the config according to your preferences and specifications

config = KeystrokeConfig()
trainer = KeystrokeTrainer(data_pth, config)

Call the run method of the trainer instance and you will be able to find the trained models and results saved in the output directory

trainer.run()

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors