mirror of
https://github.com/Deepshift/DeepCreamPy.git
synced 2025-01-26 03:35:28 +00:00
rename network
This commit is contained in:
parent
0071e4585a
commit
5cbafe7a5e
@ -16,6 +16,8 @@ Link coming soon
|
||||
|
||||
# Usage
|
||||
|
||||
|
||||
|
||||
# To do
|
||||
- Add a user interface
|
||||
- Incorporate GAN loss into training
|
||||
|
@ -1,6 +1,6 @@
|
||||
from layer import *
|
||||
|
||||
class Network:
|
||||
class Model:
|
||||
def __init__(self, x, mask, local_x, global_completion, local_completion, is_training, batch_size):
|
||||
self.batch_size = batch_size
|
||||
self.imitation = self.generator(x * (1 - mask), is_training)
|
@ -2,7 +2,7 @@ import numpy as np
|
||||
import tensorflow as tf
|
||||
import cv2
|
||||
import tqdm
|
||||
from network import Network
|
||||
from model import Model
|
||||
import load
|
||||
|
||||
IMAGE_SIZE = 128
|
||||
|
Loading…
x
Reference in New Issue
Block a user