Skip to content

Commit 998e51b

Browse files
authored
Add str() to variables being printed
I realized that the variables weren't strings despite having "%s" (I thought the "s" meant string) in Python 2. That is what you get for only dealing with Python 3. :P
1 parent ce2c044 commit 998e51b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mnist_svm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def svm_baseline():
2121
predictions = [int(a) for a in clf.predict(test_data[0])]
2222
num_correct = sum(int(a == y) for a, y in zip(predictions, test_data[1]))
2323
print("Baseline classifier using an SVM.")
24-
print(num_correct + " of " + len(test_data[1]) + " values correct.")
24+
print(str(num_correct) + " of " + str(len(test_data[1])) + " values correct.")
2525

2626
if __name__ == "__main__":
2727
svm_baseline()

0 commit comments

Comments
 (0)