I using jupyter notebook and graphlab / turi for tfidf-nearest_neighbors model, which works fine so far.
However, when I query the model like
tfidf_model.query(Test_AD) I always just get the head - [5 rows x 4 columns]
I am supposed to use "print_rows(num_rows=m, num_columns=n)" to print more rows and columns like:
tfidf_model.query(Test_AD).print_rows(num_rows=50, num_columns=4)
however, when I used it, I dont get any rows anymore, only the summary field:
Starting pairwise querying. +--------------+---------+-------------+--------------+ | Query points | # Pairs | % Complete. | Elapsed Time | +--------------+---------+-------------+--------------+ | 0 | 1 | 0.00519481 | 13.033ms | | Done | | 100 | 106.281ms | +--------------+---------+-------------+--------------+
That's it. No error message, nothing. Any Ideas, how to get all/ more rows?
I tried to convert into pandas or .show() command etc., didnt help.