Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -137,11 +137,11 @@ image = template(
|
|
| 137 |
pipe,
|
| 138 |
prompt="Put a hat on this cat.",
|
| 139 |
seed=0, cfg_scale=4, num_inference_steps=50,
|
| 140 |
-
template_inputs=[{
|
| 141 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 142 |
"prompt": "Put a hat on this cat.",
|
| 143 |
}],
|
| 144 |
-
negative_template_inputs=[{
|
| 145 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 146 |
"prompt": "",
|
| 147 |
}],
|
|
@@ -151,11 +151,11 @@ image = template(
|
|
| 151 |
pipe,
|
| 152 |
prompt="Make the cat turn its head to look to the right.",
|
| 153 |
seed=0, cfg_scale=4, num_inference_steps=50,
|
| 154 |
-
template_inputs=[{
|
| 155 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 156 |
"prompt": "Make the cat turn its head to look to the right.",
|
| 157 |
}],
|
| 158 |
-
negative_template_inputs=[{
|
| 159 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 160 |
"prompt": "",
|
| 161 |
}],
|
|
|
|
| 137 |
pipe,
|
| 138 |
prompt="Put a hat on this cat.",
|
| 139 |
seed=0, cfg_scale=4, num_inference_steps=50,
|
| 140 |
+
template_inputs = [{
|
| 141 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 142 |
"prompt": "Put a hat on this cat.",
|
| 143 |
}],
|
| 144 |
+
negative_template_inputs = [{
|
| 145 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 146 |
"prompt": "",
|
| 147 |
}],
|
|
|
|
| 151 |
pipe,
|
| 152 |
prompt="Make the cat turn its head to look to the right.",
|
| 153 |
seed=0, cfg_scale=4, num_inference_steps=50,
|
| 154 |
+
template_inputs = [{
|
| 155 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 156 |
"prompt": "Make the cat turn its head to look to the right.",
|
| 157 |
}],
|
| 158 |
+
negative_template_inputs = [{
|
| 159 |
"image": Image.open("data/examples/templates/image_reference.jpg"),
|
| 160 |
"prompt": "",
|
| 161 |
}],
|