From 63450b466dbfd487c184acd31624c45a5e7758a0 Mon Sep 17 00:00:00 2001 From: ProGamerGov Date: Sat, 30 Apr 2022 09:18:13 -0600 Subject: [PATCH] Fix spelling and grammatical errors --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fec5898..b0f16a6 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ clip = CLIP( use_all_token_embeds = True, # whether to use fine-grained contrastive learning (FILIP) decoupled_contrastive_learning = True, # use decoupled contrastive learning (DCL) objective function, removing positive pairs from the denominator of the InfoNCE loss (CLOOB + DCL) extra_latent_projection = True, # whether to use separate projections for text-to-image vs image-to-text comparisons (CLOOB) - use_visual_ssl = True, # whether to do self supervised learning on iages + use_visual_ssl = True, # whether to do self supervised learning on images visual_ssl_type = 'simclr', # can be either 'simclr' or 'simsiam', depending on using DeCLIP or SLIP use_mlm = False, # use masked language learning (MLM) on text (DeCLIP) text_ssl_loss_weight = 0.05, # weight for text MLM loss @@ -616,7 +616,7 @@ clip = CLIP( # 3 unets for the decoder (a la cascading DDPM) # first two unets are doing latent diffusion -# vqgan-vae must be trained before hand +# vqgan-vae must be trained beforehand vae1 = VQGanVAE( dim = 32,