Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tushard48/california_housing_prediction
Aim to predict housing prices in various regions of California using a dataset that includes various factors influencing house prices.
https://github.com/tushard48/california_housing_prediction
data-visualization jupyter-notebook machine-learning pickle
Last synced: 11 days ago
JSON representation
Aim to predict housing prices in various regions of California using a dataset that includes various factors influencing house prices.
- Host: GitHub
- URL: https://github.com/tushard48/california_housing_prediction
- Owner: TusharD48
- License: apache-2.0
- Created: 2024-05-12T16:46:58.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-13T08:39:55.000Z (8 months ago)
- Last Synced: 2024-11-08T11:43:05.678Z (2 months ago)
- Topics: data-visualization, jupyter-notebook, machine-learning, pickle
- Language: Jupyter Notebook
- Homepage:
- Size: 1.84 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# California_Housing_Prediction ###
### Softwqre and tools requirements
1. [Github Account](https://github.com/)
2. [Heroku Account](https://www.heroku.com/home)
3. [VS Code IDE](https://code.visualstudio.com/)
4. [Git CLI](https://git-scm.com/book/en/v2/Getting-Started-The-Command-Line)### Create a new environment
```
conda create -p venv python==3.10 -y
```
### Activate environment
```
conda activate venv/
```
### Install libraries
```
pip install -r requirements.txt
```
### Config your user name and email
```
git config --globar user.name
git config --globar user.email
```
### Adding files to the github repository
```
git add .
git status
git commit -m "commit message"
git push origin main
```