Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 737 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 737 Bytes

sketch2normal

This is the implementation of the paper Interactive Sketch-Based Normal Map Generation with Deep Neural Networks

Setup

We run the program on a Linux desktop using python.

Usage

  • Train the model:
pyhton main.py --phase train --dataset_name <dataset>
  • Test:
python main.py --phase test --dataset_name <dataset>
  • Visulize the training process:
cd logs
tensorboard --logdir=./
  • Data: TBA

Acknowledgement

This code is based on the implementation of pix2pix from pix2pix-tensorflow. Thanks for the great work!