silence printing the model because it's just useless noise
This commit is contained in:
parent
71cc43e65c
commit
6eb7ebf847
|
@ -19,6 +19,7 @@ from datetime import datetime
|
||||||
|
|
||||||
from utils.util import opt_get, map_cuda_to_correct_device
|
from utils.util import opt_get, map_cuda_to_correct_device
|
||||||
|
|
||||||
|
import tortoise.utils.torch_intermediary as ml
|
||||||
|
|
||||||
def init_dist(backend, **kwargs):
|
def init_dist(backend, **kwargs):
|
||||||
# These packages have globals that screw with Windows, so only import them if needed.
|
# These packages have globals that screw with Windows, so only import them if needed.
|
||||||
|
|
|
@ -185,7 +185,7 @@ class ExtensibleTrainer(BaseModel):
|
||||||
self.env['discriminators'] = self.netsD
|
self.env['discriminators'] = self.netsD
|
||||||
self.env['emas'] = self.emas
|
self.env['emas'] = self.emas
|
||||||
|
|
||||||
self.print_network() # print network
|
# self.print_network() # print network
|
||||||
self.load() # load networks from save states as needed
|
self.load() # load networks from save states as needed
|
||||||
|
|
||||||
# Load experiments
|
# Load experiments
|
||||||
|
|
|
@ -48,4 +48,5 @@ x-clip
|
||||||
x_transformers==1.0.4
|
x_transformers==1.0.4
|
||||||
|
|
||||||
# bitsandbytes
|
# bitsandbytes
|
||||||
bitsandbytes==0.35.0
|
bitsandbytes==0.35.0 ; platform_system == "Windows"
|
||||||
|
bitsandbytes ; platform_system != "Windows"
|
Loading…
Reference in New Issue
Block a user