Skip to content

Commit

Permalink
Final pass removing dataset dependence from disentangling notebook.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 321177642
  • Loading branch information
sschoenholz committed Jul 14, 2020
1 parent 8a994ef commit a2ad408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/Disentangling_Trainability_and_Generalization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@
},
"outputs": [],
"source": [
"x_train, y_train, x_test, y_test = normalize(*datasets.get_dataset('cifar10', 64, 32))"
"x_train, y_train, x_test, y_test = normalize(*get_dataset('cifar10', 64, 32))"
]
},
{
Expand Down Expand Up @@ -1417,7 +1417,7 @@
},
"outputs": [],
"source": [
"x_train, y_train, x_test, y_test = tuple(np.array(x) for x in datasets.get_dataset('cifar10', 256, 10000))"
"x_train, y_train, x_test, y_test = tuple(np.array(x) for x in get_dataset('cifar10', 256, 10000))"
]
},
{
Expand Down

0 comments on commit a2ad408

Please sign in to comment.