├── .DS_Store ├── LICENSE ├── README.md ├── images ├── demos.png └── structure.png └── src ├── .gitignore ├── DataLoader.lua ├── Demo.ipynb ├── LICENSE ├── README.md ├── ShaveImage.lua ├── TestLuaDataloader.ipynb ├── Visualize Error.ipynb ├── colorize.lua ├── make_dataset.py ├── models.lua ├── process.lua ├── train.lua ├── transforms.lua ├── utils.lua └── validation.lua /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/README.md -------------------------------------------------------------------------------- /images/demos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/images/demos.png -------------------------------------------------------------------------------- /images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/images/structure.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.t7 2 | *.h5 3 | .ipynb_checkpoints/ 4 | -------------------------------------------------------------------------------- /src/DataLoader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/DataLoader.lua -------------------------------------------------------------------------------- /src/Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/Demo.ipynb -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/README.md -------------------------------------------------------------------------------- /src/ShaveImage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/ShaveImage.lua -------------------------------------------------------------------------------- /src/TestLuaDataloader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/TestLuaDataloader.ipynb -------------------------------------------------------------------------------- /src/Visualize Error.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/Visualize Error.ipynb -------------------------------------------------------------------------------- /src/colorize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/colorize.lua -------------------------------------------------------------------------------- /src/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/make_dataset.py -------------------------------------------------------------------------------- /src/models.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/models.lua -------------------------------------------------------------------------------- /src/process.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/process.lua -------------------------------------------------------------------------------- /src/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/train.lua -------------------------------------------------------------------------------- /src/transforms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/transforms.lua -------------------------------------------------------------------------------- /src/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/utils.lua -------------------------------------------------------------------------------- /src/validation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Colorizing-Color-Images/HEAD/src/validation.lua --------------------------------------------------------------------------------