nathanReitinger commited on
Commit
fece034
·
verified ·
1 Parent(s): 946f156

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -250,7 +250,7 @@ def TextToImage(Prompt,inference_steps, model):
250
  return [ai_gen, another_one]
251
 
252
  df = pd.DataFrame({
253
- "Model" : ['MNIST-diffusion', 'MNIST-diffusion-oneImage', 'MNIST-GAN', 'MNIST-GAN-noDropout', 'FASHION-diffuion-oneImage', 'FASHION-diffusion'],
254
  "Class (Architecture)" : ['UNet2DModel', 'UNet2DModel', 'Sequential', 'Sequential', 'UNet2DModel', 'UNet2DModel'],
255
  "Dataset Examples" : [60000, 1, 60000, 60000, 1, 60000],
256
  "Notes" : ['Similar architecture as Stable Diffusion, different training data', 'Toy model, purposed to store protected content', 'GANs are not as likely to store protected content', 'less dropout, more copying?', 'same diffusion, different data (more variance in data)','larger diffusion training data, on FASHION dataset']
 
250
  return [ai_gen, another_one]
251
 
252
  df = pd.DataFrame({
253
+ "Model" : ['MNIST-diffusion', 'MNIST-diffusion-oneImage', 'MNIST-GAN', 'MNIST-GAN-noDropout', 'FASHION-diffusion-oneImage', 'FASHION-diffusion'],
254
  "Class (Architecture)" : ['UNet2DModel', 'UNet2DModel', 'Sequential', 'Sequential', 'UNet2DModel', 'UNet2DModel'],
255
  "Dataset Examples" : [60000, 1, 60000, 60000, 1, 60000],
256
  "Notes" : ['Similar architecture as Stable Diffusion, different training data', 'Toy model, purposed to store protected content', 'GANs are not as likely to store protected content', 'less dropout, more copying?', 'same diffusion, different data (more variance in data)','larger diffusion training data, on FASHION dataset']