You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@gucifer please update the notebook and generate its markdown with the following fixes:
Use # only once for the title and ##, ### etc for others. As title is specified in tags as title: ..., you have to update all headers by adding one more # to each of them.
Fix this :
# Models for GAN
## Generator
The latent space dimension of input vectors for the generator is a key parameter of GAN.
....
## Generator
You have twice the header ## Generator
Fix typos:
- dataset, emmiting events as it goes.+ dataset, triggering events as it goes.- Events - Events are emmited by the Engine+ Events - Events are emitted by the Engine- Event is emmited by the Engine. + Event is emitted by the Engine.
By the way, the following sentence is a bit incorrect
Handlers - These are functions which can be configured so that they are triggered when a certain
Event is emmited by the Engine. Ignite has a long list of pre defined Handlers such as checkpoint,
early stopping, logging and built-in metrics.
=> Handlers are any functions and not only the ones under the link. Please fix the wording.
Let's merge neighbouring cells together for better MD rendering.
For example
In [ ]:
image_size = 64
In [ ]:
data_transform = transforms.Compose(
[
transforms.Resize(image_size),
transforms.CenterCrop(image_size),
transforms.ToTensor(),
transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),
]
)
In [ ]:
train_dataset = ImageFolder(root="./data", transform=data_transform)
In [ ]:
test_dataset = torch.utils.data.Subset(train_dataset, torch.arange(3000))
@gucifer please update the notebook and generate its markdown with the following fixes:
Use
#
only once for the title and##
,###
etc for others. As title is specified in tags astitle: ...
, you have to update all headers by adding one more#
to each of them.Fix this :
You have twice the header
## Generator
By the way, the following sentence is a bit incorrect
=> Handlers are any functions and not only the ones under the link. Please fix the wording.
For example
=>
Please apply that for all cells that are not separed with any text or output.
The text was updated successfully, but these errors were encountered: