Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -131,7 +131,7 @@ transform_resize = A.Compose([
|
|
131 |
|
132 |
# Load model
|
133 |
generator_model = Generator()
|
134 |
-
generator_model.load_state_dict(torch.load('
|
135 |
generator_model.to(device)
|
136 |
#generator_model.eval()
|
137 |
print("")
|
@@ -184,8 +184,8 @@ output_image = gr.Image(label="Output Image", type="pil")
|
|
184 |
input_image.style(height=512, width=512)
|
185 |
output_image.style(height=512, width=512)
|
186 |
|
187 |
-
input_age = gr.Slider(label="
|
188 |
-
output_age = gr.Slider(label="
|
189 |
|
190 |
|
191 |
# Define the function to be called when the button is pressed
|
@@ -203,4 +203,4 @@ def process_image(input_img,input_age,output_age):
|
|
203 |
|
204 |
|
205 |
# Create the Gradio interface
|
206 |
-
gr.Interface(fn=process_image, inputs=[input_image,input_age,output_age], outputs=output_image, title="
|
|
|
131 |
|
132 |
# Load model
|
133 |
generator_model = Generator()
|
134 |
+
generator_model.load_state_dict(torch.load('large-aging-model.h5',map_location=torch.device(device)))
|
135 |
generator_model.to(device)
|
136 |
#generator_model.eval()
|
137 |
print("")
|
|
|
184 |
input_image.style(height=512, width=512)
|
185 |
output_image.style(height=512, width=512)
|
186 |
|
187 |
+
input_age = gr.Slider(label="Current Age")
|
188 |
+
output_age = gr.Slider(label="Desired Age")
|
189 |
|
190 |
|
191 |
# Define the function to be called when the button is pressed
|
|
|
203 |
|
204 |
|
205 |
# Create the Gradio interface
|
206 |
+
gr.Interface(fn=process_image, inputs=[input_image,input_age,output_age], outputs=output_image, title="Age Transformation").launch(debug=True)
|