[792db7d5] | 1 | """ |
---|
| 2 | @organization: ScipyFitting module contains FitArrange , ScipyFit, |
---|
| 3 | Parameter classes.All listed classes work together to perform a |
---|
| 4 | simple fit with scipy optimizer. |
---|
| 5 | """ |
---|
[48882d1] | 6 | #import scipy.linalg |
---|
| 7 | import numpy |
---|
[61cb28d] | 8 | |
---|
[7705306] | 9 | from Loader import Load |
---|
| 10 | from scipy import optimize |
---|
| 11 | |
---|
[48882d1] | 12 | from AbstractFitEngine import FitEngine, sansAssembly |
---|
[61cb28d] | 13 | |
---|
[48882d1] | 14 | class fitresult: |
---|
| 15 | """ |
---|
| 16 | Storing fit result |
---|
| 17 | """ |
---|
| 18 | calls = None |
---|
| 19 | fitness = None |
---|
| 20 | chisqr = None |
---|
| 21 | pvec = None |
---|
| 22 | cov = None |
---|
| 23 | info = None |
---|
| 24 | mesg = None |
---|
| 25 | success = None |
---|
| 26 | stderr = None |
---|
| 27 | parameters= None |
---|
| 28 | |
---|
[4c718654] | 29 | class ScipyFit(FitEngine): |
---|
[7705306] | 30 | """ |
---|
[792db7d5] | 31 | ScipyFit performs the Fit.This class can be used as follow: |
---|
| 32 | #Do the fit SCIPY |
---|
| 33 | create an engine: engine = ScipyFit() |
---|
| 34 | Use data must be of type plottable |
---|
| 35 | Use a sans model |
---|
| 36 | |
---|
[ca6d914] | 37 | Add data with a dictionnary of FitArrangeDict where Uid is a key and data |
---|
[792db7d5] | 38 | is saved in FitArrange object. |
---|
| 39 | engine.set_data(data,Uid) |
---|
| 40 | |
---|
| 41 | Set model parameter "M1"= model.name add {model.parameter.name:value}. |
---|
| 42 | @note: Set_param() if used must always preceded set_model() |
---|
| 43 | for the fit to be performed.In case of Scipyfit set_param is called in |
---|
| 44 | fit () automatically. |
---|
| 45 | engine.set_param( model,"M1", {'A':2,'B':4}) |
---|
| 46 | |
---|
[ca6d914] | 47 | Add model with a dictionnary of FitArrangeDict{} where Uid is a key and model |
---|
[792db7d5] | 48 | is save in FitArrange object. |
---|
| 49 | engine.set_model(model,Uid) |
---|
| 50 | |
---|
| 51 | engine.fit return chisqr,[model.parameter 1,2,..],[[err1....][..err2...]] |
---|
| 52 | chisqr1, out1, cov1=engine.fit({model.parameter.name:value},qmin,qmax) |
---|
[7705306] | 53 | """ |
---|
[792db7d5] | 54 | def __init__(self): |
---|
| 55 | """ |
---|
[ca6d914] | 56 | Creates a dictionary (self.fitArrangeDict={})of FitArrange elements |
---|
[792db7d5] | 57 | with Uid as keys |
---|
| 58 | """ |
---|
[ca6d914] | 59 | self.fitArrangeDict={} |
---|
[ee5b04c] | 60 | self.paramList=[] |
---|
[9c648c7] | 61 | #def fit(self, *args, **kw): |
---|
| 62 | # return profile(self._fit, *args, **kw) |
---|
| 63 | |
---|
[a320904] | 64 | def fit(self ,handler=None): |
---|
[a9e04aa] | 65 | # Protect against simultanous fitting attempts |
---|
| 66 | #if len(self.fitArrangeDict)>1: |
---|
| 67 | # raise RuntimeError, "Scipy can't fit more than a single fit problem at a time." |
---|
[792db7d5] | 68 | # fitproblem contains first fitArrange object(one model and a list of data) |
---|
[a9e04aa] | 69 | #list of fitproblem |
---|
[681f0dc] | 70 | |
---|
[a9e04aa] | 71 | fitproblem=[] |
---|
| 72 | for id ,fproblem in self.fitArrangeDict.iteritems(): |
---|
[9c648c7] | 73 | #print "ScipyFitting:fproblem.get_to_fit() ",fproblem.get_to_fit() |
---|
[a9e04aa] | 74 | if fproblem.get_to_fit()==1: |
---|
| 75 | fitproblem.append(fproblem) |
---|
| 76 | if len(fitproblem)>1 : |
---|
| 77 | raise RuntimeError, "Scipy can't fit more than a single fit problem at a time." |
---|
| 78 | return |
---|
| 79 | elif len(fitproblem)==0 : |
---|
| 80 | raise RuntimeError, "No Assembly scheduled for Scipy fitting." |
---|
| 81 | return |
---|
| 82 | |
---|
[7705306] | 83 | listdata=[] |
---|
[a9e04aa] | 84 | model = fitproblem[0].get_model() |
---|
[a320904] | 85 | #print "data",fitproblem[0].dList |
---|
[a9e04aa] | 86 | listdata = fitproblem[0].get_data() |
---|
[792db7d5] | 87 | # Concatenate dList set (contains one or more data)before fitting |
---|
[7d0c1a8] | 88 | #data=self._concatenateData( listdata) |
---|
| 89 | data=listdata |
---|
[a320904] | 90 | |
---|
| 91 | |
---|
[e71440c] | 92 | functor= sansAssembly(self.paramList,model,data) |
---|
[9c648c7] | 93 | |
---|
| 94 | |
---|
[48882d1] | 95 | out, cov_x, info, mesg, success = optimize.leastsq(functor,model.getParams(self.paramList), full_output=1, warning=True) |
---|
| 96 | chisqr = functor.chisq(out) |
---|
[e71440c] | 97 | |
---|
[ca6d914] | 98 | if cov_x is not None and numpy.isfinite(cov_x).all(): |
---|
| 99 | stderr = numpy.sqrt(numpy.diag(cov_x)) |
---|
[e71440c] | 100 | else: |
---|
| 101 | stderr=None |
---|
[ca6d914] | 102 | if not (numpy.isnan(out).any()) or ( cov_x !=None) : |
---|
[48882d1] | 103 | result = fitresult() |
---|
| 104 | result.fitness = chisqr |
---|
[ca6d914] | 105 | result.stderr = stderr |
---|
[48882d1] | 106 | result.pvec = out |
---|
| 107 | result.success =success |
---|
| 108 | |
---|
| 109 | return result |
---|
| 110 | else: |
---|
[ca6d914] | 111 | raise ValueError, "SVD did not converge"+str(success) |
---|
[7705306] | 112 | |
---|
[48882d1] | 113 | |
---|
[9c648c7] | 114 | def profile(fn, *args, **kw): |
---|
| 115 | import cProfile, pstats, os |
---|
| 116 | global call_result |
---|
| 117 | def call(): |
---|
| 118 | global call_result |
---|
| 119 | call_result = fn(*args, **kw) |
---|
| 120 | cProfile.runctx('call()', dict(call=call), {}, 'profile.out') |
---|
| 121 | stats = pstats.Stats('profile.out') |
---|
| 122 | #stats.sort_stats('time') |
---|
| 123 | stats.sort_stats('calls') |
---|
| 124 | stats.print_stats() |
---|
| 125 | os.unlink('profile.out') |
---|
| 126 | return call_result |
---|
| 127 | |
---|
[48882d1] | 128 | |
---|