Edit model card

DreamBooth model for the carbonara concept trained by dacquaviva on the dacquaviva/carbonara dataset.

This is a Stable Diffusion model fine-tuned on the carbonara concept with DreamBooth. It can be used by modifying the instance_prompt: a photo of carbonara pasta

This model was created as part of the DreamBooth Hackathon 🔥. Visit the organisation page for instructions on how to take part!

Description

This is a Stable Diffusion model fine-tuned on pasta carbonara images for the food theme.

Spaghetti Carbonara, one of the most famous Pasta Recipes of Roman Cuisine, is made only with 5 simple ingredients: spaghetti seasoned with browned guanciale, black pepper, pecorino Romano and beaten eggs.

In the authentic Italian recipe for carbonara, the ingredients are very few and of excellent quality. The high quality of ingredients is a necessary condition for the success of this recipe.

In spite of many beliefs, the ingredients of the traditional recipe are only 5: guanciale, pecorino Romano, eggs, pepper and spaghetti. To make the best carbonara of your life, you don’t need any other ingredients, so DO NOT USE garlic, parsley, onion, cream, milk, parmigiano, pancetta, bacon. :).

Examples of generated images:

carbonara pasta with view of roman colosseum carbonara pasta with view of roman colosseum supermatio eating carbonara pasta at the roman colosseum
supermario eating carbonara pasta pope francis eating carbonara pasta pope francis eating carbonara pasta
carbonara pasta with panoramic view of rome at sunset carbonara pasta with panoramic view of rome at sunset painting of vespa bike next to a carbonara pasta

Usage

from diffusers import StableDiffusionPipeline

prompt = "carbonara pasta with panoramic view of rome at sunset"
pipeline = StableDiffusionPipeline.from_pretrained('dacquaviva/carbonara-pasta').to("cuda")
image = pipeline(prompt, num_inference_steps=50, guidance_scale=7.5).images[0]
image.save("./image.png")
Downloads last month
7