Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #28 from LuposX/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
LuposX authored Sep 28, 2019
2 parents c184ea5 + dbe12d2 commit e12d707
Show file tree
Hide file tree
Showing 11 changed files with 645 additions and 158 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ Boston Housing Prediction is a python script that can predict the housing prices
## Installation
You need to have `python >= 3.5` installed.

To install the the script do:
To install the the script do([Press to view PYPI page](https://pypi.org/project/boston-housing-prediction/)):

```sh
$ pip install boston_housing_prediction
```

For older versions:
Alternatively download the latest release of `boston-housing`. Open the zip and in the `code` or `boston_housing_prediction` folder(folders have different names in different versions) you can see the script and its libaries.

Expand All @@ -35,6 +34,13 @@ $ python -m boston_housing_prediction -h
<!--_For more examples and usage, please refer to the [Wiki][wiki]._-->

## Release History
* 0.2.2
* fix negative input for training of model #24
* fix negative output of predictions #24
* optimized folder structure for PYPI #13
* optimized some code.(comments, input)
* documentation: changes in PYPI, coments in code

* 0.2.1
* add normalization for data

Expand Down
8 changes: 5 additions & 3 deletions boston_housing_prediction/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Started: 08.09.2019
Lang: Phyton
Description: Prediction of boston housing market prices.
version: 0.2.1
version: 0.2.2
Dataset:
Housing Values in Suburbs of Boston
Expand All @@ -15,12 +15,14 @@
Latest change:
- fixed Normalization for data
- organisational stuff and bugfixes: #24
- negative input/output
'''

# My Files that get imported
import boston_housing_prediction.boston_main
import boston_main

# TODO: fix train and test loss

if __name__ == "__main__":
boston_housing_prediction.boston_main.main()
boston_main.main()
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit e12d707

Please sign in to comment.