Commit 9cf77974 authored by SCtom's avatar SCtom

ัพเดทเพื่อการสอนที่ง่ายขึ้น

parent c2508662
...@@ -29,7 +29,17 @@ class MainWindow(QWidget): ...@@ -29,7 +29,17 @@ class MainWindow(QWidget):
self.scribbleArea.clearImage() self.scribbleArea.clearImage()
def on_train(self): def on_train(self):
#เตรียมข้อมูลสำหรับฝึก
print('training..') print('training..')
# สร้าง classifier: a support vector classifier
# สอนให้คอมพิวเตอร์จดจำ
#เซฟ model
#วัดประสิทธิภาพของโมเดล
def on_save(self): def on_save(self):
print('on_save') print('on_save')
...@@ -38,7 +48,23 @@ class MainWindow(QWidget): ...@@ -38,7 +48,23 @@ class MainWindow(QWidget):
def on_test(self): def on_test(self):
print("testing...") print("testing...")
#เตรียมข้อมูลสำหรับทดสอบ
#โหลดโมเดล
#ทำการทำนาย
#แสดงผลการทำนาย
def save_model(self, classifier):
joblib.dump(classifier, 'svmModel.pkl')
print("saved model")
def load_model(self):
clf = joblib.load('svmModel.pkl')
print("loaded model")
return clf
if __name__ == '__main__': if __name__ == '__main__':
import sys import sys
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment