• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..04-Nov-2021-

end_to_end/H04-Nov-2021-794522

.gitignoreH A D04-Nov-202119 43

README.mdH A D04-Nov-20211.6 KiB4315

checkpoint-viewer.ipynbH A D04-Nov-2021596.2 KiB234233

download.shH A D04-Nov-20211.1 KiB3310

find_mxnet.pyH A D04-Nov-2021996 257

model_vgg19.pyH A D04-Nov-20215.8 KiB9465

neuralart.ipynbH A D04-Nov-2021399 KiB597596

nstyle.pyH A D04-Nov-202110.9 KiB278218

README.md

1<!--- Licensed to the Apache Software Foundation (ASF) under one -->
2<!--- or more contributor license agreements.  See the NOTICE file -->
3<!--- distributed with this work for additional information -->
4<!--- regarding copyright ownership.  The ASF licenses this file -->
5<!--- to you under the Apache License, Version 2.0 (the -->
6<!--- "License"); you may not use this file except in compliance -->
7<!--- with the License.  You may obtain a copy of the License at -->
8
9<!---   http://www.apache.org/licenses/LICENSE-2.0 -->
10
11<!--- Unless required by applicable law or agreed to in writing, -->
12<!--- software distributed under the License is distributed on an -->
13<!--- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -->
14<!--- KIND, either express or implied.  See the License for the -->
15<!--- specific language governing permissions and limitations -->
16<!--- under the License. -->
17
18# Neural art
19
20This is an implementation of the paper
21[A Neural Algorithm of Artistic Style](http://arxiv.org/abs/1508.06576) by Leon
22A. Gatys, Alexander S. Ecker, and Matthias Bethge.
23
24## How to use
25
26First use `download.sh` to download pre-trained model and sample inputs
27
28Then run `python nstyle.py`, use `-h` to see more options
29
30## Sample results
31
32<img src=https://github.com/dmlc/web-data/raw/master/mxnet/neural-style/output/4343_starry_night.jpg width=600px>
33
34It takes 30 secs for a Titan X to generate the above 600x400 image.
35
36## Note
37
38* The current implementation is based the
39  [torch implementation](https://github.com/jcjohnson/neural-style). But we may
40  change it dramatically in the near future.
41
42* We will release multi-GPU version soon.
43