Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
herbiebradley committed Feb 26, 2019
1 parent d6faa41 commit f4a1b32
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
22 changes: 6 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,11 @@ Project Organization

├── LICENSE
├── Makefile <- Makefile with commands like `make data` or `make train`
├── README.md <- The top-level README for developers using this project.
├── README.md
├── data
│   ├── external <- Data from third party sources.
│   ├── interim <- Intermediate data that has been transformed.
│   ├── processed <- The final, canonical data sets for modeling.
│   └── raw <- The original, immutable data dump.
│   └── raw <- Raw data before any processing.
├── models <- Trained and serialized models, model predictions, or model summaries
├── notebooks <- Jupyter notebooks.
├── references <- Data dictionaries, manuals, and all other explanatory materials.
├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
│   └── figures <- Generated graphics and figures to be used in reporting
├── requirements.yml <- The requirements file for reproducing the analysis environment, e.g.
│ generated with `pip freeze > requirements.txt`
├── saved_models <- Checkpointed models and tensorboard summaries.
├── setup.py <- makes project pip installable (pip install -e .) so src can be imported
└── src <- Source code for use in this project.
Expand All @@ -48,10 +35,13 @@ Project Organization
   │   └── base_options.py
   ├── models <- Code for defining the network structure and loss functions
│   ├── __init__.py <- model helper functions
   │   ├── network.py
│   ├── cyclegan.py
   │   └── losses.py
   └── utils <- Utility files, including scripts for visualisation
      └── image_history_buffer.py

--------

Expand Down
2 changes: 2 additions & 0 deletions src/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
from train import initialize_checkpoint, define_model, restore_from_checkpoint
from pipeline.data import load_test_data, save_images

tf.enable_eager_execution()

project_dir = os.path.abspath(os.path.join(os.getcwd(), os.pardir))
checkpoint_dir = os.path.join(project_dir, 'saved_models', 'checkpoints')
dataset_id = 'facades'
Expand Down

0 comments on commit f4a1b32

Please sign in to comment.