REPOSITORY OVERVIEWLive repository statistics
★ 2Stars
⑂ 0Forks
◯ 0Open issues
◉ 2Watchers
32/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10 Community adoption25% weight
5 Maintenance state20% weight
100 License clarity10% weight
0 Project information10% weight
75 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
Journey of 100DaysOfData Challenge
Day1 of 100DaysOfData!
- On my journey of Machine learning and Deep Learning, Today I continued reading Chapter End-to-End Machine learning Project. After framing the problem, getting the data, exploring the data, sampling data into train and test set, and creating a whole transformation pipeline to clean up and prepare data for Machine Learning algorithms automatically, today I learned to select and train a Machine Learning Model using Scikit Learn. I am working on a District house price prediction model. It is a multiple(more than one feature/attribute), univariate(only one value to predict) regression(based on all the attributes we have to predict a single value) supervised(labeled data) Machine Learning System.
- I learned to select and train a Machine Learning Model using Scikit Learn, learned about various performance metrics, and learned little about the Linear Regression model, Decision Tree Regressor, and Random Forest Regressor model. I also came across Cross-validation and using it easily from Scikit Learn.
- Hands On Machine Learning with Scikit Learn, Keras and TensorFlow | (Book)
- Day 1 of #100DaysOfData - Personal Blog | (Blog)
Day2 of 100DaysOfData!
- On my journey of Machine Learning and Deep Learning, even Today I continued reading Chapter End-to-End Machine learning Project. After framing the problem, getting the data, exploring the data, sampling data into train and test set, creating a whole transformation pipeline to clean up and prepare data for Machine Learning algorithms automatically, and selecting and training a model,
today I learned to fine-tune my selected model.
- Here I have learned about Grid Search, Randomized Search, Ensemble methods, Analyze the best models, their error, and figuring out the importance of each attribute for making an accurate prediction, and finally to evaluate my system on the test set for production. I also took some time out to look into Artificial Neural Networks.