This commit is contained in:
Abubakar Abid 2019-04-29 10:04:22 -07:00
parent 90b272d0bd
commit c6d3b4f4c4
6 changed files with 18 additions and 9 deletions

View File

@ -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:

View File

@ -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:

BIN
sal2.npy Normal file

Binary file not shown.

1
src/deepexplain Submodule

@ -0,0 +1 @@
Subproject commit 6ac43e729dc8db6ce05ca241dfeb35f1c3eb5b0b

View 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).

BIN
test.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB