简体   繁体   English

神经网络无法预测正确的数字

[英]Neural Network is not predicting the correct digit

I am new to ML and for my project, I am trying to make a digit classifier using neural networks.我是机器学习的新手,对于我的项目,我正在尝试使用神经网络制作数字分类器。 I have made a GUI where you can draw the digit and it will pass the NumPy Array to the neural network.我制作了一个 GUI,您可以在其中绘制数字,并将 NumPy 数组传递给神经网络。 I have trained my neural network with mnist digit data set with a model accuracy of 97.70% yet it cannot predict the digits entered.我用mnist 数字数据集训练了我的神经网络,模型准确率为 97.70%,但它无法预测输入的数字。

#CODE FOR NEURAL NETWORK
    class mltest():
       def __init__(self):
          self.model = keras.Sequential([  keras.layers.Dense(120,input_shape = (784,),activation = 'relu'),
                                           keras.layers.Dense(10,activation = 'softmax')])
       def train(self):   
          (x_train,y_train),(x_test,y_test) = keras.datasets.mnist.load_data()
          x_train = x_train/255
          x_test = x_test/255
          x_train = x_train.reshape(len(x_train),28*28)
          x_test = x_test.reshape(len(x_test),28*28)
          
                                  
          self.model.compile(optimizer='adam',loss='SparseCategoricalCrossentropy',metrics=['accuracy'])
          self.model.fit(x_train,y_train,epochs=12,batch_size=200)
          self.model.evaluate(x_test,y_test)
          
       def test(self,value):
           y_predicted = self.model.predict(value)
           print(np.argmax(y_predicted))
       
       if __name__ =='__main__':
           obj = mltest()
           obj.train()
 Epoch 12/12 300/300 [==============================] - 1s 2ms/step - loss: 0.0338 - accuracy: 0.9908 313/313 [==============================] - 0s 776us/step - loss: 0.0763 - accuracy: 0.9770

CODE FOR GUI图形用户界面代码

class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        self.setWindowTitle("Ai")
  
        self.setGeometry(300,300,300,300)
  
        self.image = QImage(self.size(), QImage.Format_RGB32)

        self.image.fill(Qt.white)
  
        self.drawing = False

        self.brushSize = 25

        self.brushColor = Qt.black

        self.lastPoint = QPoint()

        self.object = mltest()

#To send the picture data to neural network when enter key is pressed
    def keyPressEvent(self, event):
        if event.key() ==  16777220:
            screen = QtWidgets.QApplication.primaryScreen()
            screenshot = screen.grabWindow(QtWidgets.QWidget.winId(self))
            bufffer = QBuffer()
            bufffer.open(bufffer.ReadWrite)
            screenshot = screenshot.save(bufffer,'PNG')
            image = Image.open(io.BytesIO(bufffer.data()))
            image = image.convert('P')
            image = np.array(image)
           
            image =cv2.resize(image,dsize = (28,28))

            image = cv2.blur(image,(2,2))
            image = cv2.bitwise_not(image)
            image[image<=30] = 0 
            print(image)
             
            plt.matshow(image)
            plt.show()
            image = image.reshape(1,28*28)
            image = image/255
           
            self.object.test(image)
 #To draw           
    def mousePressEvent(self, event):
        if event.button() == Qt.LeftButton:
            

            self.drawing = True
            self.lastPoint = event.pos()

    def mouseMoveEvent(self, event):

        if (event.buttons() & Qt.LeftButton) & self.drawing:
              
        
            painter = QPainter(self.image)
            painter.setPen(QPen(self.brushColor, self.brushSize, 
                            Qt.SolidLine, Qt.RoundCap, Qt.RoundJoin))

            painter.drawLine(self.lastPoint, event.pos())
            
            self.lastPoint = event.pos()
        
            self.update()


    def mouseReleaseEvent(self, event):
  
        if event.button() == Qt.LeftButton:
            self.drawing = False
  
    def paintEvent(self, event):
        canvasPainter = QPainter(self)
        canvasPainter.drawImage(self.rect(), self.image, self.image.rect())

      
    if __name__ == '__main__':
        App = QApplication(sys.argv)
        window = Window()
        window.show()
        sys.exit(App.exec())
      

predicted value is 5预测值为 5

You apparently use if __name__ =='__main__': in two files, and you train the network only when you call the network's file, while when you launch your GUI application your network is created untrained there self.object = mltest() .您显然在两个文件中使用if __name__ =='__main__': ,并且仅在调用网络文件时才训练网络,而当您启动 GUI 应用程序时,您的网络是在self.object = mltest()未经训练创建的。 Unless you call self.object.train() , it'll probably remain untrained and thus incapable of good predictions除非你调用self.object.train() ,否则它可能会保持未经训练,因此无法进行良好的预测

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM