diff --git a/README.md b/README.md index 3e4434e..5fafa50 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,27 @@ display(image) ``` ![Godzilla Trial](https://github.com/kuprel/min-dalle/raw/main/examples/godzilla_trial.png) +```python +text = 'a funeral at Whole Foods' +image = model.generate_image(text, seed=10, grid_size=3) +display(image) +``` +![Whole Foods Funeral](https://github.com/kuprel/min-dalle/raw/main/examples/funeral.png) + +```python +text = 'Jesus turning water into wine on Americas Got Talent' +image = model.generate_image(text, seed=2, grid_size=3) +display(image) +``` +![Jesus Water Wine](https://github.com/kuprel/min-dalle/raw/main/examples/jesus.png) + +```python +text = 'cctv footage of Yoda robbing a liquor store' +image = model.generate_image(text, seed=0, grid_size=3) +display(image) +``` +![Yoda](https://github.com/kuprel/min-dalle/raw/main/examples/yoda.png) + ### Command Line diff --git a/examples/funeral.png b/examples/funeral.png new file mode 100644 index 0000000..dfb1d41 Binary files /dev/null and b/examples/funeral.png differ diff --git a/examples/jesus.png b/examples/jesus.png new file mode 100644 index 0000000..f40b519 Binary files /dev/null and b/examples/jesus.png differ diff --git a/examples/yoda.png b/examples/yoda.png new file mode 100644 index 0000000..df8aa52 Binary files /dev/null and b/examples/yoda.png differ