Hi! Just to inform, boston dataset is soon going to be removed in the next update of sklearn (1.2). New learners can instead use fetch_california_housing. Thanks
@Aditya-zv5et Жыл бұрын
----> 1 house_price_dataset = fetch_california_housing() NameError: name 'fetch_california_housing' is not define hello sir i am facing this error while loading the dataset could you please help me to run this project
@@abdulrahmanibraheem624 corrected "house_price_dataset = sklearn.datasets.fetch_california_housing()" without quotation marks
@Siddhardhan3 жыл бұрын
Let's build a community of Machine Learning Experts! Kindly Subscribe here👉 tinyurl.com/md0gjbis
@velan99088 ай бұрын
Thalaiva you are the one,I have been searching for.Thank you for taking the decision to make videos like this and giving it to people for free
@anmolchaurasia94013 ай бұрын
pls provide the link of that datasets
@umeshqatar4 ай бұрын
Dear Siddardhan, Thank you very much for producing this tutorial videos with baby-step approach; One walk through video clarified many doubts. Many thanks and keep doing and create more experts.
@lucianlackman8103 Жыл бұрын
Nobody has been able to really explain this random state with lay man’s term but overrall nice tutorial thanks
@Siddhardhan3 жыл бұрын
Hi! You can join this Telegram group for regular updates about my videos: t.me/siddhardhan Thank you!
@nirmalmaharjan7373 жыл бұрын
Can I use same process for Earth quake prediction
@Siddhardhan3 жыл бұрын
You can definitely try. There are a lot of processing that needs to be done on that lanl earthquake dataset.
@nirmalmaharjan7373 жыл бұрын
@@Siddhardhan plz can u tell me I will try. Just surfacely
@phalguniborikar58112 жыл бұрын
Hey. can you please provide a link for the house prediction dataset
@jahnavigupta3991 Жыл бұрын
Seriously sir I must say the way you give the insights and solve projects hattsss off to u sir Awesome sir
@anmolchaurasia94013 ай бұрын
pls provide link of that datasets
@shivamallarapu15033 жыл бұрын
This videos are HIT them ,those who are needed
@giovannilaneve35353 жыл бұрын
Hi, Great content Sir! What about tuning hyperparameter (Xgboost, RF, SVM, Lasso, ecc..)? Are you going to do some videos?
@abduljabbarthameem89242 жыл бұрын
Why we didn't make a prediction with a particular row data as we did before in the previous projects sir?
@snehil__662 жыл бұрын
Amazing project implementation with excellent explanation, Thankyou so much !!
@rezaulkarimrabbiatoskor59866 ай бұрын
Great explanation! Really helped me revise my concepts. Thank you!
@munawarhussain78782 жыл бұрын
One of the Best Channels
@kasyapdharanikota85703 жыл бұрын
the way you explain each and every step is very useful
@Siddhardhan3 жыл бұрын
Thanks a lot 😊
@aafreenkhan24072 жыл бұрын
Great explanation! Really helped me revise my concepts.Thank you!
@MuhammadKamran-ii4rh3 жыл бұрын
Great video sir very informative as always
@Siddhardhan3 жыл бұрын
Thanks Muhammad!😇
@manmeetmuskan2599 Жыл бұрын
Sir, should be standarize this before splitting into training and testing set as we can see that there is a lot of disparity in the data. If not then tell me when to use standard scaler and when to not?
@vikrantspeaks Жыл бұрын
Why did you not do 'stratify' in creating test and train on line 18?
@darshanbs2267 Жыл бұрын
Really helpfull bro keep posting your vedios
@anuragarunedlabadkar88892 жыл бұрын
Siddhardhan, too good.
@chanchalarya98310 ай бұрын
explanation of each and every steps are correct but what is final conclusion came I did not understand the part, when you got predicted value, what is the number we got in predicted value and how can we connotate the final output
@aiwithvanshikaa Жыл бұрын
What is the benefit of checking correlation between features? what changes will be there in model training on alteration of correlations?
@hitarthpatel1956 Жыл бұрын
Hello All, This was quite good video. In this project i need to find all 13 features' best possible values such that the price will be the least considering correlations with all 13 features. Please help me how to proceed with algorithm.
@tejareddy1998 ай бұрын
Excellent Share!
@Ali.M.Al-Rahim2 жыл бұрын
Thank you for the excellent presentation. In the end, could we add some statements like in projects 1 and 2 to test the price for selected data.? Thanks again for your answer.
@cecilia7348 Жыл бұрын
Very nice class
@anshu2190 Жыл бұрын
input=(8,41,8,1,400,2,38,-120) data_array=np.asarray(z) data_reshaped=data_array.reshape(1,-1) prediction=model.predict(data_reshaped) print(prediction) Is it ok to obtain the price sir?
i encountered with an error which says " ValueError: Shape of passed values is (20640, 8), indices imply (20640, 1) " as i was trying to create a DATAFRAME and include the COLUMN NAMES from the first data ( timeline : 12:30 ). How can i fix this? And for the creator, it's such an inspiring work you're doing here Sir!
@saisankethg8327 Жыл бұрын
use StandardScaler() for z-score normalization of the input features which reduces the error by more than 50% Here's the code : from sklearn.preprocessing import StandardScaler scaler = StandardScaler() X_train_norm = scaler.fit_transform(X_train)
@sapawar007 Жыл бұрын
Sir,why didn’t you use standard scaler in this solution please explain
@safeerhaider67792 жыл бұрын
dear nice work. I appreciate your efforts. Kindly share the house data set used in this tutorial to make practice.
@mahakgarg3152 Жыл бұрын
Ya do u find the dataset?
@iyyappanmuthusamy16782 жыл бұрын
Hi, one correction here your mentioned negative correlation mean if one feature value decrease and another features value also decrease due to negative correlation . the thing is if one feature value decrease another feature value increases that is negative correlation. Pls correct this
@rishiranjan63803 жыл бұрын
CAN YOU PLESE MENTION IN THE DESCRIPTION .. THE KEY POINTS TO MENTION WHILE WRITING THIS PROJECT IN THE RESUME?
@maitrimarwaha62503 ай бұрын
if you added this in your cv can you please guide what all did you write
@LakshmiNarayana-iv8hh2 жыл бұрын
You are a legend!!!!!!!!!!!!!!!!!!!!!!!!!!!!🤯🤯
@PulicherlaPunyakotiReddy Жыл бұрын
hi, House price boston() is not available. which dataset i can use now?
@yadali4833 Жыл бұрын
hello, may I know why you did not standardize the data? I mean using a standard scaler?
@aliosmanbaykus3525 Жыл бұрын
Thanks a lot for these videos.
@dhruvaprajapati92653 жыл бұрын
Great content!!!
@nivethakannan8158 Жыл бұрын
We need more like this❤... Great explanation... Found good teacher siddharth
@JasonBernard-lm1hq Жыл бұрын
Thanks for the video Explanation Sir and just have a small question: Why don't we use stratify for the house price prediction system?
@anshu2190 Жыл бұрын
Ya...it is causing some kind of error..idk
@ajithmohann2 жыл бұрын
Hi Mr. @Siddahrshan, Thank you for your wonderful ML training videos. I have followed your earlier videos as well. Can I ask you as specific question here? Why was 'stratify' parameter not used in the 'train_test_split' method in this example?
@Siddhardhan2 жыл бұрын
hi! stratify is used while we are working with classification problems so that we have an equal proportion of classes in training data as well as test data. as this is a Regression problem, we shouldn't use it.
@ajithmohann2 жыл бұрын
@@Siddhardhan Thank you for explaining! You are being very helpful. Keep doing more videos.
@ajithmohann2 жыл бұрын
@@Siddhardhan Just to be clear, even though we use LogisticRegression algorithm in Rock Mine Predictor where we used Stratify param, you are saying it is a kind of classification problem, right?
@joaomorita30272 жыл бұрын
@@ajithmohann Im not expert, but I think its a classification problem because its 0 or 1, like the diabetes problem we saw in the second video. If I understand that wrong, please correct me.
@shubhamgangdhar51802 жыл бұрын
Hey Sidhardhan,Thank you so much for this projects playlist. i have one doubt,why we used XGB regression algo,any specifc reason behind that? and can we used different algo on that dataset?
@ridoychandraray24132 жыл бұрын
plz if you give the lecture slowly it will be easy to understand
@avishrangari11582 жыл бұрын
Hi! Greetings sir I liked ur video on sample data prediction ,but sir how can we find out the accuracy of the predicted value
@kummithasivamohanreddy60483 жыл бұрын
Clear explanation, Sir 😍
@Siddhardhan3 жыл бұрын
thanks 😇
@Tony-vo9ok2 ай бұрын
I want to ask why we do not need to standardise thw data before spilting it just like previous project?
@igochedavidugbabe27422 жыл бұрын
Thank you very kindly for this
@satyasubhasis53353 ай бұрын
can i do this project in in 2024 by this vdo
@sanjaygarag63362 жыл бұрын
How can we take the ranges between the actual price and predicted price
@simonishabiyi2 жыл бұрын
hello , i really enjoy your channel so much but can you please upload the data set or provide the link to the data set so as to download and pratice with it... thanks
@priyamittal83022 жыл бұрын
Hi! Can you please tell how can I enter my own data and get the predicted result....?
@NEERAJKUMAR-uv4fn2 жыл бұрын
Can i add this project in my Resume??
@Akinjohnsonn4 ай бұрын
Weldone sir❤
@joaomorita30272 жыл бұрын
The R squared error and the Mean absolute error should be close to zero?
@reshmam34232 жыл бұрын
Excellent
@harleenkaur37132 жыл бұрын
These datasets we have to download first ?
@mhdfirassbarakat65872 жыл бұрын
Hi Good job and thanks for this content is there any way to provide us with the pptx ?
@nikhilteja434 Жыл бұрын
why have we not done Standadization of data?
@shivanipandey47523 жыл бұрын
Nice video
@Siddhardhan3 жыл бұрын
Thanks shivani!
@gilsonjunior_narrador Жыл бұрын
Hello, thank you Sir for this content. My question is, how can I predict new houses prices ? I mean, I have other houses database where my goal is to define houses prices giving some parameters like, total_rooms, contructed_meters, and so on. Thank you.
@surajgangani20113 жыл бұрын
thanks for amazing videos
@Siddhardhan3 жыл бұрын
you're welcome 😇
@AbinayaAbinaya-n6n8 ай бұрын
Bro... Pls upload rainfall prediction using machine learning with source code.....
@MineKamph2 жыл бұрын
I think you explained below concept incorrectly Positive Correlation: both variables change in the same direction. Neutral Correlation: No relationship in the change of the variables. Negative Correlation: variables change in opposite directions.
@Siddhardhan2 жыл бұрын
Hi! That's what I mentioned.
@MineKamph2 жыл бұрын
@@Siddhardhan @Siddhardhan @22:19 "you are saying +ve correlation means if one value increases the other value increases and -ve correlation means if one value decreases other value also decreases" .. this is not correct ... +ve correlation means change in one value (+ve change or -ve change) has similar impact on the other value , both variable changes in the same direction -ve correlation means change in one value (+ve change or -ve change) has an adverse impact on the other value, both variable changes in opposite direction
@manojhp4089 Жыл бұрын
sir Can We use LinearRegression Model insted XGBRegressor
@yohannesayana94562 жыл бұрын
Why don't you insert some values as input_data to check the price of the house?
@krunalkharat68032 жыл бұрын
why we did not ploted graph of actual value vs predicted value for testing data ?
@namrattayadav9496 Жыл бұрын
Where is the model deployment part?
@iwojoseph Жыл бұрын
hello! Can this be deployed using streamlit to predict house prices?
@aarthiboopalan28142 жыл бұрын
Which model u used sir
@Khaled_Elsadani Жыл бұрын
Thanks.
@devanshprataptiwari58042 жыл бұрын
sir why it is acting differently on using functions like read_csv() instead of using dataframe() and then checking the house_price_dataset.head() as we have used in first two projects.....and also it is just showing (505,1) when asked for shape
@shlokkumar6257 Жыл бұрын
sir, my model pridiction and accuracy score is different as i downloaded it from your drive, i don't know why? but it's predicting more accurate, could you explain
@ankitaswal62532 жыл бұрын
Sir can use this project for collage purpose
@tech-tech-882 жыл бұрын
can you make a model that will predict the cost of maintenance for a building ?
@poorvinidsoshi71202 жыл бұрын
Sir where is the CSV file
@gauravfamily22093 жыл бұрын
How prediction result will expose through REST API? Please explain also.
@rsg50473 жыл бұрын
Can I have a synopsis of house price prediction model using python Sir?
@liteshbopche63172 жыл бұрын
Why StandardScaler function is not used for standardized the dataset?
@velan99088 ай бұрын
because the dataset is already clean and standardized.
@sagarfating3619Ай бұрын
provid the dataset csv file?
@SauravKumar-hd9jf2 жыл бұрын
How to Deploy this project using streamlit?
@Siddhardhan2 жыл бұрын
hi! refer this video: kzbin.info/www/bejne/jX3am6mNppV6jaM
@Tony-vo9ok2 ай бұрын
Invaluable
@suwarnabaraskar96983 жыл бұрын
Hello sir can u plz make a video on advanced house price prediction that is a part of kaggle competition nowadays. i tried a lot i got stuck .please
@Siddhardhan3 жыл бұрын
hi! I cannot make it immediately. but I'll definitely try.
@zaidmomin9735 Жыл бұрын
How to create our own data set?
@gitasaheru2309 Жыл бұрын
How to data analyst and data scientist?
@hossamahmed28103 ай бұрын
where the dataset ?
@kai-jieyang87092 жыл бұрын
Hi! I don't know why there is an ImportError: cannot import name 'correlation' from 'statistics'. I have already installed statistic and statistics
@user-hc1ww9zq7h2 жыл бұрын
where is the dataset? could you please add here
@AbdulAhadSheikh2 жыл бұрын
Hi! How would we make a predictor at the end where we give the feature values of a single house and the model gives the price for that house?
@vachiijain2 жыл бұрын
How to deploy this project on a webpage?
@AutumnRainWish2 жыл бұрын
I'm getting different R squared error and mean absolute error. Any idea why?
@ahmedabouzaid439410 ай бұрын
where is dataset?????
@AC-tf2nd5 ай бұрын
In seaborn library
@adityadeshpande55724 ай бұрын
It on git hub
@revaprasadpoetry23172 жыл бұрын
How to predict output using the inputs that are not available in datasets for regression models ..and scaling of datasets is done using min max scaler between -1 to 1....plz hlp
@Aizaz_ali_shah Жыл бұрын
hello sir ? dataset cannot found ? not available any solution??
@chilltube24553 жыл бұрын
What should we do about those 2 correlated variables ?
@Siddhardhan3 жыл бұрын
it's for data analysis. to understand which factors are important.
@chilltube24553 жыл бұрын
@@Siddhardhan I think we should eliminate one of the highly correlated variables
@ankitatiwari45682 жыл бұрын
@@chilltube2455 yes we will eliminate them otherwise it will not give us proper result.
@cherubyGreens3 жыл бұрын
Clearly understood thank you, bro!
@Siddhardhan3 жыл бұрын
my pleasure 😇
@moamirkhan47992 жыл бұрын
No module name 'xgboost' What should I do?
@abdullatheefmohammedazhar3087 Жыл бұрын
How to connect the front this cod..m?
@kuberarale95273 жыл бұрын
Can I add this project in My resume?
@Siddhardhan3 жыл бұрын
If u understand the concepts & the code completely, and if u can write this code by yourself, then u can definitely add it. Because the interviewer will ask a lot of questions from it and you have to be clear with all the details.
@mahakgarg3152 Жыл бұрын
Plz provide kaggle house data set link
@beshosamir89783 жыл бұрын
I'm walking through Andrew ng course and i had finished section of linear regression and i don't even know what is XGBOOST Regression, so can i watch this Series ?
@Siddhardhan3 жыл бұрын
hi! this machine learning project series is all about implementation. there won't be much details on the model. I am making a separate module for ML models. I already finished Linear Regression and about to complete logistic regression. it should be useful for you.
@beshosamir89783 жыл бұрын
@@Siddhardhan Even if i don't know about XGBOOST? also i think it is a great series thanks for your help