Пікірлер
@suryamagarwal2079
@suryamagarwal2079 Күн бұрын
Will we use content based or collaborative filtering recommendation system?
@tuhinkumardas
@tuhinkumardas 4 күн бұрын
I really enjoyed watching your videos.
@agrani7650
@agrani7650 10 күн бұрын
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?
@FelixEjuvwevwo
@FelixEjuvwevwo 24 күн бұрын
Hello! What is happening to your website? Is there anyone i can reach out to ?
@timstapleman
@timstapleman 25 күн бұрын
kzbin.info/www/bejne/e2iwc4F_dsyBnaMsi=vCtp-j-YefKYQ9Vy
@JamesChukwuemeka-ir8lu
@JamesChukwuemeka-ir8lu Ай бұрын
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.
@shyamsarkar3317
@shyamsarkar3317 24 күн бұрын
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
@mati1383i Ай бұрын
Can you please upload the code for content based filtering?
@arigatooo24
@arigatooo24 2 ай бұрын
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
@dileepkr6069
@dileepkr6069 2 ай бұрын
Great video ❤❤❤❤❤
@rudambiswas8998
@rudambiswas8998 2 ай бұрын
Can you please tell me order to watch videos in playlist as i guess they are jumbled not one after another . Please
@FutureBeets
@FutureBeets 3 ай бұрын
CONTENT-BASED RECOMMENDER SYSTEM. google colab link please.
@ermuhambetcalmenov8104
@ermuhambetcalmenov8104 3 ай бұрын
keremet
@AI_BUG_stud
@AI_BUG_stud 3 ай бұрын
which algo is used in this project?? collaborative or content based??
@DataMentor
@DataMentor 4 ай бұрын
code in comments section
@SwapanRaj-ry3mm
@SwapanRaj-ry3mm 4 ай бұрын
bro you should share codes or your github..
@DataMentor
@DataMentor 4 ай бұрын
code in comments section
@rudambiswas8998
@rudambiswas8998 4 ай бұрын
From which csv file you get data for 2017 year only ?
@TanishaRoy-q4t
@TanishaRoy-q4t 4 ай бұрын
How did you deploy the app on streamlit cloud
@rajmrittik1012
@rajmrittik1012 5 ай бұрын
Thank you so much for this playlist
@atharvabhattad5737
@atharvabhattad5737 5 ай бұрын
You didn't post the movies recommendation code
@abhinandannuli7574
@abhinandannuli7574 5 ай бұрын
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
@thefirstplayer7964
@thefirstplayer7964 6 ай бұрын
Really amazing, is the source code available?
@sibpavat253
@sibpavat253 6 ай бұрын
which program are you using ?
@Mr.Robot373
@Mr.Robot373 6 ай бұрын
Since the append method is no longer available in pandas, you should use pd.concat (for 3rd cell )
@Mr.Robot373
@Mr.Robot373 6 ай бұрын
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.Robot373
@Mr.Robot373 6 ай бұрын
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)
@bettinaninan4497
@bettinaninan4497 6 ай бұрын
Can you provide the code
@Thiru-cr2ou
@Thiru-cr2ou 7 ай бұрын
Thanks Dude. Appreciate your help
@hardkapadia5633
@hardkapadia5633 7 ай бұрын
Great project thanks !
@unofficialgaming7281
@unofficialgaming7281 7 ай бұрын
Are you using a seperate dataset for this one
@orelopequwam6966
@orelopequwam6966 7 ай бұрын
Thank you sir!!! I really appreciate your selfless efforts. This really goes a long way for someone like me who 🥹😊❤️
@orelopequwam6966
@orelopequwam6966 7 ай бұрын
Plus I can’t overemphasize enough how much you teach with so much clarity ❤
@arjunsingh4434
@arjunsingh4434 8 ай бұрын
super project
@rizqunrizal
@rizqunrizal 8 ай бұрын
This is very easy to understand. Thanks for making this video!
@SachinKumar-it7kl
@SachinKumar-it7kl 8 ай бұрын
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.
@theunlovedtoy
@theunlovedtoy 9 күн бұрын
try to create two different virtual environments and install srsly module individually, 1.0.0 and 2.4.5
@SachinKumar-it7kl
@SachinKumar-it7kl 8 ай бұрын
I can't install spacy version lower than 3.0.0 i.e. neither 2.3.5 nor 2.3.9....plz help.
@SachinKumar-it7kl
@SachinKumar-it7kl 8 ай бұрын
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.
@mahadzubair6253
@mahadzubair6253 6 ай бұрын
@@SachinKumar-it7kl try using a compatible version of python for the spacy
@none-hr6zh
@none-hr6zh 9 ай бұрын
why we are using wikipedia for 2018 if we can acess data through api from tmdb
@orelopequwam6966
@orelopequwam6966 9 ай бұрын
Thank you for your conscious effort 🥹❤️
@JackNelson-k1u
@JackNelson-k1u 9 ай бұрын
Do something unique, and stop stealing other peoples job @ kzbin.info/www/bejne/nKbbkKepaJifY80&pp=ygUtaG93IHRvIGluc3RhbGwgZmFjZWJvb2sgbWVzc2VuZ2VyIGZvciBweXRob24g
@sherwinvarghese1831
@sherwinvarghese1831 9 ай бұрын
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.
@madhavipeddireddy5304
@madhavipeddireddy5304 9 ай бұрын
Thank you so much It worked 👍
@sherwinvarghese1831
@sherwinvarghese1831 9 ай бұрын
@@madhavipeddireddy5304 Did you try it on Google Colab. It worked on Jupyter but wasn't working on Google Colab.
@vinay31741
@vinay31741 9 ай бұрын
@@madhavipeddireddy5304 Can you tell me how it worked i was struggling to load credits.csv file in colab
@vinay31741
@vinay31741 9 ай бұрын
@@madhavipeddireddy5304 Iam unable to load credits.csv it is getting errors Can you please share how to do?
@Mr.Robot373
@Mr.Robot373 6 ай бұрын
Thank you 😀😇
@deepvyas4644
@deepvyas4644 9 ай бұрын
which python version are you currently using in this project
@Trisha1218
@Trisha1218 9 ай бұрын
can you please tell me,where the documentation in drive file
@Trisha1218
@Trisha1218 9 ай бұрын
Where is the documentation in description
@none-hr6zh
@none-hr6zh 9 ай бұрын
THANKS FOR VIDEOS. I HAVE QUESTION HOW TO GET MY API KEYS
@madhavipeddireddy5304
@madhavipeddireddy5304 9 ай бұрын
Thank you so much sir. I learned a lot. Very useful information
@Rip_Etwar
@Rip_Etwar 9 ай бұрын
lol.
@harshadsule6996
@harshadsule6996 9 ай бұрын
i'm getting error in pie chart
@it38parvathichandrabose70
@it38parvathichandrabose70 9 ай бұрын
How to run things code
@TravellingNinjasOfficial
@TravellingNinjasOfficial 6 ай бұрын
do u know how to run?
@arpitanjana4994
@arpitanjana4994 4 ай бұрын
@@TravellingNinjasOfficial if u get to know please tell me too
@yashbadjatya5667
@yashbadjatya5667 9 ай бұрын
pyresparser, spacy and en_core_web_sm are giving errors, could you please resolve this
@IlyasBenabdellah-yx3uq
@IlyasBenabdellah-yx3uq 9 ай бұрын
I want to ask you, did you not put up any video showing how to create this project? I'm awaiting your response.
@ernestoflores3873
@ernestoflores3873 10 ай бұрын
Really helpfull man! Thanks!
@ernestoflores3873
@ernestoflores3873 10 ай бұрын
Excellent!!!