# transfer-8th **Repository Path**: corgile/transfer-8th ## Basic Information - **Project Name**: transfer-8th - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-18 - **Last Updated**: 2021-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 迁移算法 ```text . |-- README.md |-- __pycache__ |-- checkpoints | |-- normal | `-- residual | |-- xxxx_batch_1000.pth | `-- ... |-- dataset |-- img | |-- content | | |-- 1.jpg | | `-- ... | |-- normal | | |-- 1.jpg | | `-- ... | |-- residual | | |-- 1.jpg | | `-- ... | |-- residual_furry | | |-- 1.jpg | | `-- ... | |-- residual_moisac | | |-- 1.jpg | | `-- ... | `-- style | |-- candy.jpg | `-- ... |-- model | |-- normal | | `-- residual.pth | `-- residual | `-- candy.pth |-- scripts | |-- PackedVGG.py | |-- __pycache__ | |-- compare.py | |-- main.py | |-- test.py | |-- tools.py | |-- transformer_net.py | `-- transformer_net_modified.py |-- start-vis |-- test-all |-- train-residual.txt `-- update ``` ## 运行 1. 启动visdom ```shell python -m visdom.server ``` 2. train ```shell ./start-train ``` 3. 测试 ```shell ./test-all ``` ## 效果 | source | normal | with residual block | | :----------------------: | :---------------------: | :-----------------------: | | ![](./img/content/1.jpg) | ![](img/normal_udnie/1.jpg) | ![](img/udnie/1.jpg) | | ![](./img/content/2.jpg) | ![](img/normal_udnie/2.jpg) | ![](img/udnie/2.jpg) | | ![](./img/content/3.jpg) | ![](img/normal_udnie/3.jpg) | ![](img/udnie/3.jpg) | | ![](./img/content/4.jpg) | ![](img/normal_udnie/4.jpg) | ![](img/udnie/4.jpg) | | ![](./img/content/5.jpg) | ![](img/normal_udnie/5.jpg) | ![](img/udnie/5.jpg) | | source | moisac | udnie | | :----------------------: | :------------------------------: | :-----------------------: | | ![](./img/content/1.jpg) | ![](./img/residual_moisac/1.jpg) | ![](img/udnie/1.jpg) | | ![](./img/content/2.jpg) | ![](./img/residual_moisac/2.jpg) | ![](img/udnie/2.jpg) | | ![](./img/content/3.jpg) | ![](./img/residual_moisac/3.jpg) | ![](img/udnie/3.jpg) | | ![](./img/content/4.jpg) | ![](./img/residual_moisac/4.jpg) | ![](img/udnie/4.jpg) | | ![](./img/content/5.jpg) | ![](./img/residual_moisac/5.jpg) | ![](img/udnie/5.jpg) |