penpen commited on
Commit
b73d2b3
·
1 Parent(s): 61d6774

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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('age-transformation/large-aging-model.h5',map_location=torch.device(device)))
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="Input Age")
188
- output_age = gr.Slider(label="Output Age")
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="Image Crop and Process").launch(debug=True)
 
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)