update
Browse files- .idea/.gitignore +8 -0
- .idea/WeShopAI-Pose-Generator.iml +8 -0
- .idea/inspectionProfiles/profiles_settings.xml +6 -0
- .idea/misc.xml +4 -0
- .idea/modules.xml +8 -0
- .idea/vcs.xml +6 -0
- app.py +1 -0
- assets/footer.html +72 -0
- assets/title.html +7 -30
.idea/.gitignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Default ignored files
|
| 2 |
+
/shelf/
|
| 3 |
+
/workspace.xml
|
| 4 |
+
# Editor-based HTTP Client requests
|
| 5 |
+
/httpRequests/
|
| 6 |
+
# Datasource local storage ignored files
|
| 7 |
+
/dataSources/
|
| 8 |
+
/dataSources.local.xml
|
.idea/WeShopAI-Pose-Generator.iml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<module type="PYTHON_MODULE" version="4">
|
| 3 |
+
<component name="NewModuleRootManager">
|
| 4 |
+
<content url="file://$MODULE_DIR$" />
|
| 5 |
+
<orderEntry type="jdk" jdkName="py310" jdkType="Python SDK" />
|
| 6 |
+
<orderEntry type="sourceFolder" forTests="false" />
|
| 7 |
+
</component>
|
| 8 |
+
</module>
|
.idea/inspectionProfiles/profiles_settings.xml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<component name="InspectionProjectProfileManager">
|
| 2 |
+
<settings>
|
| 3 |
+
<option name="USE_PROJECT_PROFILE" value="false" />
|
| 4 |
+
<version value="1.0" />
|
| 5 |
+
</settings>
|
| 6 |
+
</component>
|
.idea/misc.xml
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<project version="4">
|
| 3 |
+
<component name="ProjectRootManager" version="2" project-jdk-name="py310" project-jdk-type="Python SDK" />
|
| 4 |
+
</project>
|
.idea/modules.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<project version="4">
|
| 3 |
+
<component name="ProjectModuleManager">
|
| 4 |
+
<modules>
|
| 5 |
+
<module fileurl="file://$PROJECT_DIR$/.idea/WeShopAI-Pose-Generator.iml" filepath="$PROJECT_DIR$/.idea/WeShopAI-Pose-Generator.iml" />
|
| 6 |
+
</modules>
|
| 7 |
+
</component>
|
| 8 |
+
</project>
|
.idea/vcs.xml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<project version="4">
|
| 3 |
+
<component name="VcsDirectoryMappings">
|
| 4 |
+
<mapping directory="" vcs="Git" />
|
| 5 |
+
</component>
|
| 6 |
+
</project>
|
app.py
CHANGED
|
@@ -458,6 +458,7 @@ with gr.Blocks(css=css) as WeShop:
|
|
| 458 |
inputs=[main_image_input, text_description_input, output],
|
| 459 |
elem_id="example-res-images"
|
| 460 |
)
|
|
|
|
| 461 |
main_image_input.upload(
|
| 462 |
fn=preprocess_image,
|
| 463 |
inputs=[main_image_input],
|
|
|
|
| 458 |
inputs=[main_image_input, text_description_input, output],
|
| 459 |
elem_id="example-res-images"
|
| 460 |
)
|
| 461 |
+
gr.HTML(load_description("assets/footer.html"))
|
| 462 |
main_image_input.upload(
|
| 463 |
fn=preprocess_image,
|
| 464 |
inputs=[main_image_input],
|
assets/footer.html
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8"/>
|
| 5 |
+
<title>WeShopAI Fashion Model Pose Change</title>
|
| 6 |
+
<style>
|
| 7 |
+
.content-text {
|
| 8 |
+
text-align: center;
|
| 9 |
+
font-size: 14px;
|
| 10 |
+
padding-right: 20%;
|
| 11 |
+
padding-left: 20%;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
.nav-links a {
|
| 15 |
+
margin: 0 4px;
|
| 16 |
+
font-weight: bold;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
@media (max-width: 767px) {
|
| 20 |
+
.content-text {
|
| 21 |
+
font-size: 12px;
|
| 22 |
+
padding-right: 2%;
|
| 23 |
+
padding-left: 2%;
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
@media (max-width: 450px) {
|
| 28 |
+
.content-text {
|
| 29 |
+
font-size: 12px;
|
| 30 |
+
padding-right: 0;
|
| 31 |
+
padding-left: 0;
|
| 32 |
+
}
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
</style>
|
| 36 |
+
</head>
|
| 37 |
+
<body>
|
| 38 |
+
<div>
|
| 39 |
+
<div>
|
| 40 |
+
<div class="content-text">
|
| 41 |
+
<h4>How It Works: WeShop's Pose Change with Technology Rivaling Nano-Banana AI </h4>
|
| 42 |
+
<p>Experience instant pose change with WeShop's advanced AI,<b> powered by technology comparable to
|
| 43 |
+
Nano-Banana. </b>Upload a starting photo, describe your desired pose, and our AI pose changer delivers a
|
| 44 |
+
naturally transformed image in seconds—enabling seamless change pose in photo AI with exceptional
|
| 45 |
+
quality.</p>
|
| 46 |
+
</div>
|
| 47 |
+
<br>
|
| 48 |
+
<div class="content-text">
|
| 49 |
+
<h4>Introducing WeShop's Pose Change: Revolutionizing Pose Editing with Nano-Banana-Comparable AI</h4>
|
| 50 |
+
<p>
|
| 51 |
+
WeShop's Pose Change delivers advanced pose transformation<b> with AI capabilities comparable to
|
| 52 |
+
Nano-Banana. </b>This HERO technology enables seamless pose transfer with exceptional image synthesis
|
| 53 |
+
quality. Through conversational editing<b> that rivals Nano-Banana's capabilities</b>, it ensures
|
| 54 |
+
consistent
|
| 55 |
+
results while preserving clothing characteristics. WeShop's Pose Change revolutionizes person image
|
| 56 |
+
modification with professional image generation for dynamic pose variation.<a
|
| 57 |
+
href="https://www.weshop.ai/tools/nano-banana?utm_source=huggingface&utm_medium=weshop_pose_change&utm_campaign=nano_banana_promo&utm_content=description_text&utm_term=ai_product"
|
| 58 |
+
style="font-weight: bold;" target="_blank"> Meet Nano Banana AI </a>
|
| 59 |
+
</p>
|
| 60 |
+
</div>
|
| 61 |
+
<br>
|
| 62 |
+
<div class="content-text">
|
| 63 |
+
<h4>Disclaimer: </h4>
|
| 64 |
+
<p>The WeShopAI Fashion Model Pose Change Demo on
|
| 65 |
+
HuggingFace space is free for trials. Any solicitation for payment
|
| 66 |
+
based on the free features we provide on HuggingFace Space is a
|
| 67 |
+
fraudulent act. Beware of scams and do not fall victim to deceit.</p>
|
| 68 |
+
</div>
|
| 69 |
+
</div>
|
| 70 |
+
</div>
|
| 71 |
+
</body>
|
| 72 |
+
</html>
|
assets/title.html
CHANGED
|
@@ -85,35 +85,19 @@
|
|
| 85 |
/></a>
|
| 86 |
</div>
|
| 87 |
<br/>
|
|
|
|
| 88 |
<div class="content-text">
|
| 89 |
-
<
|
| 90 |
-
<p>Experience instant pose change with WeShop's advanced AI, powered by Nano-Banana technology. Upload a
|
| 91 |
-
starting photo, describe your desired pose, and our AI pose changer delivers a naturally transformed
|
| 92 |
-
image in seconds—enabling seamless change pose in photo AI with exceptional quality.</p>
|
| 93 |
-
</div>
|
| 94 |
-
<br>
|
| 95 |
-
<div class="content-text">
|
| 96 |
-
<strong>Unlock Commercial-Grade Pose Change API with WeShop</strong>
|
| 97 |
<p>
|
| 98 |
-
Discover robust Pose Change API capabilities tailored for business at weshop.ai. Leverage
|
| 99 |
-
|
|
|
|
| 100 |
<a href="https://open.weshop.ai/authorization/apikey" style="font-weight: bold;" target="_blank"> Get
|
| 101 |
-
your
|
| 102 |
-
API key </a>to integrate and scale dynamic pose transformation with WeShop.
|
| 103 |
-
</p>
|
| 104 |
-
</div>
|
| 105 |
-
<br>
|
| 106 |
-
<div class="content-text">
|
| 107 |
-
<strong>Introducing WeShop's Pose Change & Nano-Banana AI: Revolutionizing Pose Editing</strong>
|
| 108 |
-
<p>
|
| 109 |
-
WeShop's Pose Change delivers advanced pose transformation powered by Nano-Banana AI. This HERO
|
| 110 |
-
technology enables seamless pose transfer with exceptional image synthesis quality. Through
|
| 111 |
-
conversational editing powered by Nano-Banana, it ensures consistent results while preserving clothing
|
| 112 |
-
characteristics. WeShop's Pose Change revolutionizes person image modification with professional image
|
| 113 |
-
generation for dynamic pose variation.<a href="https://www.weshop.ai/tools/nano-banana?utm_source=huggingface&utm_medium=weshop_pose_change&utm_campaign=nano_banana_promo&utm_content=description_text&utm_term=ai_product" style="font-weight: bold;" target="_blank"> Meet Nano Banana AI </a>
|
| 114 |
</p>
|
| 115 |
</div>
|
| 116 |
<br>
|
|
|
|
| 117 |
<div class="content-text">
|
| 118 |
Discover our other powerful AI applications on WeShop AI Spaces at Hugging Face:
|
| 119 |
<span class="nav-links">
|
|
@@ -128,13 +112,6 @@
|
|
| 128 |
</span>
|
| 129 |
</div>
|
| 130 |
<br/>
|
| 131 |
-
<div class="content-text">
|
| 132 |
-
<strong>Disclaimer: </strong>
|
| 133 |
-
<p>The WeShopAI Fashion Model Pose Change Demo on
|
| 134 |
-
HuggingFace space is free for trials. Any solicitation for payment
|
| 135 |
-
based on the free features we provide on HuggingFace Space is a
|
| 136 |
-
fraudulent act. Beware of scams and do not fall victim to deceit.</p>
|
| 137 |
-
</div>
|
| 138 |
</div>
|
| 139 |
</div>
|
| 140 |
</body>
|
|
|
|
| 85 |
/></a>
|
| 86 |
</div>
|
| 87 |
<br/>
|
| 88 |
+
|
| 89 |
<div class="content-text">
|
| 90 |
+
<h4>Unlock Commercial-Grade Pose Change API with WeShop</h4>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
<p>
|
| 92 |
+
Discover robust Pose Change API capabilities tailored for business at weshop.ai. Leverage<b> tools
|
| 93 |
+
enhanced
|
| 94 |
+
by our advanced AI, rivaling Nano-Banana</b>, for professional change pose of image tasks.
|
| 95 |
<a href="https://open.weshop.ai/authorization/apikey" style="font-weight: bold;" target="_blank"> Get
|
| 96 |
+
your API key </a>to integrate and scale dynamic pose transformation with WeShop.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
</p>
|
| 98 |
</div>
|
| 99 |
<br>
|
| 100 |
+
|
| 101 |
<div class="content-text">
|
| 102 |
Discover our other powerful AI applications on WeShop AI Spaces at Hugging Face:
|
| 103 |
<span class="nav-links">
|
|
|
|
| 112 |
</span>
|
| 113 |
</div>
|
| 114 |
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
</div>
|
| 116 |
</div>
|
| 117 |
</body>
|