Soham Nandi

Results 7 issues of Soham Nandi

## Pull Request Template ### What have you Changed(must) Write here what you have changed in codebase ### Issue no.(must) - # Pr will be closed and marked as spam....

hacktoberfest
hacktoberfest-accepted

In [61]: `R = R_df.as_matrix()` the **as_matrix** method is deprecated since 0.23.0, so you should use **to_numpy** instead. `R = R_df.to_numpy()`

In [259]: In the main function `def recommend_movies(predictions_df, userID, movies_df, original_ratings_df, num_recommendations=5):` .. .. ` user_data = original_ratings_df[original_ratings_df.UserID == (userID)]` change it to ` user_data = original_ratings_df[original_ratings_df['UserID'] == (userID)]`

Can you please show how to use vite as shared config in web or workshop?

### What is the issue? After successfully installing Ollama on my machine, I am encountering the following warning messages when trying to run the software: **Copy code** Warning: could not...

bug

The endpoint `/auth/account-exists` seems to reveal whether a particular email exists in the system or not by returning different responses based on the existence of the provided email. This can...

The specified regex is not working for second key in the classNames, Nested object inside a plain javascript object ```json "tailwindCSS.experimental.classRegex": [ [ "classNames:\\s*{([\\s\\S]*?)}", "\\s?[\\w].*:\\s*?[\"'`]([^\"'`]*).*?,?\\s?" ] ] ``` ```tsx const...