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 | """ |
---|
6 | #import scipy.linalg |
---|
7 | import numpy |
---|
8 | |
---|
9 | from Loader import Load |
---|
10 | from scipy import optimize |
---|
11 | |
---|
12 | from AbstractFitEngine import FitEngine, sansAssembly |
---|
13 | |
---|
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 | |
---|
29 | class ScipyFit(FitEngine): |
---|
30 | """ |
---|
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 | |
---|
37 | Add data with a dictionnary of FitArrangeDict where Uid is a key and data |
---|
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 | |
---|
47 | Add model with a dictionnary of FitArrangeDict{} where Uid is a key and model |
---|
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) |
---|
53 | """ |
---|
54 | def __init__(self): |
---|
55 | """ |
---|
56 | Creates a dictionary (self.fitArrangeDict={})of FitArrange elements |
---|
57 | with Uid as keys |
---|
58 | """ |
---|
59 | self.fitArrangeDict={} |
---|
60 | self.paramList=[] |
---|
61 | #def fit(self, *args, **kw): |
---|
62 | # return profile(self._fit, *args, **kw) |
---|
63 | |
---|
64 | def fit(self ,handler=None): |
---|
65 | |
---|
66 | fitproblem=[] |
---|
67 | for id ,fproblem in self.fitArrangeDict.iteritems(): |
---|
68 | if fproblem.get_to_fit()==1: |
---|
69 | fitproblem.append(fproblem) |
---|
70 | if len(fitproblem)>1 : |
---|
71 | raise RuntimeError, "Scipy can't fit more than a single fit problem at a time." |
---|
72 | return |
---|
73 | elif len(fitproblem)==0 : |
---|
74 | raise RuntimeError, "No Assembly scheduled for Scipy fitting." |
---|
75 | return |
---|
76 | |
---|
77 | listdata=[] |
---|
78 | model = fitproblem[0].get_model() |
---|
79 | listdata = fitproblem[0].get_data() |
---|
80 | # Concatenate dList set (contains one or more data)before fitting |
---|
81 | #data=self._concatenateData( listdata) |
---|
82 | data=listdata |
---|
83 | functor= sansAssembly(self.paramList,model,data) |
---|
84 | |
---|
85 | out, cov_x, info, mesg, success = optimize.leastsq(functor,model.getParams(self.paramList), full_output=1, warning=True) |
---|
86 | chisqr = functor.chisq(out) |
---|
87 | |
---|
88 | if cov_x is not None and numpy.isfinite(cov_x).all(): |
---|
89 | stderr = numpy.sqrt(numpy.diag(cov_x)) |
---|
90 | else: |
---|
91 | stderr=None |
---|
92 | if not (numpy.isnan(out).any()) or ( cov_x !=None) : |
---|
93 | result = fitresult() |
---|
94 | result.fitness = chisqr |
---|
95 | result.stderr = stderr |
---|
96 | result.pvec = out |
---|
97 | result.success =success |
---|
98 | |
---|
99 | return result |
---|
100 | else: |
---|
101 | raise ValueError, "SVD did not converge"+str(success) |
---|
102 | |
---|
103 | |
---|
104 | def profile(fn, *args, **kw): |
---|
105 | import cProfile, pstats, os |
---|
106 | global call_result |
---|
107 | def call(): |
---|
108 | global call_result |
---|
109 | call_result = fn(*args, **kw) |
---|
110 | cProfile.runctx('call()', dict(call=call), {}, 'profile.out') |
---|
111 | stats = pstats.Stats('profile.out') |
---|
112 | #stats.sort_stats('time') |
---|
113 | stats.sort_stats('calls') |
---|
114 | stats.print_stats() |
---|
115 | os.unlink('profile.out') |
---|
116 | return call_result |
---|
117 | |
---|
118 | |
---|