This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try: | |
import numpy | |
except ImportError: | |
import platform | |
if platform.python_implementation() == "PyPy": | |
import numpypy as numpy | |
else: | |
raise ImportError("DEAP requires Numpy.") | |
from collections import OrderedDict |