What is GMMResults in the StatsModels library?

The following recipe explains what is GMMResults in StatsModels

Recipe Objective - What is GMMResults in the StatsModels library?

GMMResults is just a storage class right now.
It belongs to the class statsmodels.sandbox.regression.gmm.GMMResults

Access Face Recognition Project Code using Facenet in Python 

For more related projects -

https://www.dezyre.com/projects/data-science-projects/deep-learning-projects
https://www.dezyre.com/projects/data-science-projects/neural-network-projects

Attributes:

bse
The standard errors of the parameter estimates.

bse_
standard error of the parameter estimates

jval
nobs_moms attached by momcond_mean

llf
Log-likelihood of model

pvalues
The two-tailed p values for the t-stats of the params.

q
Objective function at params

tvalues
Return the t-statistic for a given parameter estimate.

Methods:

calc_cov_params(moms, gradmoms[, weights, ...])
calculate covariance of parameter estimates

compare_j(other)
overidentification test for comparing two nested gmm estimates

f_test(r_matrix[, cov_p, invcov])
Compute the F-test for a joint linear hypothesis.

jtest()
overidentification test

load(fname)
Load a pickled results instance

predict([exog, transform])
Call self.model.predict with self.params as the first argument.

save(fname[, remove_data])
Save a pickle of this instance.

summary([yname, xname, title, alpha])
Summarize the Regression Results

t_test(r_matrix[, cov_p, use_t])
Compute a t-test for a each linear hypothesis of the form Rb = q.

What Users are saying..

profile image

Anand Kumpatla

Sr Data Scientist @ Doubleslash Software Solutions Pvt Ltd
linkedin profile url

ProjectPro is a unique platform and helps many people in the industry to solve real-life problems with a step-by-step walkthrough of projects. A platform with some fantastic resources to gain... Read More

Relevant Projects

Build Time Series Models for Gaussian Processes in Python
Time Series Project - A hands-on approach to Gaussian Processes for Time Series Modelling in Python

NLP Project for Multi Class Text Classification using BERT Model
In this NLP Project, you will learn how to build a multi-class text classification model using using the pre-trained BERT model.

Multilabel Classification Project for Predicting Shipment Modes
Multilabel Classification Project to build a machine learning model that predicts the appropriate mode of transport for each shipment, using a transport dataset with 2000 unique products. The project explores and compares four different approaches to multilabel classification, including naive independent models, classifier chains, natively multilabel models, and multilabel to multiclass approaches.

AWS MLOps Project to Deploy Multiple Linear Regression Model
Build and Deploy a Multiple Linear Regression Model in Python on AWS

Time Series Python Project using Greykite and Neural Prophet
In this time series project, you will forecast Walmart sales over time using the powerful, fast, and flexible time series forecasting library Greykite that helps automate time series problems.

Build an Image Classifier for Plant Species Identification
In this machine learning project, we will use binary leaf images and extracted features, including shape, margin, and texture to accurately identify plant species using different benchmark classification techniques.

Walmart Sales Forecasting Data Science Project
Data Science Project in R-Predict the sales for each department using historical markdown data from the Walmart dataset containing data of 45 Walmart stores.

Multi-Class Text Classification with Deep Learning using BERT
In this deep learning project, you will implement one of the most popular state of the art Transformer models, BERT for Multi-Class Text Classification

End-to-End ML Model Monitoring using Airflow and Docker
In this MLOps Project, you will learn to build an end to end pipeline to monitor any changes in the predictive power of model or degradation of data.

Linear Regression Model Project in Python for Beginners Part 1
Machine Learning Linear Regression Project in Python to build a simple linear regression model and master the fundamentals of regression for beginners.