예제 #1
0
파일: algos.py 프로젝트: vtduong/pyCSalgos
def run_exact_tst(y, M, Omega):
    """
  Wrapper for TST algorithm (with default optimized params) for exact analysis recovery
  """
    nsweep = 300
    tol = 1e-5
    return ABSexact.tst_recom(y, M, Omega, nsweep, tol)
예제 #2
0
파일: algos.py 프로젝트: nikcleju/pyCSalgos
def run_exact_tst(y, M, Omega):
    """
  Wrapper for TST algorithm (with default optimized params) for exact analysis recovery
  """
    nsweep = 300
    tol = 1e-5
    return ABSexact.tst_recom(y, M, Omega, nsweep, tol)