add simple NN test

This commit is contained in:
happy531 2022-05-26 20:55:42 +02:00
parent 49db999cc9
commit 1002440947

7
test_nn.py Normal file
View File

@ -0,0 +1,7 @@
from NeuralNetwork import prediction
def main():
print(prediction.getPrediction("./resources/trash_dataset/test/paper/google-image(0639).jpeg"))
if __name__ == '__main__':
main()