What is PoissonGMLE in the StatsModels library?

This recipe explains what is PoissonGMLE in the StatsModels library

Recipe Objective - What is PoissonGMLE in the StatsModels library?

PoissonGMLE is a Maximum Likelihood Estimation of Poisson Model. This is an example of a common MLE with the same statistical model as discretemod.Poisson. All methods and results are common, except for the definition of the negative log-likelihood method. Gradients and Hessian matrices, and all the resulting statistics, are based on numerical differentiation.
It belongs to the class statsmodels.miscmodels.count.PoissonGMLE(endog, exog=None, loglike=None, score=None, hessian=None, missing='none', extra_params_names=None, **kwds)

Access YOLO OCR Character Recognition Project with Source Code 

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:

endog_names
Names of endogenous variables.

exog_names
Names of exogenous variables.

Methods:

expandparams(params)
expand to full parameter array when some parameters are fixed

fit([start_params, method, maxiter, ...])
Fit method for likelihood based models

from_formula(formula, data[, subset, drop_cols])
Create a Model from a formula and dataframe.

hessian(params)
Hessian of log-likelihood evaluated at params

predict(params[, exog])
After a model has been fit predict returns the fitted values.

predict_distribution(exog)
return frozen scipy.stats distribution with mu at estimated prediction

score(params)
Gradient of log-likelihood evaluated at params

What Users are saying..

profile image

Ameeruddin Mohammed

ETL (Abintio) developer at IBM
linkedin profile url

I come from a background in Marketing and Analytics and when I developed an interest in Machine Learning algorithms, I did multiple in-class courses from reputed institutions though I got good... Read More

Relevant Projects

Locality Sensitive Hashing Python Code for Look-Alike Modelling
In this deep learning project, you will find similar images (lookalikes) using deep learning and locality sensitive hashing to find customers who are most likely to click on an ad.

Deep Learning Project for Text Detection in Images using Python
CV2 Text Detection Code for Images using Python -Build a CRNN deep learning model to predict the single-line text in a given image.

Build Piecewise and Spline Regression Models in Python
In this Regression Project, you will learn how to build a piecewise and spline regression model from scratch in Python to predict the points scored by a sports team.

A/B Testing Approach for Comparing Performance of ML Models
The objective of this project is to compare the performance of BERT and DistilBERT models for building an efficient Question and Answering system. Using A/B testing approach, we explore the effectiveness and efficiency of both models and determine which one is better suited for Q&A tasks.

Build Classification Algorithms for Digital Transformation[Banking]
Implement a machine learning approach using various classification techniques in Python to examine the digitalisation process of bank customers.

Stock Price Prediction Project using LSTM and RNN
Learn how to predict stock prices using RNN and LSTM models. Understand deep learning concepts and apply them to real-world financial data for accurate forecasting.

Credit Card Default Prediction using Machine learning techniques
In this data science project, you will predict borrowers chance of defaulting on credit loans by building a credit score prediction model.

Forecasting Business KPI's with Tensorflow and Python
In this machine learning project, you will use the video clip of an IPL match played between CSK and RCB to forecast key performance indicators like the number of appearances of a brand logo, the frames, and the shortest and longest area percentage in the video.

Build a Text Generator Model using Amazon SageMaker
In this Deep Learning Project, you will train a Text Generator Model on Amazon Reviews Dataset using LSTM Algorithm in PyTorch and deploy it on Amazon SageMaker.

Build a Graph Based Recommendation System in Python-Part 2
In this Graph Based Recommender System Project, you will build a recommender system project for eCommerce platforms and learn to use FAISS for efficient similarity search.