turicreate icon indicating copy to clipboard operation
turicreate copied to clipboard

Segmentation fault (core dumped)

Open LF-DevJourney opened this issue 3 years ago • 1 comments

I use recommender to recommend songs. When I use the default recommender, it works well.

model = turicreate.recommender.create(training_data, 'user_id', 'song_id', target='rank')

But when I changed it to item_similarity_recommender I get the segmentation fault(core dumped) exception.

model = turicreate.item_similarity_recommender.create(actions, 'user_id', 'song_id', target='rank')

LF-DevJourney avatar Sep 23 '21 03:09 LF-DevJourney

Please share the entire output of turicreate.item_similarity_recommender.create.

What does training_data['rank'] look like?

TobyRoseman avatar Sep 23 '21 21:09 TobyRoseman