Will we use content based or collaborative filtering recommendation system?
@tuhinkumardas4 күн бұрын
I really enjoyed watching your videos.
@agrani765010 күн бұрын
In the resume Analysis part when i parse the name , its giving the position applied for. example: if the name needs to be: Omkar its giving :Anroid Developer. how do i solve this?
@FelixEjuvwevwo24 күн бұрын
Hello! What is happening to your website? Is there anyone i can reach out to ?
These tutorials are so good, why does KZbin not include this in the first three recommended videos on Recommendation Systems? Well done champ. Thank you.
@shyamsarkar331724 күн бұрын
It's depend on us. if we give more response(Like, comment share and subscribe) on this video then it's automated count in the top project
@mati1383iАй бұрын
Can you please upload the code for content based filtering?
@arigatooo242 ай бұрын
this is best and updated end to end project on youtube. I request to pleease come up with more advanced projects like this on other areas as well . Thankyou
@dileepkr60692 ай бұрын
Great video ❤❤❤❤❤
@rudambiswas89982 ай бұрын
Can you please tell me order to watch videos in playlist as i guess they are jumbled not one after another . Please
@FutureBeets3 ай бұрын
CONTENT-BASED RECOMMENDER SYSTEM. google colab link please.
@ermuhambetcalmenov81043 ай бұрын
keremet
@AI_BUG_stud3 ай бұрын
which algo is used in this project?? collaborative or content based??
@DataMentor4 ай бұрын
code in comments section
@SwapanRaj-ry3mm4 ай бұрын
bro you should share codes or your github..
@DataMentor4 ай бұрын
code in comments section
@rudambiswas89984 ай бұрын
From which csv file you get data for 2017 year only ?
@TanishaRoy-q4t4 ай бұрын
How did you deploy the app on streamlit cloud
@rajmrittik10125 ай бұрын
Thank you so much for this playlist
@atharvabhattad57375 ай бұрын
You didn't post the movies recommendation code
@abhinandannuli75745 ай бұрын
Hey thank you for the course. Just a quick suggestion. I'm taking notes with the screenshots and a lot of times the ad for your tutorials pops up and we wont be able to take the screenshots. Hope this helps with the upcoming videos. thanks again
@thefirstplayer79646 ай бұрын
Really amazing, is the source code available?
@sibpavat2536 ай бұрын
which program are you using ?
@Mr.Robot3736 ай бұрын
Since the append method is no longer available in pandas, you should use pd.concat (for 3rd cell )
@Mr.Robot3736 ай бұрын
import pandas as pd import json def parse_json_column(column): return column.apply(lambda x: json.loads(x) if isinstance(x, str) and x.startswith('{') and x.endswith('}') else x) # Load the cleaned CSV credits = pd.read_csv('credits_clean.csv', sep=',', engine='python', encoding='utf-8') # List of columns that contain JSON data json_columns = ['cast', 'crew'] # Replace with actual column names # Parse JSON columns separately for col in json_columns: credits[col] = parse_json_column(credits[col]) # Display the DataFrame print(credits.head()) (2/2)
@Mr.Robot3736 ай бұрын
if any one facing issue in 2nd cell please add following code in 2 cells to avoid error import csv import json def preprocess_csv(input_file, output_file): with open(input_file, 'r', encoding='utf-8') as infile, open(output_file, 'w', newline='', encoding='utf-8') as outfile: reader = csv.reader(infile) writer = csv.writer(outfile) for row in reader: new_row = [] for field in row: if field.startswith('{') and field.endswith('}'): try: json.loads(field) # Validate JSON except json.JSONDecodeError: field = field.replace(' ', '') # Fix common issues try: json.loads(field) # Re-validate JSON except json.JSONDecodeError: field = 'null' # Fallback for irreparable fields new_row.append(field) writer.writerow(new_row) # Preprocess the CSV preprocess_csv('credits.csv', 'credits_clean.csv') #(1/2)
@bettinaninan44976 ай бұрын
Can you provide the code
@Thiru-cr2ou7 ай бұрын
Thanks Dude. Appreciate your help
@hardkapadia56337 ай бұрын
Great project thanks !
@unofficialgaming72817 ай бұрын
Are you using a seperate dataset for this one
@orelopequwam69667 ай бұрын
Thank you sir!!! I really appreciate your selfless efforts. This really goes a long way for someone like me who 🥹😊❤️
@orelopequwam69667 ай бұрын
Plus I can’t overemphasize enough how much you teach with so much clarity ❤
@arjunsingh44348 ай бұрын
super project
@rizqunrizal8 ай бұрын
This is very easy to understand. Thanks for making this video!
@SachinKumar-it7kl8 ай бұрын
note: I can't install spacy version below 3.0.0.........Its giving a huge error. This error originates from a subprocess, and is likely not a problem with pip. [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error × pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> See above for output.
@theunlovedtoy9 күн бұрын
try to create two different virtual environments and install srsly module individually, 1.0.0 and 2.4.5
@SachinKumar-it7kl8 ай бұрын
I can't install spacy version lower than 3.0.0 i.e. neither 2.3.5 nor 2.3.9....plz help.
@SachinKumar-it7kl8 ай бұрын
note: This error originates from a subprocess, and is likely not a problem with pip. [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error × pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> See above for output.
@mahadzubair62536 ай бұрын
@@SachinKumar-it7kl try using a compatible version of python for the spacy
@none-hr6zh9 ай бұрын
why we are using wikipedia for 2018 if we can acess data through api from tmdb
@orelopequwam69669 ай бұрын
Thank you for your conscious effort 🥹❤️
@JackNelson-k1u9 ай бұрын
Do something unique, and stop stealing other peoples job @ kzbin.info/www/bejne/nKbbkKepaJifY80&pp=ygUtaG93IHRvIGluc3RhbGwgZmFjZWJvb2sgbWVzc2VuZ2VyIGZvciBweXRob24g
@sherwinvarghese18319 ай бұрын
Hey, nice tutorial! I was working on this and have been struggling to load the credits CSV file even after trying for too long. It seems like the pandas read_csv method is actually not able to infer the number of fields as 2 out of 3 columns contain JSON objects. I have tried methods like changing the reading engine from C to Python, and using a parameter combination of sep parameter ,encoding and header parameters, but none of those methods seem to work. The only option that works is skipping the problematic lines(on_bad_lines method in pandas), which I do not intend to do. I would appreciate your thoughts on this and how I can maneuver this situation.
@madhavipeddireddy53049 ай бұрын
Thank you so much It worked 👍
@sherwinvarghese18319 ай бұрын
@@madhavipeddireddy5304 Did you try it on Google Colab. It worked on Jupyter but wasn't working on Google Colab.
@vinay317419 ай бұрын
@@madhavipeddireddy5304 Can you tell me how it worked i was struggling to load credits.csv file in colab
@vinay317419 ай бұрын
@@madhavipeddireddy5304 Iam unable to load credits.csv it is getting errors Can you please share how to do?
@Mr.Robot3736 ай бұрын
Thank you 😀😇
@deepvyas46449 ай бұрын
which python version are you currently using in this project
@Trisha12189 ай бұрын
can you please tell me,where the documentation in drive file
@Trisha12189 ай бұрын
Where is the documentation in description
@none-hr6zh9 ай бұрын
THANKS FOR VIDEOS. I HAVE QUESTION HOW TO GET MY API KEYS
@madhavipeddireddy53049 ай бұрын
Thank you so much sir. I learned a lot. Very useful information
@Rip_Etwar9 ай бұрын
lol.
@harshadsule69969 ай бұрын
i'm getting error in pie chart
@it38parvathichandrabose709 ай бұрын
How to run things code
@TravellingNinjasOfficial6 ай бұрын
do u know how to run?
@arpitanjana49944 ай бұрын
@@TravellingNinjasOfficial if u get to know please tell me too
@yashbadjatya56679 ай бұрын
pyresparser, spacy and en_core_web_sm are giving errors, could you please resolve this
@IlyasBenabdellah-yx3uq9 ай бұрын
I want to ask you, did you not put up any video showing how to create this project? I'm awaiting your response.