├── Readme.md ├── __pycache__ └── beautify.cpython-37.pyc ├── app.py ├── beautify.py ├── beauty_result.jpg ├── infer.py ├── make_dataset.py ├── receive.jpg ├── result.png ├── sample.jpg ├── simple_request.py ├── src ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── dataset.cpython-37.pyc │ ├── resnet.cpython-37.pyc │ ├── resnetUnet.cpython-37.pyc │ ├── unet_model.cpython-37.pyc │ └── unet_plus.cpython-37.pyc ├── dataset.py ├── resnetUnet.py └── unet_model.py ├── static ├── index.js └── style.css ├── templates ├── index.html └── try.html ├── test.py ├── test_beauty.py ├── tmp.py ├── tmp_app.py ├── tmp_test_beauty.py └── train.py /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/Readme.md -------------------------------------------------------------------------------- /__pycache__/beautify.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/__pycache__/beautify.cpython-37.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/app.py -------------------------------------------------------------------------------- /beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/beautify.py -------------------------------------------------------------------------------- /beauty_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/beauty_result.jpg -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/infer.py -------------------------------------------------------------------------------- /make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/make_dataset.py -------------------------------------------------------------------------------- /receive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/receive.jpg -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/result.png -------------------------------------------------------------------------------- /sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/sample.jpg -------------------------------------------------------------------------------- /simple_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/simple_request.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/resnetUnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__pycache__/resnetUnet.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/unet_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__pycache__/unet_model.cpython-37.pyc -------------------------------------------------------------------------------- /src/__pycache__/unet_plus.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/__pycache__/unet_plus.cpython-37.pyc -------------------------------------------------------------------------------- /src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/dataset.py -------------------------------------------------------------------------------- /src/resnetUnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/resnetUnet.py -------------------------------------------------------------------------------- /src/unet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/src/unet_model.py -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/static/index.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/try.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/templates/try.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/test.py -------------------------------------------------------------------------------- /test_beauty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/test_beauty.py -------------------------------------------------------------------------------- /tmp.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/tmp_app.py -------------------------------------------------------------------------------- /tmp_test_beauty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/tmp_test_beauty.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuchaoZheng/Google_camp/HEAD/train.py --------------------------------------------------------------------------------