Wenn Sie derjenige sind, der die Arbeit erledigt, und sich dessen bewusst sind, was Sie tun, entwickeln Sie ein Gefühl dafür, wann Sie das Modell überarbeitet haben. Zum einen können Sie den Trend oder die Verschlechterung im angepassten R-Quadrat des Modells verfolgen. Sie können auch eine ähnliche Verschlechterung der p-Werte der Regressionskoeffizienten der Hauptvariablen verfolgen.
Wenn Sie jedoch nur eine andere Studie lesen und keinen Einblick in den internen Modellentwicklungsprozess haben, können Sie dann klar erkennen, ob ein Modell überfordert ist oder nicht.
Antworten:
Kreuzvalidierung und Regularisierung sind weit verbreitete Techniken, um eine Überanpassung zu verhindern. Für einen schnellen Überblick empfehle ich die Tutorial-Folien von Andrew Moore zur Verwendung der Kreuzvalidierung ( Spiegel ) - achten Sie besonders auf die Vorbehalte. Lesen Sie auf jeden Fall die Kapitel 3 und 7 der EOSL , in denen das Thema und die damit verbundenen Themen ausführlich behandelt werden.
quelle
Wenn ich ein Modell selbst anpasse, verwende ich im Allgemeinen während des Anpassungsprozesses Informationskriterien, wie z. B. AIC oder BIC , oder alternativ Likelihood-Ratio-Tests für Modelle, die auf der Maximalwahrscheinlichkeit oder dem F-Test basieren für Modelle, die auf der Basis der kleinsten Fehlerquadrate passen.
Alle sind sich konzeptionell insofern ähnlich, als sie zusätzliche Parameter benachteiligen. Sie legen für jeden neuen Parameter, der einem Modell hinzugefügt wird, einen Schwellenwert für "zusätzliche Erklärungskraft" fest. Sie sind alle eine Form von Regularisierung .
Für die Modelle anderer schaue ich im Methodenabschnitt nach, ob solche Techniken verwendet werden, und verwende auch Faustregeln, wie die Anzahl der Beobachtungen pro Parameter - wenn es ungefähr 5 (oder weniger) Beobachtungen pro Parameter gibt, frage ich mich.
Denken Sie immer daran, dass eine Variable in einem Modell nicht unbedingt "signifikant" sein muss, um wichtig zu sein. Ich kann ein Störfaktor sein und sollte auf dieser Grundlage einbezogen werden, wenn Ihr Ziel darin besteht, die Wirkung anderer Variablen abzuschätzen.
quelle
Wherewj is proportional to the prior probability for the jth model. Note that this includes a "penalty" for trying to many models - and the penalty depends on how well the other models fit the data. Usually you will set wj=1 , however, you may have some "theoretical" models within your class that you would expect to be better prior to seeing any data.
Now if somebody else doesn't report all the BIC's from all the models, then I would attempt to infer the above quantity from what you have been given. Suppose you are given the BIC from the model - note that BIC is calculable from the mean square error of the regression model, so you can always get BIC for the reported model. Now if we take the basic premise that the final model was chosen from the smallest BIC then we haveBICfinal<BICj . Now, suppose you were told that "forward" or "forward stepwise" model selection was used, starting from the intercept using p potential variables. If the final model is of dimension d , then the procedure must have tried at least
different models (exact for forward selection), If the backwards selection was used, then we know at least
Models were tried (the +1 comes from the null model or the full model). Now we could try an be more specific, but these are "minimal" parameters which a standard model selection must satisfy. We could specify a probability model for the number of models triedM and the sizes of the BICj - but simply plugging in some values may be useful here anyway. For example suppose that all the BICs were λ bigger than the one of the model chosen so that BICm=BICj−λ , then the probability becomes:
So what this means is that unlessλ is large or M is small, the probability will be small also. From an "over-fitting" perspective, this would occur when the BIC for the bigger model is not much bigger than the BIC for the smaller model - a non-neglible term appears in the denominator. Plugging in the backward selection formula for M we get:
Now suppose we invert the problem. sayp=50 and the backward selection gave d=20 variables, what would λ have to be to make the probability of the model greater than some value P0 ? we have
SettingP0=0.9 we get λ>18.28 - so BIC of the winning model has to win by a lot for the model to be certain.
quelle