├── README.md ├── app.py ├── fake_reg.csv ├── linreg_pytorch.ipynb ├── linreg_pytorch.py ├── model.pth ├── render.yaml ├── requirements.txt ├── scaler.sav └── templates ├── home.html ├── prediction.html └── test.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/app.py -------------------------------------------------------------------------------- /fake_reg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/fake_reg.csv -------------------------------------------------------------------------------- /linreg_pytorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/linreg_pytorch.ipynb -------------------------------------------------------------------------------- /linreg_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/linreg_pytorch.py -------------------------------------------------------------------------------- /model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/model.pth -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /scaler.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/scaler.sav -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/prediction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterruler/linreg-pytorch/HEAD/templates/prediction.html -------------------------------------------------------------------------------- /templates/test.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------