GaumlessGraham commited on
Commit
0b9daee
·
verified ·
1 Parent(s): ac8fde4

Update outerRaceModel.py

Browse files
Files changed (1) hide show
  1. outerRaceModel.py +2 -2
outerRaceModel.py CHANGED
@@ -56,7 +56,7 @@ from dataclasses import dataclass
56
 
57
  @dataclass
58
  class TrainingConfig:
59
- image_size = 32 # the generated image resolution
60
  train_batch_size = 10
61
  eval_batch_size = 16 # how many images to sample during evaluation
62
  num_epochs = 250
@@ -262,7 +262,7 @@ def evaluate(config, epoch, pipeline):
262
  os.makedirs(test_dir)
263
 
264
  for i, image in enumerate(images):
265
- image.save(f"{test_dir}/{(i+(k*16)):04d}.png")
266
 
267
  config.seed = random.randint(1, 1000)
268
 
 
56
 
57
  @dataclass
58
  class TrainingConfig:
59
+ image_size = 256 # the generated image resolution
60
  train_batch_size = 10
61
  eval_batch_size = 16 # how many images to sample during evaluation
62
  num_epochs = 250
 
262
  os.makedirs(test_dir)
263
 
264
  for i, image in enumerate(images):
265
+ image.save(f"{test_dir}/{(i+((k-1)*16)):04d}.png")
266
 
267
  config.seed = random.randint(1, 1000)
268