Update README.md
Browse files
README.md
CHANGED
@@ -213,10 +213,8 @@ This notebook includes the code to convert text to 3D, using an algorithm that i
|
|
213 |
|
214 |
```
|
215 |
repo_id_load= 'lamm-mit/SD2x-leaf-inspired'
|
216 |
-
input_image=text_to_image_SD2x (base_model=repo_id_load,
|
217 |
-
|
218 |
-
prompt = "Small chair that resembles a <leaf microstructure>.",
|
219 |
-
negative_prompt="" )
|
220 |
display (input_image)
|
221 |
processed_image, mv_images, mv_show_images= generate_multiviews (input_image, seed=None)
|
222 |
display (mv_show_images)
|
@@ -234,10 +232,8 @@ In this example, we generated a 3D model and created a physical sample using add
|
|
234 |
|
235 |
```
|
236 |
repo_id_load= 'lamm-mit/SD2x-leaf-inspired'
|
237 |
-
input_image=text_to_image_SD2x (base_model=repo_id_load,
|
238 |
-
|
239 |
-
prompt = "a conch shell on black background that resembles a <leaf microstructure>, high quality",
|
240 |
-
negative_prompt="" )
|
241 |
display (input_image)
|
242 |
processed_image, mv_images, mv_show_images= generate_multiviews (input_image, seed=None)
|
243 |
display (mv_show_images)
|
|
|
213 |
|
214 |
```
|
215 |
repo_id_load= 'lamm-mit/SD2x-leaf-inspired'
|
216 |
+
input_image=text_to_image_SD2x (base_model=repo_id_load, n_steps=75, guidance_scale=15,
|
217 |
+
prompt = "Small chair that resembles a <leaf microstructure>.", negative_prompt="" )
|
|
|
|
|
218 |
display (input_image)
|
219 |
processed_image, mv_images, mv_show_images= generate_multiviews (input_image, seed=None)
|
220 |
display (mv_show_images)
|
|
|
232 |
|
233 |
```
|
234 |
repo_id_load= 'lamm-mit/SD2x-leaf-inspired'
|
235 |
+
input_image=text_to_image_SD2x (base_model=repo_id_load, n_steps=50, guidance_scale=15,
|
236 |
+
prompt = "a conch shell on black background that resembles a <leaf microstructure>, high quality", negative_prompt="" )
|
|
|
|
|
237 |
display (input_image)
|
238 |
processed_image, mv_images, mv_show_images= generate_multiviews (input_image, seed=None)
|
239 |
display (mv_show_images)
|