guided-diffusion-keras icon indicating copy to clipboard operation
guided-diffusion-keras copied to clipboard

Text to Image Diffusion Models in Keras

Results 5 guided-diffusion-keras issues
Sort by recently updated
recently updated
newest added

I could'nt manage to train on a custom dataset, many parts in the code in the sample training call external dataset. Is it possible to have a sample training code...

When running the code for training using pytorch, I am getting this error. I am refering to the code in the Kaggle notebook Node: 'residual_unet/conv2d/Conv2D' DNN library is not found....

The checkpoint of your pre-train model is not loading for me. There is an error message stating "bad marshal data". I think there is an inconsistency between the versions of...

hello, I want to ask this code in `diffuser.py` why it can speed inference? could you explain it to me? ``` nn_inputs = [np.vstack([x_t, x_t]), np.vstack([noise_in, noise_in]), np.vstack([label, label_empty_ohe])] ```