예제 #1
0
def main():
    """Run according to options in sys.argv"""
    nupic.support.initLogging(verbose=True)

    # Initialize pseudo-random number generators (PRNGs)
    #
    # This will fix the seed that is used by numpy when generating 'random'
    # numbers. This allows for repeatability across experiments.
    initExperimentPrng()

    # Run it!
    runExperiment(sys.argv[1:])
예제 #2
0
def main():
  """Run according to options in sys.argv"""
  # Init the NuPic logging configuration from the nupic-logging.conf configuration
  # file. This is found either in the NTA_CONF_DIR directory (if defined) or
  # in the 'conf' subdirectory of the NuPic install location.
  nupic.support.initLogging(verbose=True)

  # Initialize PRNGs
  initExperimentPrng()

  # Run it!
  runExperiment(sys.argv[1:])
예제 #3
0
def main():
  """Run according to options in sys.argv"""
  nupic.support.initLogging(verbose=True)

  # Initialize pseudo-random number generators (PRNGs)
  #
  # This will fix the seed that is used by numpy when generating 'random'
  # numbers. This allows for repeatability across experiments.
  initExperimentPrng()

  # Run it!
  runExperiment(sys.argv[1:])
예제 #4
0
def runReducedExperiment(path, reduced=True):
  """
  Run the experiment in the <path> with a reduced iteration count
  """

  initExperimentPrng()
  
  # Load experiment
  if reduced:
    args = [path, '--testMode']
  else:
    args = [path]
    
  runExperiment(args)
예제 #5
0
def runReducedExperiment(path, reduced=True):
  """
  Run the experiment in the <path> with a reduced iteration count
  """

  initExperimentPrng()
  
  # Load experiment
  if reduced:
    args = [path, '--testMode']
  else:
    args = [path]
    
  runExperiment(args)
예제 #6
0
def main():
  """Run according to options in sys.argv"""
  # Init the NuPic logging configuration from the nupic-logging.conf configuration
  # file. This is found either in the NTA_CONF_DIR directory (if defined) or
  # in the 'conf' subdirectory of the NuPic install location.
  nupic.support.initLogging(verbose=True)

  # Initialize pseudo-random number generators (PRNGs)
  #
  # This will fix the seed that is used by numpy when generating 'random'
  # numbers. This allows for repeatability across experiments.
  initExperimentPrng()

  # Run it!
  runExperiment(sys.argv[1:])
예제 #7
0
def main():
    """Run according to options in sys.argv"""
    # Init the NuPic logging configuration from the nupic-logging.conf configuration
    # file. This is found either in the NTA_CONF_DIR directory (if defined) or
    # in the 'conf' subdirectory of the NuPic install location.
    nupic.support.initLogging(verbose=True)

    # Initialize pseudo-random number generators (PRNGs)
    #
    # This will fix the seed that is used by numpy when generating 'random'
    # numbers. This allows for repeatability across experiments.
    initExperimentPrng()

    # Run it!
    runExperiment(sys.argv[1:])
def main():
  """Run according to options in sys.argv and diff classifiers."""
  initLogging(verbose=True)

  # Initialize PRNGs
  initExperimentPrng()

  # Mock out the creation of the CLAClassifier.
  @staticmethod
  def _mockCreate(*args, **kwargs):
    kwargs.pop('implementation', None)
    return CLAClassifierDiff(*args, **kwargs)
  CLAClassifierFactory.create = _mockCreate

  # Run it!
  runExperiment(sys.argv[1:])
예제 #9
0
def main():
  """Run according to options in sys.argv and diff classifiers."""
  initLogging(verbose=True)

  # Initialize PRNGs
  initExperimentPrng()

  # Mock out the creation of the SDRClassifier.
  @staticmethod
  def _mockCreate(*args, **kwargs):
    kwargs.pop('implementation', None)
    return SDRClassifierDiff(*args, **kwargs)
  SDRClassifierFactory.create = _mockCreate

  # Run it!
  runExperiment(sys.argv[1:])
def main():
  """Run according to options in sys.argv and diff classifiers."""
  # Init the NuPic logging configuration from the nupic-logging.conf
  # configuration file. This is found either in the NTA_CONF_DIR directory
  # (if defined) or in the 'conf' subdirectory of the NuPic install location.
  initLogging(verbose=True)

  # Initialize PRNGs
  initExperimentPrng()

  # Mock out the creation of the CLAClassifier.
  @staticmethod
  def _mockCreate(*args, **kwargs):
    kwargs.pop('implementation', None)
    return CLAClassifierDiff(*args, **kwargs)
  CLAClassifierFactory.create = _mockCreate

  # Run it!
  runExperiment(sys.argv[1:])
예제 #11
0
def main():
    """Run according to options in sys.argv and diff classifiers."""
    # Init the NuPic logging configuration from the nupic-logging.conf
    # configuration file. This is found either in the NTA_CONF_DIR directory
    # (if defined) or in the 'conf' subdirectory of the NuPic install location.
    initLogging(verbose=True)

    # Initialize PRNGs
    initExperimentPrng()

    # Mock out the creation of the CLAClassifier.
    @staticmethod
    def _mockCreate(*args, **kwargs):
        kwargs.pop('implementation', None)
        return CLAClassifierDiff(*args, **kwargs)

    CLAClassifierFactory.create = _mockCreate

    # Run it!
    runExperiment(sys.argv[1:])