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
# The training loopforepochinrange(n_epochs):
forx, yintrain_dataloader:
# Get some data and prepare the corrupted versionx=x.to(device) # Data on the GPUnoise_amount=torch.rand(x.shape[0]).to(device) # Pick random noise amountsnoisy_x=corrupt(x, noise_amount) # Create our noisy x# Get the model predictionpred=net(noisy_x, 0).sample#<<< Using timestep 0 always, adding .sample# Calculate the lossloss=loss_fn(pred, x) # How close is the output to the true 'clean' x?# Backprop and update the params:opt.zero_grad()
loss.backward()
opt.step()
# Store the loss for laterlosses.append(loss.item())
# Print our the average of the loss values for this epoch:avg_loss=sum(losses[-len(train_dataloader):])/len(train_dataloader)
print(f'Finished epoch {epoch}. Average loss for this epoch: {avg_loss:05f}')
In case I want to make the network predict the clean images, should the pred formula be changed to this by attaching noise_amount?
# Get the model predictionpred=net(noisy_x, noise_amount).sample#<<< Using timestep 0 always, adding .sample
The text was updated successfully, but these errors were encountered:
The model in diffusers expects a timestep as the second argument but since we're training from scratch we can choose to ignore it by always passing 0 as the timestep. In the text, I call out how to change this if you want to add timestep conditioning:
We can replicate the training shown above using this model in place of our original one. We need to pass both x and timestep to the model (here I always pass t=0 to show that it works without this timestep conditioning and to keep the sampling code easy, but you can also try feeding in (amount*1000) to get a timestep equivalent from the corruption amount).
To change what the network is predicting (the 'target') this is the relevant line: loss = loss_fn(pred, x) # How close is the output to the true 'clean' x?
Here we compare the output of the network (pred) with the clean image. If you want to predict the noise, you might use loss_fn(pred, noise) (you will also then have to change the sampling method).
Thanks for the notebooks.
I have one comment
In this file https://github.com/huggingface/diffusion-models-class/blob/main/unit1/02_diffusion_models_from_scratch.ipynb
In case I want to make the network predict the clean images, should the pred formula be changed to this by attaching noise_amount?
The text was updated successfully, but these errors were encountered: