Spaces:
Runtime error
Runtime error
Merge branch 'main' of https://huggingface.co/spaces/nathanReitinger/modelProblems
Browse files
app.py
CHANGED
@@ -251,7 +251,7 @@ def TextToImage(Prompt,inference_steps, model):
|
|
251 |
return [ai_gen, another_one]
|
252 |
|
253 |
df = pd.DataFrame({
|
254 |
-
"Model" : ['MNIST-diffusion', 'MNIST-diffusion-oneImage', 'MNIST-GAN', 'MNIST-GAN-noDropout', 'FASHION-
|
255 |
"Class (Architecture)" : ['UNet2DModel', 'UNet2DModel', 'Sequential', 'Sequential', 'UNet2DModel', 'UNet2DModel'],
|
256 |
"Dataset Examples" : [60000, 1, 60000, 60000, 1, 60000],
|
257 |
"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']
|
|
|
251 |
return [ai_gen, another_one]
|
252 |
|
253 |
df = pd.DataFrame({
|
254 |
+
"Model" : ['MNIST-diffusion', 'MNIST-diffusion-oneImage', 'MNIST-GAN', 'MNIST-GAN-noDropout', 'FASHION-diffusion-oneImage', 'FASHION-diffusion'],
|
255 |
"Class (Architecture)" : ['UNet2DModel', 'UNet2DModel', 'Sequential', 'Sequential', 'UNet2DModel', 'UNet2DModel'],
|
256 |
"Dataset Examples" : [60000, 1, 60000, 60000, 1, 60000],
|
257 |
"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']
|