From 4a6a4100862b89f2d8ad418b051d52de5d2dfaba Mon Sep 17 00:00:00 2001 From: Serhii Hromov Date: Sun, 28 Jun 2020 16:39:53 +0000 Subject: [PATCH] Prokekt 3 - UPDATED INFO --- final-evaluation.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/final-evaluation.md b/final-evaluation.md index 42c719d..0d59a02 100644 --- a/final-evaluation.md +++ b/final-evaluation.md @@ -33,7 +33,13 @@ Wywołanie podprojektu jest po wciśnięciu '2': #Execute project if event.key == pygame.K_2: - print("Passed: %s. Prediction: %s" % (client_ordering(), print_leaf(classify(client_ordering(),tree)))) + temp_order = client_ordering() + print("Passed: %s. Prediction: %s" % (temp_order, print_leaf(classify(temp_order, tree)))) + +Wtedy w terminalu jest wypisany wynik działania: + + #Example + Passed: ['salad', 'hot', 'Europe', 'baked', 2, 'order']. Prediction: {'Shrimp and Escarole Salad': '100%'} ##### Serhii Hromov s442778