Advertisement
ZeroCool22

FaceSwap_GAN_v2_train.ipynb

Feb 8th, 2018
15,067
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 7.18 KB | None | 0 0
  1. ---------------------------------------------------------------------------
  2. ImportError                               Traceback (most recent call last)
  3. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py in swig_import_helper()
  4.      17         try:
  5. ---> 18             return importlib.import_module(mname)
  6.      19         except ImportError:
  7.  
  8. C:\ProgramData\Anaconda3\lib\importlib\__init__.py in import_module(name, package)
  9.     125             level += 1
  10. --> 126     return _bootstrap._gcd_import(name[level:], package, level)
  11.     127
  12.  
  13. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap.py in _gcd_import(name, package, level)
  14.  
  15. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap.py in _find_and_load(name, import_)
  16.  
  17. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap.py in _find_and_load_unlocked(name, import_)
  18.  
  19. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap.py in _load_unlocked(spec)
  20.  
  21. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap.py in module_from_spec(spec)
  22.  
  23. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap_external.py in create_module(self, spec)
  24.  
  25. C:\ProgramData\Anaconda3\lib\importlib\_bootstrap.py in _call_with_frames_removed(f, *args, **kwds)
  26.  
  27. ImportError: DLL load failed: No se puede encontrar el módulo especificado.
  28.  
  29. During handling of the above exception, another exception occurred:
  30.  
  31. ModuleNotFoundError                       Traceback (most recent call last)
  32. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow.py in <module>()
  33.      57
  34. ---> 58   from tensorflow.python.pywrap_tensorflow_internal import *
  35.      59   from tensorflow.python.pywrap_tensorflow_internal import __version__
  36.  
  37. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py in <module>()
  38.      20             return importlib.import_module('_pywrap_tensorflow_internal')
  39. ---> 21     _pywrap_tensorflow_internal = swig_import_helper()
  40.      22     del swig_import_helper
  41.  
  42. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py in swig_import_helper()
  43.      19         except ImportError:
  44. ---> 20             return importlib.import_module('_pywrap_tensorflow_internal')
  45.      21     _pywrap_tensorflow_internal = swig_import_helper()
  46.  
  47. C:\ProgramData\Anaconda3\lib\importlib\__init__.py in import_module(name, package)
  48.     125             level += 1
  49. --> 126     return _bootstrap._gcd_import(name[level:], package, level)
  50.     127
  51.  
  52. ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'
  53.  
  54. During handling of the above exception, another exception occurred:
  55.  
  56. ImportError                               Traceback (most recent call last)
  57. <ipython-input-1-3b3c8d0b8343> in <module>()
  58. ----> 1 from keras.models import Sequential, Model
  59.       2 from keras.layers import *
  60.       3 from keras.layers.advanced_activations import LeakyReLU
  61.       4 from keras.activations import relu
  62.       5 from keras.initializers import RandomNormal
  63.  
  64. C:\ProgramData\Anaconda3\lib\site-packages\keras\__init__.py in <module>()
  65.       1 from __future__ import absolute_import
  66.       2
  67. ----> 3 from . import utils
  68.       4 from . import activations
  69.       5 from . import applications
  70.  
  71. C:\ProgramData\Anaconda3\lib\site-packages\keras\utils\__init__.py in <module>()
  72.       4 from . import data_utils
  73.       5 from . import io_utils
  74. ----> 6 from . import conv_utils
  75.       7
  76.       8 # Globally-importable utils.
  77.  
  78. C:\ProgramData\Anaconda3\lib\site-packages\keras\utils\conv_utils.py in <module>()
  79.       1 from six.moves import range
  80.       2 import numpy as np
  81. ----> 3 from .. import backend as K
  82.       4
  83.       5
  84.  
  85. C:\ProgramData\Anaconda3\lib\site-packages\keras\backend\__init__.py in <module>()
  86.      81 elif _BACKEND == 'tensorflow':
  87.      82     sys.stderr.write('Using TensorFlow backend.\n')
  88. ---> 83     from .tensorflow_backend import *
  89.      84 else:
  90.      85     raise ValueError('Unknown backend: ' + str(_BACKEND))
  91.  
  92. C:\ProgramData\Anaconda3\lib\site-packages\keras\backend\tensorflow_backend.py in <module>()
  93. ----> 1 import tensorflow as tf
  94.       2 from tensorflow.python.training import moving_averages
  95.       3 from tensorflow.python.ops import tensor_array_ops
  96.       4 from tensorflow.python.ops import control_flow_ops
  97.       5 from tensorflow.python.ops import functional_ops
  98.  
  99. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\__init__.py in <module>()
  100.      22
  101.      23 # pylint: disable=wildcard-import
  102. ---> 24 from tensorflow.python import *
  103.      25 # pylint: enable=wildcard-import
  104.      26
  105.  
  106. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\__init__.py in <module>()
  107.      47 import numpy as np
  108.      48
  109. ---> 49 from tensorflow.python import pywrap_tensorflow
  110.      50
  111.      51 # Protocol buffers
  112.  
  113. C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow.py in <module>()
  114.      70 for some common reasons and solutions.  Include the entire stack trace
  115.      71 above this error message when asking for help.""" % traceback.format_exc()
  116. ---> 72   raise ImportError(msg)
  117.     73
  118.     74 # pylint: enable=wildcard-import,g-import-not-at-top,unused-import,line-too-long
  119.  
  120. ImportError: Traceback (most recent call last):
  121.  File "C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_helper
  122.    return importlib.import_module(mname)
  123.  File "C:\ProgramData\Anaconda3\lib\importlib\__init__.py", line 126, in import_module
  124.    return _bootstrap._gcd_import(name[level:], package, level)
  125.  File "<frozen importlib._bootstrap>", line 994, in _gcd_import
  126.  File "<frozen importlib._bootstrap>", line 971, in _find_and_load
  127.  File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
  128.  File "<frozen importlib._bootstrap>", line 658, in _load_unlocked
  129.  File "<frozen importlib._bootstrap>", line 571, in module_from_spec
  130.  File "<frozen importlib._bootstrap_external>", line 922, in create_module
  131.  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  132. ImportError: DLL load failed: No se puede encontrar el módulo especificado.
  133.  
  134. During handling of the above exception, another exception occurred:
  135.  
  136. Traceback (most recent call last):
  137.  File "C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
  138.    from tensorflow.python.pywrap_tensorflow_internal import *
  139.  File "C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in <module>
  140.    _pywrap_tensorflow_internal = swig_import_helper()
  141.  File "C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_helper
  142.    return importlib.import_module('_pywrap_tensorflow_internal')
  143.  File "C:\ProgramData\Anaconda3\lib\importlib\__init__.py", line 126, in import_module
  144.    return _bootstrap._gcd_import(name[level:], package, level)
  145. ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'
  146.  
  147.  
  148. Failed to load the native TensorFlow runtime.
  149.  
  150. See https://www.tensorflow.org/install/install_sources#common_installation_problems
  151.  
  152. for some common reasons and solutions.  Include the entire stack trace
  153. above this error message when asking for help.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement