housing-library


Namehousing-library JSON
Version 0.1 PyPI version JSON
download
home_page
SummarySample code for coding practice
upload_time2023-11-15 14:14:57
maintainer
docs_urlNone
author
requires_python>=3.11
license
keywords housing data training
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Median housing value prediction

The housing data can be downloaded from https://raw.githubusercontent.com/ageron/handson-ml/master/. The script has codes to download the data. We have modelled the median house value on given housing data. 

The following techniques have been used: 

 - Linear regression
 - Decision Tree
 - Random Forest

## Steps performed
 - We prepare and clean the data. We check and impute for missing values.
 - Features are generated and the variables are checked for correlation.
 - Multiple sampling techinuqies are evaluated. The data set is split into train and test.
 - All the above said modelling techniques are tried and evaluated. The final metric used to evaluate is mean squared error.

## To excute the script
python nonstandardcode.py
# To create an environment 
conda env --name mle-dev biopython
conda activate mle-dev
#To export the environment to env.yml
conda env export mle-dev > env.yml
# mle-training

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "housing-library",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": "",
    "keywords": "housing,data training",
    "author": "",
    "author_email": "durgambasrigakollu <durgamba.srigako@tigeranalytics.com>",
    "download_url": "https://files.pythonhosted.org/packages/6d/0d/1c6a96bc1cc086515c3b79d83b2497774f2b77cc8e4798091bb46ee8e413/housing_library-0.1.tar.gz",
    "platform": null,
    "description": "# Median housing value prediction\n\nThe housing data can be downloaded from https://raw.githubusercontent.com/ageron/handson-ml/master/. The script has codes to download the data. We have modelled the median house value on given housing data. \n\nThe following techniques have been used: \n\n - Linear regression\n - Decision Tree\n - Random Forest\n\n## Steps performed\n - We prepare and clean the data. We check and impute for missing values.\n - Features are generated and the variables are checked for correlation.\n - Multiple sampling techinuqies are evaluated. The data set is split into train and test.\n - All the above said modelling techniques are tried and evaluated. The final metric used to evaluate is mean squared error.\n\n## To excute the script\npython nonstandardcode.py\n# To create an environment \nconda env --name mle-dev biopython\nconda activate mle-dev\n#To export the environment to env.yml\nconda env export mle-dev > env.yml\n# mle-training\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Sample code for coding practice",
    "version": "0.1",
    "project_urls": {
        "Homepage": "https://github.com/durgambasrigakollu/mle-training.git"
    },
    "split_keywords": [
        "housing",
        "data training"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30365a35210692270059006cbaca4088a03ff995a6cfdc3317921f024876f159",
                "md5": "c42a3fc6284d5fc3d85bb9ac39c84e1e",
                "sha256": "058c381e70bdaf511d6e4f4cd460b98464752bb61c3e9bd0735d2ceea4be5ee7"
            },
            "downloads": -1,
            "filename": "housing_library-0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c42a3fc6284d5fc3d85bb9ac39c84e1e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 8645,
            "upload_time": "2023-11-15T14:14:55",
            "upload_time_iso_8601": "2023-11-15T14:14:55.372230Z",
            "url": "https://files.pythonhosted.org/packages/30/36/5a35210692270059006cbaca4088a03ff995a6cfdc3317921f024876f159/housing_library-0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d0d1c6a96bc1cc086515c3b79d83b2497774f2b77cc8e4798091bb46ee8e413",
                "md5": "808ddd15dbff8c2fbb2086d78e620c38",
                "sha256": "3a0df795503df6b2230f227a947a2a8d59ac877b677ec08b0a6edbd28bb42e0f"
            },
            "downloads": -1,
            "filename": "housing_library-0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "808ddd15dbff8c2fbb2086d78e620c38",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 6111,
            "upload_time": "2023-11-15T14:14:57",
            "upload_time_iso_8601": "2023-11-15T14:14:57.562021Z",
            "url": "https://files.pythonhosted.org/packages/6d/0d/1c6a96bc1cc086515c3b79d83b2497774f2b77cc8e4798091bb46ee8e413/housing_library-0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-15 14:14:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "durgambasrigakollu",
    "github_project": "mle-training",
    "github_not_found": true,
    "lcname": "housing-library"
}
        
Elapsed time: 2.72415s