Commit a4353116 authored by SCtom's avatar SCtom Committed by Wichit Sombat

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

parent c2508662
......@@ -29,7 +29,17 @@ class MainWindow(QWidget):
self.scribbleArea.clearImage()
def on_train(self):
#เตรียมข้อมูลสำหรับฝึก
print('training..')
# สร้าง classifier: a support vector classifier
# สอนให้คอมพิวเตอร์จดจำ
#เซฟ model
#วัดประสิทธิภาพของโมเดล
def on_save(self):
print('on_save')
......@@ -38,7 +48,23 @@ class MainWindow(QWidget):
def on_test(self):
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__':
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