Advertisement
Guest User

Untitled

a guest
May 5th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. in code ro vared mikonam
  2. =========================
  3.  
  4. # the parameters are a list of [weights, biases]
  5. filters = net.params['conv2'][0].data
  6. vis_square(filters.transpose(0, 2, 3, 1))
  7.  
  8.  
  9. in error ro mide :
  10. =================
  11.  
  12.  
  13. ---------------------------------------------------------------------------
  14. TypeError Traceback (most recent call last)
  15. <ipython-input-15-0eecc49218be> in <module>()
  16. 1 # the parameters are a list of [weights, biases]
  17. 2 filters = net.params['conv2'][0].data
  18. ----> 3 vis_square(filters.transpose(0, 2, 3, 1))
  19.  
  20. <ipython-input-12-e559bc2cc0a3> in vis_square(data)
  21. 17 data = data.reshape((n * data.shape[1], n * data.shape[3]) + data.shape[4:])
  22. 18
  23. ---> 19 plt.imshow(data); plt.axis('off')
  24.  
  25. C:\Anaconda2\lib\site-packages\matplotlib\pyplot.pyc in imshow(X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, shape, filternorm, filterrad, imlim, resample, url, hold, data, **kwargs)
  26. 3020 filternorm=filternorm, filterrad=filterrad,
  27. 3021 imlim=imlim, resample=resample, url=url, data=data,
  28. -> 3022 **kwargs)
  29. 3023 finally:
  30. 3024 ax.hold(washold)
  31.  
  32. C:\Anaconda2\lib\site-packages\matplotlib\__init__.pyc in inner(ax, *args, **kwargs)
  33. 1809 warnings.warn(msg % (label_namer, func.__name__),
  34. 1810 RuntimeWarning, stacklevel=2)
  35. -> 1811 return func(ax, *args, **kwargs)
  36. 1812 pre_doc = inner.__doc__
  37. 1813 if pre_doc is None:
  38.  
  39. C:\Anaconda2\lib\site-packages\matplotlib\axes\_axes.pyc in imshow(self, X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, shape, filternorm, filterrad, imlim, resample, url, **kwargs)
  40. 4945 resample=resample, **kwargs)
  41. 4946
  42. -> 4947 im.set_data(X)
  43. 4948 im.set_alpha(alpha)
  44. 4949 if im.get_clip_path() is None:
  45.  
  46. C:\Anaconda2\lib\site-packages\matplotlib\image.pyc in set_data(self, A)
  47. 451 if (self._A.ndim not in (2, 3) or
  48. 452 (self._A.ndim == 3 and self._A.shape[-1] not in (3, 4))):
  49. --> 453 raise TypeError("Invalid dimensions for image data")
  50. 454
  51. 455 self._imcache = None
  52.  
  53. TypeError: Invalid dimensions for image data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement