Initial commit

This commit is contained in:
Chris Proctor
2026-06-08 12:27:01 -04:00
commit 395180d6b2
19 changed files with 1461 additions and 0 deletions

11
models/pixels.py Normal file
View File

@@ -0,0 +1,11 @@
from sklearn.linear_model import LogisticRegression
class PixelClassifier:
def fit(self, X, y):
self._classifier = LogisticRegression(max_iter=1000)
self._classifier.fit(X, y)
return self
def predict(self, X):
return self._classifier.predict(X)