Skip to content

Commit 2480494

Browse files
committed
Restored old components
1 parent 1322b29 commit 2480494

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
Binary file not shown.

config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def from_args(self, args=sys.argv[1:]):
6161
parser.add_argument('--video', dest='make_video', action='store_true', help='Generate output videos (MP4s)')
6262
parser.add_argument('--batch', dest='batch_mode', action='store_true', help="Don't open windows, instead save results to file")
6363
parser.add_argument('-b', dest='batch_size', type=int, default=None, help='Minibatch size, leave empty for automatic detection')
64-
parser.add_argument('-c', dest='components', type=int, default=128, help='Number of components to keep')
64+
parser.add_argument('-c', dest='components', type=int, default=80, help='Number of components to keep')
6565
parser.add_argument('-n', type=int, default=300_000, help='Number of examples to use in decomposition')
6666
parser.add_argument('--use_w', action='store_true', help='Use W latent space (StyleGAN(2))')
6767
parser.add_argument('--sigma', type=float, default=2.0, help='Number of stdevs to walk in visualize.py')

notebooks/figure_teaser.ipynb

+4-3
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@
219219
"outputs": [],
220220
"source": [
221221
"# BigGAN-512 irish setter\n",
222-
"setup_model('BigGAN-512', 'irish_setter', 'generator.gen_z')\n",
222+
"setup_model('BigGAN-512', 'husky', 'generator.gen_z')\n",
223+
"model.set_output_class('irish_setter')\n",
223224
"model.truncation = 0.6\n",
224225
"\n",
225226
"seeds = [489408325]# + [rand() for _ in range(10)]\n",
@@ -251,9 +252,9 @@
251252
"name": "python",
252253
"nbconvert_exporter": "python",
253254
"pygments_lexer": "ipython3",
254-
"version": "3.7.5-final"
255+
"version": "3.7.7"
255256
}
256257
},
257258
"nbformat": 4,
258259
"nbformat_minor": 2
259-
}
260+
}

0 commit comments

Comments
 (0)