Removed debug prints
Browse files
pyment/models/sfcn/sfcn.py
CHANGED
|
@@ -79,13 +79,9 @@ class SFCN(Model):
|
|
| 79 |
super().__init__(self.inputs, x)
|
| 80 |
|
| 81 |
if weights:
|
| 82 |
-
print(weights)
|
| 83 |
weights = ensure_weights(weights)
|
| 84 |
-
print(weights)
|
| 85 |
-
weights = 'checkpoints/pyment/sfcn-multi'
|
| 86 |
status = self.load_weights(weights)
|
| 87 |
|
| 88 |
-
print(weights)
|
| 89 |
if not weights.endswith('hdf5'):
|
| 90 |
# Silences warnings about optimizer-status not being loaded
|
| 91 |
status.expect_partial()
|
|
|
|
| 79 |
super().__init__(self.inputs, x)
|
| 80 |
|
| 81 |
if weights:
|
|
|
|
| 82 |
weights = ensure_weights(weights)
|
|
|
|
|
|
|
| 83 |
status = self.load_weights(weights)
|
| 84 |
|
|
|
|
| 85 |
if not weights.endswith('hdf5'):
|
| 86 |
# Silences warnings about optimizer-status not being loaded
|
| 87 |
status.expect_partial()
|