davidrosenberg/mlcourse

HW#3 Fix read_data function for python3

Closed this issue · 1 comments

In HW3, to make the read_data() function in load.py work with python3, the line:
words = filter(None, words)
should be replaced with:
words = list(filter(None, words))

Add a comment for python 3 users in the code.