Guest User

Untitled

a guest
Apr 21st, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.69 KB | None | 0 0
  1. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib__init__.py in
  2. import_module(name, package)
  3. 125 level += 1
  4. --> 126 return _bootstrap._gcd_import(name[level:], package, level)
  5. 127
  6.  
  7. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap.py
  8. in _gcd_import(name, package, level)
  9.  
  10. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap.py in
  11. _find_and_load(name, import_)
  12.  
  13. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap.py in
  14. _find_and_load_unlocked(name, import_)
  15.  
  16. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap.py in
  17. _load_unlocked(spec)
  18.  
  19. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap.py in
  20. module_from_spec(spec)
  21.  
  22.  
  23.  
  24.  
  25. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap_external
  26. .py in create_module(self, spec)
  27.  
  28. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib_bootstrap.py in _`enter code here`call_with_frames_removed(f, *args, **kwds)
  29.  
  30. ImportError: DLL load failed: The specified module could not be found.
  31.  
  32. During handling of the above exception, another exception occurred:
  33.  
  34. ModuleNotFoundError Traceback (most recent call last)
  35. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow.py in <module>()
  36. 40 sys.setdlopenflags(_default_dlopen_flags | ctypes.RTLD_GLOBAL)
  37. ---> 41 from tensorflow.python.pywrap_tensorflow_internal import *
  38. 42 from tensorflow.python.pywrap_tensorflow_internal import __version__
  39.  
  40. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow_internal.py in <module>()
  41. 20 return importlib.import_module('_pywrap_tensorflow_internal')
  42. ---> 21 _pywrap_tensorflow_internal = swig_import_helper()
  43. 22 del swig_import_helper
  44.  
  45. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow_internal.py in swig_import_helper()
  46. 19 except ImportError:
  47. ---> 20 return importlib.import_module('_pywrap_tensorflow_internal')
  48. 21 _pywrap_tensorflow_internal = swig_import_helper()
  49.  
  50. ~AppDataLocalcondacondaenvsDeepLearninglibimportlib__init__.py in import_module(name, package)
  51. 125 level += 1
  52. --> 126 return _bootstrap._gcd_import(name[level:], package, level)
  53. 127
  54.  
  55. ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'
  56.  
  57. During handling of the above exception, another exception occurred:
  58.  
  59. ImportError Traceback (most recent call last)
  60. <ipython-input-1-88d96843a926> in <module>()
  61. ----> 1 import keras
  62.  
  63. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packageskeras__init__.py in <module>()
  64. 1 from __future__ import absolute_import
  65. 2
  66. ----> 3 from . import utils
  67. 4 from . import activations
  68. 5 from . import applications
  69.  
  70. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packageskerasutils__init__.py in <module>()
  71. 4 from . import data_utils
  72. 5 from . import io_utils
  73. ----> 6 from . import conv_utils
  74. 7
  75. 8 # Globally-importable utils.
  76.  
  77. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packageskerasutilsconv_utils.py in <module>()
  78. 7 from six.moves import range
  79. 8 import numpy as np
  80. ----> 9 from .. import backend as K
  81. 10
  82. 11
  83.  
  84. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packageskerasbackend__init__.py in <module>()
  85. 82 elif _BACKEND == 'tensorflow':
  86. 83 sys.stderr.write('Using TensorFlow backend.n')
  87. ---> 84 from .tensorflow_backend import *
  88. 85 else:
  89. 86 raise ValueError('Unknown backend: ' + str(_BACKEND))
  90.  
  91. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packageskerasbackendtensorflow_backend.py in <module>()
  92. 3 from __future__ import print_function
  93. 4
  94. ----> 5 import tensorflow as tf
  95. 6 from tensorflow.python.training import moving_averages
  96. 7 from tensorflow.python.ops import tensor_array_ops
  97.  
  98. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflow__init__.py in <module>()
  99. 22
  100. 23 # pylint: disable=wildcard-import
  101. ---> 24 from tensorflow.python import *
  102. 25 # pylint: enable=wildcard-import
  103. 26
  104.  
  105. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpython__init__.py in <module>()
  106. 49 import numpy as np
  107. 50
  108. ---> 51 from tensorflow.python import pywrap_tensorflow
  109. 52
  110. 53 # Protocol buffers
  111.  
  112. ~AppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow.py in <module>()
  113. 50 for some common reasons and solutions. Include the entire stack trace
  114. 51 above this error message when asking for help.""" % traceback.format_exc()
  115. ---> 52 raise ImportError(msg)
  116. 53
  117. 54 # pylint: enable=wildcard-import,g-import-not-at-top,unused-import,line-too-long
  118.  
  119. ImportError: Traceback (most recent call last):
  120. File "C:UsersJ.A.R.V.I.SAppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 18, in swig_import_helper
  121. return importlib.import_module(mname)
  122. File "C:UsersJ.A.R.V.I.SAppDataLocalcondacondaenvsDeepLearninglibimportlib__init__.py", line 126, in import_module
  123. return _bootstrap._gcd_import(name[level:], package, level)
  124. File "<frozen importlib._bootstrap>", line 994, in _gcd_import
  125. File "<frozen importlib._bootstrap>", line 971, in _find_and_load
  126. File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
  127. File "<frozen importlib._bootstrap>", line 658, in _load_unlocked
  128. File "<frozen importlib._bootstrap>", line 571, in module_from_spec
  129. File "<frozen importlib._bootstrap_external>", line 922, in create_module
  130. File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  131. ImportError: DLL load failed: The specified module could not be found.
  132.  
  133. During handling of the above exception, another exception occurred:
  134.  
  135. Traceback (most recent call last):
  136. File "C:UsersJ.A.R.V.I.SAppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow.py", line 41, in <module>
  137. from tensorflow.python.pywrap_tensorflow_internal import *
  138. File "C:UsersJ.A.R.V.I.SAppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 21, in <module>
  139. _pywrap_tensorflow_internal = swig_import_helper()
  140. File "C:UsersJ.A.R.V.I.SAppDataLocalcondacondaenvsDeepLearninglibsite-packagestensorflowpythonpywrap_tensorflow_internal.py", line 20, in swig_import_helper
  141. return importlib.import_module('_pywrap_tensorflow_internal')
  142. File "C:UsersJ.A.R.V.I.SAppDataLocalcondacondaenvsDeepLearninglibimportlib__init__.py", line 126, in import_module
  143. return _bootstrap._gcd_import(name[level:], package, level)
  144. ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'
  145.  
  146.  
  147. Failed to load the native TensorFlow runtime.
Add Comment
Please, Sign In to add comment