Ramya Surati
Ramya Surati
TypeError Traceback (most recent call last) Cell In[188], line 1, in (x) ----> 1 df['genres'] = df['Title'].map(lambda x: get_genre(str(x))) Cell In[186], line 7, in get_genre(x) 5 result = tmdb_movie.search(x) 6...
TypeError Traceback (most recent call last) Cell In[188], line 1, in (x) ----> 1 df['genres'] = df['Title'].map(lambda x: get_genre(str(x))) Cell In[186], line 7, in get_genre(x) 5 result = tmdb_movie.search(x) 6...
While running the get genre method from Preprocessing3 and Preprocessing4 Cell In[186], line 7, in get_genre(x) 5 result = tmdb_movie.search(x) 6 if ( len(result) != 0 ): ----> 7 movie_id...