Closed litvinen closed 8 years ago
Particularly, Do I need "fnInit=alex_init," ? in mimclib.test.RunStandardTest(fnInit=alex_init, fnSampleLvl=mySampleLvl, fnAddExtraArgs=None, fnSeed=seedRandomGen)
If yes , what is the syntax to fix this error TypeError: alex_init() takes exactly 2 arguments (1 given)
Ok, I understand. In the current version only the smallest TOL is printed into vw_runs table. All other are computed, but are recorded in other tables. Type mysql> select * from vw_iters ; and you will see all other TOLs
I always get computations for the same TOL. In the example below only for TOL=0.2. Can you please check syntax
!/usr/bin/python
import numpy as np import argparse
if name == "main": parser = argparse.ArgumentParser(add_help=True) parser.register('type', 'bool', lambda v: v.lower() in ("yes", "true", "t", "1")) parser.add_argument("-tries", type=int, action="store", default=0, help="Number of realizations") parser.add_argument("-mimc_min_dim", type=int, action="store", default=1, help="MIMC dim")