mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
saliency
This commit is contained in:
parent
90b272d0bd
commit
c6d3b4f4c4
@ -97,7 +97,8 @@ class Sketchpad(AbstractInput):
|
||||
im = im.convert('L')
|
||||
if self.invert_colors:
|
||||
im = ImageOps.invert(im)
|
||||
im = preprocessing_utils.resize_and_crop(im, (self.image_width, self.image_height))
|
||||
im = im.resize((self.image_width, self.image_height))
|
||||
# im = preprocessing_utils.resize_and_crop(im, (self.image_width, self.image_height))
|
||||
if self.flatten:
|
||||
array = np.array(im).flatten().reshape(1, self.image_width * self.image_height)
|
||||
else:
|
||||
|
@ -171,11 +171,13 @@ def serve_files_in_background(interface, port, directory_to_serve=None):
|
||||
processed_input = interface.input_interface.preprocess(msg["data"])
|
||||
prediction = interface.predict(processed_input)
|
||||
processed_output = interface.output_interface.postprocess(prediction)
|
||||
output = {"action": "output", "data": processed_output}
|
||||
if interface.saliency is not None:
|
||||
saliency = interface.saliency(interface.model_obj, processed_input)
|
||||
output = {"action": "output", "data": processed_output, "saliency": saliency.tolist()}
|
||||
else:
|
||||
output = {"action": "output", "data": processed_output}
|
||||
import numpy as np
|
||||
saliency = interface.saliency(interface.model_obj, processed_input, prediction)
|
||||
np.save('sal2.npy', saliency)
|
||||
output['saliency'] = saliency.tolist()
|
||||
|
||||
# Prepare return json dictionary.
|
||||
self.wfile.write(json.dumps(output).encode())
|
||||
|
||||
@ -185,11 +187,11 @@ def serve_files_in_background(interface, port, directory_to_serve=None):
|
||||
msg = json.loads(data_string)
|
||||
flag_dir = FLAGGING_DIRECTORY.format(interface.hash)
|
||||
os.makedirs(flag_dir, exist_ok=True)
|
||||
dict = {'input': interface.input_interface.rebuild_flagged(flag_dir, msg),
|
||||
'output': interface.output_interface.rebuild_flagged(flag_dir, msg),
|
||||
'message': msg['data']['message']}
|
||||
output = {'input': interface.input_interface.rebuild_flagged(flag_dir, msg),
|
||||
'output': interface.output_interface.rebuild_flagged(flag_dir, msg),
|
||||
'message': msg['data']['message']}
|
||||
with open(os.path.join(flag_dir, FLAGGING_FILENAME), 'a+') as f:
|
||||
f.write(json.dumps(dict))
|
||||
f.write(json.dumps(output))
|
||||
f.write("\n")
|
||||
|
||||
else:
|
||||
|
1
src/deepexplain
Submodule
1
src/deepexplain
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 6ac43e729dc8db6ce05ca241dfeb35f1c3eb5b0b
|
5
src/pip-delete-this-directory.txt
Normal file
5
src/pip-delete-this-directory.txt
Normal file
@ -0,0 +1,5 @@
|
||||
This file is placed here by pip to indicate the source was put
|
||||
here by pip.
|
||||
|
||||
Once this package is successfully installed this source code will be
|
||||
deleted (unless you remove this file).
|
Loading…
x
Reference in New Issue
Block a user