Giter VIP home page Giter VIP logo

happiness_model's Introduction

Happiness Model

This is an API Rest that uses an ML model to make prediction of the happiness score of a country.

Model

The dataset was obtained from Kaggle, its name is The World Happiness and you can look it here. The dataset is split in a lot of years from 2015 until 2019 in .csv files. Before fitting the model these files are transformed. Mainly, merging the firsts 3 files and changing its columns can use a dataset with more data.

This project was built with Python using the library Scikit-Learn. For obtain the best model, I use the method from sklearn, GridSearchCV, this allow test a serie of configurations and ML models, in this case the models:

  • SVR
  • GradientBoostingRegressor

With the next configurations:

self.params = {
            'SVR': {
                'kernel': ['linear', 'poly', 'rbf'],
                'gamma': ['auto', 'scale'],
                'C': [1, 5, 10],
            },
            'GRADIENT': {
                'loss': ['ls', 'lad'],
                'learning_rate': [0.01, 0.05, 0.1],
            },
        }

API Rest

For API was used Flask and Boostrap to the styles and the HTML.

For use the model you must import a file previously created by main.py. In this way, the user can tester different parameters to have a prediction of the model.

happiness_model's People

Contributors

fabianvegaa avatar

Watchers

 avatar

Forkers

camilu-png fetex

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.