This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM python:3.7 | |
| ENV PYTHONDONTWRITEBYTECODE=1 | |
| ENV PYTHONUNBUFFERED=1 | |
| ENV FLASK_APP=app.py | |
| ENV FLASK_ENV=development | |
| # install system dependencies | |
| RUN apt-get update \ | |
| && apt-get -y install gcc make \ | |
| && rm -rf /var/lib/apt/lists/*s | |
| RUN python3 --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "iam:AttachRolePolicy", | |
| "iam:GetRole", | |
| "iam:CreateRole", | |
| "iam:PassRole", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Title: Neural style transfer | |
| Author: [fchollet](https://twitter.com/fchollet) | |
| Date created: 2016/01/11 | |
| Last modified: 2020/05/02 | |
| Description: Transfering the style of a reference image to target image using gradient descent. | |
| """ | |
| # https://github.com/keras-team/keras-io/blob/master/examples/generative/neural_style_transfer.py |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer