From 9c9944c1a2621bb110b62aedf54b3333b5c831d2 Mon Sep 17 00:00:00 2001 From: rowanc1 Date: Sat, 12 Jul 2014 15:24:11 -0500 Subject: [PATCH] change defaults in directives --- SimPEG/Directives.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SimPEG/Directives.py b/SimPEG/Directives.py index 226fb860..6a492a50 100644 --- a/SimPEG/Directives.py +++ b/SimPEG/Directives.py @@ -88,7 +88,7 @@ class BetaEstimate_ByEig(InversionDirective): """BetaEstimate""" beta0 = None #: The initial Beta (regularization parameter) - beta0_ratio = 0.1 #: estimateBeta0 is used with this ratio + beta0_ratio = 1e2 #: estimateBeta0 is used with this ratio def initialize(self): """ @@ -136,7 +136,7 @@ class BetaEstimate_ByEig(InversionDirective): class BetaSchedule(InversionDirective): """BetaSchedule""" - coolingFactor = 2. + coolingFactor = 8. coolingRate = 3 def endIter(self):