Skip to content

Commit d21e787

Browse files
committed
Fix model path
1 parent 27dfdf6 commit d21e787

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/explicit_detector/explicit_detector.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import joblib
22

33
class ExplicitDetector:
4-
def __init__(self, model: str = "Randomforest.joblib"):
4+
def __init__(self, model: str = "RandomForest.joblib"):
55
self.vectorizer = joblib.load(
66
open("models/explicit_detector/vectorizer.joblib", "rb"),
77
)

0 commit comments

Comments
 (0)