Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.98 KB | None | 0 0
  1. Using gpu device 3: Tesla K40m (CNMeM is disabled, cuDNN 5004)
  2. /home/anton-fr/.local/lib/python3.5/site-packages/theano/tensor/signal/downsample.py:6: UserWarning: downsample module has been moved to the theano.tensor.signal.pool module.
  3. "downsample module has been moved to the theano.tensor.signal.pool module.")
  4. model loaded, there are 51 sets of params
  5. compiling optimizers...
  6. finished, took 48.406128 sec
  7. optimizers in use: adam_0.01, sgd_0.005, sgd_0.0025, sgd_0.00125, sgd_0.000625, sgd_0.000313, sgd_0.000156, sgd_0.000078, sgd_0.000039, sgd_0.00002
  8. loading corpus from train.sample
  9. init complete
  10.  
  11. running test with initial params...
  12. Traceback (most recent call last):
  13. File "theano/scan_module/scan_perform.pyx", line 397, in theano.scan_module.scan_perform.perform (/place/home/anton-fr/.theano/compiledir_Linux-4.4--generic-x86_64-with-Ubuntu-16.04-xenial-x86_64-3.5.1+-64/scan_perform/mod.cpp:4193)
  14. ValueError: GpuReshape: cannot reshape input of shape (1, 400, 600) to shape (1, 100, 10, 600).
  15.  
  16. During handling of the above exception, another exception occurred:
  17.  
  18. Traceback (most recent call last):
  19. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/compile/function_module.py", line 859, in __call__
  20. outputs = self.fn()
  21. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/scan_module/scan_op.py", line 951, in rval
  22. r = p(n, [x[0] for x in i], o)
  23. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/scan_module/scan_op.py", line 940, in <lambda>
  24. self, node)
  25. File "theano/scan_module/scan_perform.pyx", line 405, in theano.scan_module.scan_perform.perform (/place/home/anton-fr/.theano/compiledir_Linux-4.4--generic-x86_64-with-Ubuntu-16.04-xenial-x86_64-3.5.1+-64/scan_perform/mod.cpp:4316)
  26. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/gof/link.py", line 314, in raise_with_op
  27. reraise(exc_type, exc_value, exc_trace)
  28. File "/home/anton-fr/.local/lib/python3.5/site-packages/six.py", line 685, in reraise
  29. raise value.with_traceback(tb)
  30. File "theano/scan_module/scan_perform.pyx", line 397, in theano.scan_module.scan_perform.perform (/place/home/anton-fr/.theano/compiledir_Linux-4.4--generic-x86_64-with-Ubuntu-16.04-xenial-x86_64-3.5.1+-64/scan_perform/mod.cpp:4193)
  31. ValueError: GpuReshape: cannot reshape input of shape (1, 400, 600) to shape (1, 100, 10, 600).
  32. Apply node that caused the error: GpuReshape{4}(GpuBatchedDot{stream_threshold=650}.0, TensorConstant{[ 1 100 10 600]})
  33. Toposort index: 60
  34. Inputs types: [CudaNdarrayType(float32, (True, False, False)), TensorType(int64, vector)]
  35. Inputs shapes: [(1, 400, 600), (4,)]
  36. Inputs strides: [(0, 600, 1), (8,)]
  37. Inputs values: ['not shown', array([ 1, 100, 10, 600])]
  38. Outputs clients: [[GpuElemwise{ScalarSigmoid}[(0, 0)](GpuReshape{4}.0)]]
  39.  
  40. HINT: Re-running with most Theano optimization disabled could give you a back-trace of when this node was created. This can be done with by setting the Theano flag 'optimizer=fast_compile'. If that does not work, Theano optimizations can be disabled with 'optimizer=None'.
  41. HINT: Use the Theano flag 'exception_verbosity=high' for a debugprint and storage map footprint of this apply node.
  42.  
  43. During handling of the above exception, another exception occurred:
  44.  
  45. Traceback (most recent call last):
  46. File "/usr/lib/python3.5/runpy.py", line 184, in _run_module_as_main
  47. "__main__", mod_spec)
  48. File "/usr/lib/python3.5/runpy.py", line 85, in _run_code
  49. exec(code, run_globals)
  50. File "/opt/anton-fr/nnet/nnet/run/srl/run.py", line 310, in <module>
  51. SRLRunner().run()
  52. File "/opt/anton-fr/nnet/nnet/run/runner.py", line 160, in run
  53. dbg_print_rate=a.dbg_print_rate
  54. File "/opt/anton-fr/nnet/nnet/training.py", line 15, in train
  55. tester.run(model)
  56. File "/opt/anton-fr/nnet/nnet/testing.py", line 151, in run
  57. loss, errors, errors_w = self.compute_error(model)
  58. File "/opt/anton-fr/nnet/nnet/testing.py", line 173, in compute_error
  59. loss, e, e_w = self.error_computer.compute(model, batch)
  60. File "/opt/anton-fr/nnet/nnet/run/srl/run.py", line 137, in compute
  61. predictions = model.predict(*model_input[:-1])
  62. File "/opt/anton-fr/nnet/nnet/models/srl.py", line 191, in predict
  63. return self.compute_probs(*args)
  64. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/compile/function_module.py", line 871, in __call__
  65. storage_map=getattr(self.fn, 'storage_map', None))
  66. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/gof/link.py", line 314, in raise_with_op
  67. reraise(exc_type, exc_value, exc_trace)
  68. File "/home/anton-fr/.local/lib/python3.5/site-packages/six.py", line 685, in reraise
  69. raise value.with_traceback(tb)
  70. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/compile/function_module.py", line 859, in __call__
  71. outputs = self.fn()
  72. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/scan_module/scan_op.py", line 951, in rval
  73. r = p(n, [x[0] for x in i], o)
  74. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/scan_module/scan_op.py", line 940, in <lambda>
  75. self, node)
  76. File "theano/scan_module/scan_perform.pyx", line 405, in theano.scan_module.scan_perform.perform (/place/home/anton-fr/.theano/compiledir_Linux-4.4--generic-x86_64-with-Ubuntu-16.04-xenial-x86_64-3.5.1+-64/scan_perform/mod.cpp:4316)
  77. File "/home/anton-fr/.local/lib/python3.5/site-packages/theano/gof/link.py", line 314, in raise_with_op
  78. reraise(exc_type, exc_value, exc_trace)
  79. File "/home/anton-fr/.local/lib/python3.5/site-packages/six.py", line 685, in reraise
  80. raise value.with_traceback(tb)
  81. File "theano/scan_module/scan_perform.pyx", line 397, in theano.scan_module.scan_perform.perform (/place/home/anton-fr/.theano/compiledir_Linux-4.4--generic-x86_64-with-Ubuntu-16.04-xenial-x86_64-3.5.1+-64/scan_perform/mod.cpp:4193)
  82. ValueError: GpuReshape: cannot reshape input of shape (1, 400, 600) to shape (1, 100, 10, 600).
  83. Apply node that caused the error: GpuReshape{4}(GpuBatchedDot{stream_threshold=650}.0, TensorConstant{[ 1 100 10 600]})
  84. Toposort index: 60
  85. Inputs types: [CudaNdarrayType(float32, (True, False, False)), TensorType(int64, vector)]
  86. Inputs shapes: [(1, 400, 600), (4,)]
  87. Inputs strides: [(0, 600, 1), (8,)]
  88. Inputs values: ['not shown', array([ 1, 100, 10, 600])]
  89. Outputs clients: [[GpuElemwise{ScalarSigmoid}[(0, 0)](GpuReshape{4}.0)]]
  90.  
  91. HINT: Re-running with most Theano optimization disabled could give you a back-trace of when this node was created. This can be done with by setting the Theano flag 'optimizer=fast_compile'. If that does not work, Theano optimizations can be disabled with 'optimizer=None'.
  92. HINT: Use the Theano flag 'exception_verbosity=high' for a debugprint and storage map footprint of this apply node.
  93. Apply node that caused the error: forall_inplace,gpu,scan_fn}(Elemwise{Composite{minimum(minimum(minimum(i0, i1), i2), i3)}}.0, GpuSubtensor{int64:int64:int8}.0, GpuSubtensor{int64:int64:int8}.0, GpuSubtensor{int64:int64:int8}.0, GpuSubtensor{int64:int64:int8}.0, GpuIncSubtensor{InplaceSet;:int64:}.0, GpuIncSubtensor{InplaceSet;:int64:}.0, GpuJoin.0, GpuReshape{3}.0, GpuReshape{3}.0, GpuReshape{3}.0, GpuReshape{3}.0)
  94. Toposort index: 256
  95. Inputs types: [TensorType(int64, scalar), CudaNdarrayType(float32, 3D), CudaNdarrayType(float32, (False, False, True)), CudaNdarrayType(float32, 4D), CudaNdarrayType(float32, 4D), CudaNdarrayType(float32, 3D), CudaNdarrayType(float32, 3D), CudaNdarrayType(float32, matrix), CudaNdarrayType(float32, (True, False, False)), CudaNdarrayType(float32, (True, False, False)), CudaNdarrayType(float32, (True, False, False)), CudaNdarrayType(float32, (True, False, False))]
  96. Inputs shapes: [(), (38, 40, 2400), (38, 40, 1), (38, 40, 1, 200), (38, 40, 1, 200), (21, 40, 600), (38, 40, 600), (600, 2400), (1, 600, 600), (1, 600, 1800), (1, 600, 600), (1, 600, 1800)]
  97. Inputs strides: [(), (96000, 2400, 1), (1, 38, 0), (200, 40000, 0, 1), (200, 40000, 0, 1), (24000, 600, 1), (24000, 600, 1), (2400, 1), (0, 600, 1), (0, 1800, 1), (0, 600, 1), (0, 1800, 1)]
  98. Inputs values: [array(38), 'not shown', 'not shown', 'not shown', 'not shown', 'not shown', 'not shown', 'not shown', 'not shown', 'not shown', 'not shown', 'not shown']
  99. Outputs clients: [[], [GpuSubtensor{int64:int64:int8}(forall_inplace,gpu,scan_fn}.1, ScalarFromTensor.0, ScalarFromTensor.0, Constant{1})]]
  100.  
  101. HINT: Re-running with most Theano optimization disabled could give you a back-trace of when this node was created. This can be done with by setting the Theano flag 'optimizer=fast_compile'. If that does not work, Theano optimizations can be disabled with 'optimizer=None'.
  102. HINT: Use the Theano flag 'exception_verbosity=high' for a debugprint and storage map footprint of this apply node.
  103. <TensorType(float32, matrix)>
  104. <TensorType(float32, matrix)>
  105. <TensorType(float32, matrix)>
  106. <TensorType(float32, matrix)>
  107. <TensorType(float32, matrix)>
  108. <TensorType(float32, matrix)>
  109.  
  110. ERROR Deleting build/framenet_batch_100__1_300_600_500_500_500_1_/out/_best.bin , command failed 2016-09-27 16:36:17
  111.  
  112. ERROR Build error: command failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement