source: sasview/park_integration/ScipyFitting.py @ 3d545d6

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 3d545d6 was 3d545d6, checked in by Jae Cho <jhjcho@…>, 13 years ago

put print success to invest mac problem

  • Property mode set to 100644
File size: 9.0 KB
Line 
1
2
3"""
4ScipyFitting module contains FitArrange , ScipyFit,
5Parameter classes.All listed classes work together to perform a
6simple fit with scipy optimizer.
7"""
8
9import numpy 
10import sys
11from scipy import optimize
12
13from sans.fit.AbstractFitEngine import FitEngine
14from sans.fit.AbstractFitEngine import SansAssembly
15from sans.fit.AbstractFitEngine import FitAbort
16IS_MAC = True
17if sys.platform.count("win32") > 0:
18    IS_MAC = False
19   
20class fitresult(object):
21    """
22    Storing fit result
23    """
24    def __init__(self, model=None, param_list=None):
25        self.calls = None
26        self.fitness = None
27        self.chisqr = None
28        self.pvec = None
29        self.cov = None
30        self.info = None
31        self.mesg = None
32        self.success = None
33        self.stderr = None
34        self.parameters = None
35        self.is_mac = IS_MAC
36        self.model = model
37        self.param_list = param_list
38        self.iterations = 0
39     
40    def set_model(self, model):
41        """
42        """
43        self.model = model
44       
45    def set_fitness(self, fitness):
46        """
47        """
48        self.fitness = fitness
49       
50    def __str__(self):
51        """
52        """
53        if self.pvec == None and self.model is None and self.param_list is None:
54            return "No results"
55        n = len(self.model.parameterset)
56        self.iterations += 1
57        result_param = zip(xrange(n), self.model.parameterset)
58        msg1 = ["[Iteration #: %s ]" % self.iterations]
59        msg3 = ["=== goodness of fit: %s ===" % (str(self.fitness))]
60        if not self.is_mac:
61            msg2 = ["P%-3d  %s......|.....%s" % \
62                (p[0], p[1], p[1].value)\
63                  for p in result_param if p[1].name in self.param_list]
64            msg =  msg1 + msg3 + msg2
65        else:
66            msg = msg1 + msg3
67        msg = "\n".join(msg)
68        return msg
69   
70    def print_summary(self):
71        """
72        """
73        print self   
74
75class ScipyFit(FitEngine):
76    """
77    ScipyFit performs the Fit.This class can be used as follow:
78    #Do the fit SCIPY
79    create an engine: engine = ScipyFit()
80    Use data must be of type plottable
81    Use a sans model
82   
83    Add data with a dictionnary of FitArrangeDict where Uid is a key and data
84    is saved in FitArrange object.
85    engine.set_data(data,Uid)
86   
87    Set model parameter "M1"= model.name add {model.parameter.name:value}.
88   
89    :note: Set_param() if used must always preceded set_model()
90         for the fit to be performed.In case of Scipyfit set_param is called in
91         fit () automatically.
92   
93    engine.set_param( model,"M1", {'A':2,'B':4})
94   
95    Add model with a dictionnary of FitArrangeDict{} where Uid is a key and model
96    is save in FitArrange object.
97    engine.set_model(model,Uid)
98   
99    engine.fit return chisqr,[model.parameter 1,2,..],[[err1....][..err2...]]
100    chisqr1, out1, cov1=engine.fit({model.parameter.name:value},qmin,qmax)
101    """
102    def __init__(self):
103        """
104        Creates a dictionary (self.fit_arrange_dict={})of FitArrange elements
105        with Uid as keys
106        """
107        FitEngine.__init__(self)
108        self.fit_arrange_dict = {}
109        self.param_list = []
110        self.curr_thread = None
111    #def fit(self, *args, **kw):
112    #    return profile(self._fit, *args, **kw)
113
114    def fit(self, q=None, handler=None, curr_thread=None, ftol=1.49012e-8):
115        """
116        """
117        fitproblem = []
118        for fproblem in self.fit_arrange_dict.itervalues():
119            if fproblem.get_to_fit() == 1:
120                fitproblem.append(fproblem)
121        if len(fitproblem) > 1 : 
122            msg = "Scipy can't fit more than a single fit problem at a time."
123            raise RuntimeError, msg
124            return
125        elif len(fitproblem) == 0 : 
126            raise RuntimeError, "No Assembly scheduled for Scipy fitting."
127            return
128   
129        listdata = []
130        model = fitproblem[0].get_model()
131        listdata = fitproblem[0].get_data()
132        # Concatenate dList set (contains one or more data)before fitting
133        data = listdata
134       
135        self.curr_thread = curr_thread
136        ftol = ftol
137       
138        # Check the initial value if it is within range
139        self._check_param_range(model)
140       
141        result = fitresult(model=model, param_list=self.param_list)
142        if handler is not None:
143            handler.set_result(result=result)
144        #try:
145        functor = SansAssembly(self.param_list, model, data, handler=handler,
146                         fitresult=result, curr_thread= self.curr_thread)
147        try:
148            out, cov_x, _, mesg, success = optimize.leastsq(functor,
149                                            model.get_params(self.param_list),
150                                                    ftol=ftol,
151                                                    full_output=1,
152                                                    warning=True)
153        except KeyboardInterrupt:
154            msg = "Fitting: Terminated!!!"
155            handler.error(msg)
156            raise KeyboardInterrupt, msg #<= more stable
157            #less stable below
158            """
159            if hasattr(sys, 'last_type') and sys.last_type == KeyboardInterrupt:
160                if handler is not None:
161                    msg = "Fitting: Terminated!!!"
162                    handler.error(msg)
163                    result = handler.get_result()
164                    return result
165            else:
166                raise
167            """
168        except:
169            raise
170       
171        chisqr = functor.chisq()
172        if cov_x is not None and numpy.isfinite(cov_x).all():
173            stderr = numpy.sqrt(numpy.diag(cov_x))
174        else:
175            stderr = None
176
177        if not (numpy.isnan(out).any()) and (cov_x != None):
178            result.fitness = chisqr
179            result.stderr  = stderr
180            result.pvec = out
181            result.success = success
182            print "sucess:", success
183            if q is not None:
184                q.put(result)
185                return q
186            return result
187       
188        # Error will be present to the client, not here
189        #else: 
190        #    raise ValueError, "SVD did not converge" + str(mesg)
191       
192    def _check_param_range(self, model):
193        """
194        Check parameter range and set the initial value inside
195        if it is out of range.
196       
197        : model: park model object
198        """
199        is_outofbound = False
200        # loop through parameterset
201        for p in model.parameterset:       
202            param_name = p.get_name()
203            # proceed only if the parameter name is in the list of fitting
204            if param_name in self.param_list:
205                # if the range was defined, check the range
206                if numpy.isfinite(p.range[0]):
207                    if p.value <= p.range[0]: 
208                        # 10 % backing up from the border if not zero
209                        # for Scipy engine to work properly.
210                        shift = self._get_zero_shift(p.range[0])
211                        new_value = p.range[0] + shift
212                        p.value =  new_value
213                        is_outofbound = True
214                if numpy.isfinite(p.range[1]):
215                    if p.value >= p.range[1]:
216                        shift = self._get_zero_shift(p.range[1])
217                        # 10 % backing up from the border if not zero
218                        # for Scipy engine to work properly.
219                        new_value = p.range[1] - shift
220                        # Check one more time if the new value goes below
221                        # the low bound, If so, re-evaluate the value
222                        # with the mean of the range.
223                        if numpy.isfinite(p.range[0]):
224                            if new_value < p.range[0]:
225                                new_value = (p.range[0] + p.range[1]) / 2.0
226                        # Todo:
227                        # Need to think about when both min and max are same.
228                        p.value =  new_value
229                        is_outofbound = True
230                       
231        return is_outofbound
232   
233    def _get_zero_shift(self, range):
234        """
235        Get 10% shift of the param value = 0 based on the range value
236       
237        : param range: min or max value of the bounds
238        """
239        if range == 0:
240            shift = 0.1
241        else:
242            shift = 0.1 * range
243           
244        return shift
245   
246   
247#def profile(fn, *args, **kw):
248#    import cProfile, pstats, os
249#    global call_result
250#   def call():
251#        global call_result
252#        call_result = fn(*args, **kw)
253#    cProfile.runctx('call()', dict(call=call), {}, 'profile.out')
254#    stats = pstats.Stats('profile.out')
255#    stats.sort_stats('time')
256#    stats.sort_stats('calls')
257#    stats.print_stats()
258#    os.unlink('profile.out')
259#    return call_result
260
261     
Note: See TracBrowser for help on using the repository browser.