Rename classifiers/ package to models/

Aligns module naming with the upcoming classification_neural lab,
which will use the same models/ package convention.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Chris Proctor
2026-06-08 10:57:25 -04:00
parent 4a3e35a989
commit 61eb5a150c
7 changed files with 9 additions and 9 deletions

12
models/manual.py Normal file
View File

@@ -0,0 +1,12 @@
import numpy as np
class ManualClassifier:
def fit(self, X, y):
return self
def predict(self, X):
return np.array([self.predict_one(msg) for msg in X])
def predict_one(self, message):
return "ham"