Skip to content
Snippets Groups Projects
Commit 9d751e4e authored by Sebastian Nickels's avatar Sebastian Nickels
Browse files

Fixed another bug

parent 1ded4b88
No related branches found
No related tags found
1 merge request!23Added Unroll-related features and layers
Pipeline #203325 failed
......@@ -11,7 +11,7 @@
attention_resized = np.resize(attention.asnumpy(), (8, 8))
ax = fig.add_subplot(max_length//3, max_length//4, l+1)
ax.set_title(dict[int(mx.nd.slice_axis(mx.nd.argmax(outputs[l+1], axis=1), axis=0, begin=0, end=1).asscalar())])
img = ax.imshow(test_images[0+batch_size*(batch_i)])
img = ax.imshow(test_images[0+test_batch_size*(batch_i)])
ax.imshow(attention_resized, cmap='gray', alpha=0.6, extent=img.get_extent())
......
......@@ -17,7 +17,7 @@
attention_resized = np.resize(attention.asnumpy(), (8, 8))
ax = fig.add_subplot(max_length//3, max_length//4, l+1)
ax.set_title(dict[int(labels[l+1][0].asscalar())])
img = ax.imshow(train_images[0+batch_size*(batch_i)])
img = ax.imshow(train_images[0+test_batch_size*(batch_i)])
ax.imshow(attention_resized, cmap='gray', alpha=0.6, extent=img.get_extent())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment