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
@velan990810 ай бұрын
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
@anmolchaurasia94016 ай бұрын
pls provide the link of that datasets
@lucianlackman81032 жыл бұрын
Nobody has been able to really explain this random state with lay man’s term but overrall nice tutorial thanks
@bayrambayramov48422 ай бұрын
Hello. It is used in order to get the same output every time. This way, results are deterministic and reproducible.
@jahnavigupta39912 жыл бұрын
Seriously sir I must say the way you give the insights and solve projects hattsss off to u sir Awesome sir
@anmolchaurasia94016 ай бұрын
pls provide link of that datasets
@umeshqatar7 ай бұрын
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.
@shivamallarapu15033 жыл бұрын
This videos are HIT them ,those who are needed
@lshorts1478Ай бұрын
Thank you for this wonderful tutorial. I made the same model using linear reg by myself but this only done with the help of your tutorial . ♥
@munawarhussain78782 жыл бұрын
One of the Best Channels
@anuragarunedlabadkar88892 жыл бұрын
Siddhardhan, too good.
@snehil__663 жыл бұрын
Amazing project implementation with excellent explanation, Thankyou so much !!
@MuhammadKamran-ii4rh4 жыл бұрын
Great video sir very informative as always
@Siddhardhan4 жыл бұрын
Thanks Muhammad!😇
@darshanbs2267 Жыл бұрын
Really helpfull bro keep posting your vedios
@LakshmiNarayana-iv8hh2 жыл бұрын
You are a legend!!!!!!!!!!!!!!!!!!!!!!!!!!!!🤯🤯
@kasyapdharanikota85703 жыл бұрын
the way you explain each and every step is very useful
@Siddhardhan3 жыл бұрын
Thanks a lot 😊
@abduljabbarthameem89242 жыл бұрын
Why we didn't make a prediction with a particular row data as we did before in the previous projects sir?
@giovannilaneve35353 жыл бұрын
Hi, Great content Sir! What about tuning hyperparameter (Xgboost, RF, SVM, Lasso, ecc..)? Are you going to do some videos?
@aafreenkhan24072 жыл бұрын
Great explanation! Really helped me revise my concepts.Thank you!
@Siddhardhan4 жыл бұрын
Let's build a community of Machine Learning Experts! Kindly Subscribe here👉 tinyurl.com/md0gjbis
@rezaulkarimrabbiatoskor59868 ай бұрын
Great explanation! Really helped me revise my concepts. Thank you!
@silasrajtr7391 Жыл бұрын
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!
@devil.motivation40109 күн бұрын
Boston dataset is removed now by sklearn, so IF I use the california dataset, all the steps will be same right?
@vikrantspeaks Жыл бұрын
Why did you not do 'stratify' in creating test and train on line 18?
@nivethakannan8158 Жыл бұрын
We need more like this❤... Great explanation... Found good teacher siddharth
@kummithasivamohanreddy60483 жыл бұрын
Clear explanation, Sir 😍
@Siddhardhan3 жыл бұрын
thanks 😇
@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?
@aiwithvanshikaa Жыл бұрын
What is the benefit of checking correlation between features? what changes will be there in model training on alteration of correlations?
@tejareddy19910 ай бұрын
Excellent Share!
@chanchalarya983 Жыл бұрын
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
@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
@aliosmanbaykus35252 жыл бұрын
Thanks a lot for these videos.
@sapawar007 Жыл бұрын
Sir,why didn’t you use standard scaler in this solution please explain
@SameerKhan-dp9kl8 сағат бұрын
i have a error in # training the model with X_train model.fit(X_train, Y_train) this all things will be changes and also restart the code but again error what should i do
@safeerhaider67792 жыл бұрын
dear nice work. I appreciate your efforts. Kindly share the house data set used in this tutorial to make practice.
@mahakgarg31522 жыл бұрын
Ya do u find the dataset?
@Dj-Dattu3 жыл бұрын
Great content!!!
@igochedavidugbabe27422 жыл бұрын
Thank you very kindly for this
@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)
@Ali.M.Al-Rahim3 жыл бұрын
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.
@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.
@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?
@maitrimarwaha62505 ай бұрын
if you added this in your cv can you please guide what all did you write
@yadali4833 Жыл бұрын
hello, may I know why you did not standardize the data? I mean using a standard scaler?
@ajithmohann3 жыл бұрын
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?
@Siddhardhan3 жыл бұрын
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.
@ajithmohann3 жыл бұрын
@@Siddhardhan Thank you for explaining! You are being very helpful. Keep doing more videos.
@ajithmohann3 жыл бұрын
@@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?
@joaomorita30273 жыл бұрын
@@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.
@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?
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
@cecilia73482 жыл бұрын
Very nice class
@Akinjohnsonn7 ай бұрын
Weldone sir❤
@surajgangani20113 жыл бұрын
thanks for amazing videos
@Siddhardhan3 жыл бұрын
you're welcome 😇
@Tony-vo9ok5 ай бұрын
Invaluable
@joaomorita30273 жыл бұрын
The R squared error and the Mean absolute error should be close to zero?
@gurleenkaur419815 күн бұрын
Sir please tell model.fit(X_train ,Y_train) error occurred download everything but again and agian error is occurrd
@reshmam34232 жыл бұрын
Excellent
@Tony-vo9ok5 ай бұрын
I want to ask why we do not need to standardise thw data before spilting it just like previous project?
@PulicherlaPunyakotiReddy Жыл бұрын
hi, House price boston() is not available. which dataset i can use now?
@aaditya90302 ай бұрын
dwlnd a csv from kaggle and use it..
@TheInspirationVibeКүн бұрын
I'm watching this in 2025, your teaching id good bro
@sanjay_garag3 жыл бұрын
How can we take the ranges between the actual price and predicted price
@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
@krunalkharat68032 жыл бұрын
why we did not ploted graph of actual value vs predicted value for testing data ?
@nikhilteja434 Жыл бұрын
why have we not done Standadization of data?
@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?
@liteshbopche63173 жыл бұрын
Why StandardScaler function is not used for standardized the dataset?
@velan990810 ай бұрын
because the dataset is already clean and standardized.
@manojhp4089 Жыл бұрын
sir Can We use LinearRegression Model insted XGBRegressor
@shivanipandey47524 жыл бұрын
Nice video
@Siddhardhan4 жыл бұрын
Thanks shivani!
@namrattayadav9496 Жыл бұрын
Where is the model deployment part?
@yohannesayana94563 жыл бұрын
Why don't you insert some values as input_data to check the price of the house?
@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
@iwojoseph Жыл бұрын
hello! Can this be deployed using streamlit to predict house prices?
@Khaled_Elsadani Жыл бұрын
Thanks.
@priyamittal83022 жыл бұрын
Hi! Can you please tell how can I enter my own data and get the predicted result....?
@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
@harleenkaur37132 жыл бұрын
These datasets we have to download first ?
@AbinayaAbinaya-n6n10 ай бұрын
Bro... Pls upload rainfall prediction using machine learning with source code.....
@revaprasadpoetry23173 жыл бұрын
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
@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
@mhdfirassbarakat65872 жыл бұрын
Hi Good job and thanks for this content is there any way to provide us with the pptx ?
@satyasubhasis53356 ай бұрын
can i do this project in in 2024 by this vdo
@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
@gilsonjunior_narrador2 жыл бұрын
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.
@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.
@sagarfating36193 ай бұрын
provid the dataset csv file?
@cherubyGreens3 жыл бұрын
Clearly understood thank you, bro!
@Siddhardhan3 жыл бұрын
my pleasure 😇
@shikharbhardwaj8474Ай бұрын
Where is interface?
@ankitaswal62532 жыл бұрын
Sir can use this project for collage purpose
@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
@NEERAJKUMAR-uv4fn2 жыл бұрын
Can i add this project in my Resume??
@bogbur212 жыл бұрын
can you make a model that will predict the cost of maintenance for a building ?
@SauravKumar-hd9jf3 жыл бұрын
How to Deploy this project using streamlit?
@Siddhardhan3 жыл бұрын
hi! refer this video: kzbin.info/www/bejne/jX3am6mNppV6jaM
@gauravfamily22093 жыл бұрын
How prediction result will expose through REST API? Please explain also.
@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
@gitasaheru2309 Жыл бұрын
How to data analyst and data scientist?
@rahulgarud9568Ай бұрын
Where dataset or github link please
@user-hc1ww9zq7h2 жыл бұрын
where is the dataset? could you please add here
@poorvinidsoshi71202 жыл бұрын
Sir where is the CSV file
@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.
@AutumnRainWish2 жыл бұрын
I'm getting different R squared error and mean absolute error. Any idea why?
@rsg50473 жыл бұрын
Can I have a synopsis of house price prediction model using python Sir?
@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?
@Aizaz_ali_shah Жыл бұрын
hello sir ? dataset cannot found ? not available any solution??