Skip to content

A Fast Linear-Time Classifier for Ultra-Low Power Devices

License

Notifications You must be signed in to change notification settings

eloquentarduino/sefr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SEFR: A Fast Linear-Time Classifier for Ultra-Low Power Devices

A Python package for the paper SEFR: A Fast Linear-Time Classifier for Ultra-Low Power Devices by Hamidreza Keshavarz, Mohammad Saniee Abadeh, Reza Rawassizadeh

Copied from original implementation

How to install

pip install sefr

How to use

from sefr import SEFR
from sklearn.datasets import load_iris


iris = load_iris()
X, y = iris.data, iris.target
X = X[y < 2]
y = y[y < 2]
clf = SEFR()
clf.fit(X, y)
print(clf.predict(X) == y)

About

A Fast Linear-Time Classifier for Ultra-Low Power Devices

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages