OptMLGroup / VRP-RL

Reinforcement Learning for Solving the Vehicle Routing Problem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trying to run on CPU machine

asad-taj opened this issue · comments

commented

I am trying to run this on windows machine with just CPUs available, but it gives error
ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'
ImportError: numpy.core.multiarray failed to import

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "", line 980, in _find_and_load
SystemError: <class '_frozen_importlib._ModuleLockManager'> returned a result with an error set
ImportError: numpy.core._multiarray_umath failed to import
ImportError: numpy.core.umath failed to import
2019-06-22 03:38:35.403667: F tensorflow/python/lib/core/bfloat16.cc:675] Check failed: PyBfloat16_Type.tp_base != nullptr

When I manually import numpy.core.multiarray and numpy.core.umath from python prompt it is importing fine.

Am I missing something?