Giter Site home page Giter Site logo

IndexError: only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boolean arrays are valid indices about movie-recommendations HOT 2 CLOSED

saurabhmathur96 avatar saurabhmathur96 commented on July 18, 2024
IndexError: only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boolean arrays are valid indices

from movie-recommendations.

Comments (2)

saurabhmathur96 avatar saurabhmathur96 commented on July 18, 2024 1

It seems you are having trouble making the Cosine Similarity notebook work.

The code in this repository is at least two years old and written in python 2.7. Since some Python/SciPy/NumPy interfaces and defaults have changed, parts of the code will break if you run it with the latest Python/SciPy/NumPy versions.

In this particular case, the keys method of a dict returns a list in Python 2 and an object of dict_keys in Python 3. NumPy Arrays can be indexed by lists but not by dict_keys objects. Hence, you get an error. Replacing rated_movies = ratings.keys() with rated_movies = list(ratings.keys()) and top_n = [ratings.keys()[i] for i in similar_movies[:n]]with top_n = [rated_movies[i] for i in similar_movies[:n]] should make the notebook work with Python 3.

from movie-recommendations.

shubhamtunwal97 avatar shubhamtunwal97 commented on July 18, 2024

Thanks it worked.!!

from movie-recommendations.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.