Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushikjadhav01 committed Jan 1, 2024
1 parent fc8fbd9 commit a544e32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def uploaded_chest():
# filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], 'upload_chest.jpg'))

resnet_chest = load_model('models/resnet_chest.h5')
vgg_chest = load_model('models/vgg_chest.h5')
resnet_chest = load_model('models/resnet50.h5')
vgg_chest = load_model('models/resnet50.h5')
inception_chest = load_model('models/inceptionv3_chest.h5')
xception_chest = load_model('models/xception_chest.h5')

Expand Down Expand Up @@ -198,4 +198,4 @@ def uploaded_ct():

# if __name__ == '__main__':
# app.secret_key = ".."
# app.run()
# app.run()

0 comments on commit a544e32

Please sign in to comment.