Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make optimization based on the entire posterior and not on the marginal mean parameters. #1151

Open
wants to merge 25 commits into
base: main
Choose a base branch
from

Conversation

cetagostini
Copy link
Contributor

@cetagostini cetagostini commented Nov 2, 2024

Description

Structural change on how responses are computed in the optimizer, we are now using the entire "posterior" of the model, and additionally we are creating a new notebook where we can encode certain risk levels.

Related Issue

  • Closes #
  • Related to #

Checklist

Modules affected

  • MMM
  • CLV

Type of change

  • New feature / enhancement
  • Bug fix
  • Documentation
  • Maintenance
  • Other (please specify):

📚 Documentation preview 📚: https://pymc-marketing--1151.org.readthedocs.build/en/1151/

Copy link

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

@github-actions github-actions bot added docs Improvements or additions to documentation MMM tests labels Nov 2, 2024
Copy link

codecov bot commented Nov 2, 2024

Codecov Report

Attention: Patch coverage is 87.34177% with 20 lines in your changes missing coverage. Please review.

Project coverage is 95.12%. Comparing base (1d89f66) to head (915ff64).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
pymc_marketing/mmm/utility.py 86.02% 13 Missing ⚠️
pymc_marketing/mmm/mmm.py 70.00% 6 Missing ⚠️
pymc_marketing/mmm/budget_optimizer.py 97.77% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1151      +/-   ##
==========================================
- Coverage   95.64%   95.12%   -0.53%     
==========================================
  Files          39       40       +1     
  Lines        4091     4228     +137     
==========================================
+ Hits         3913     4022     +109     
- Misses        178      206      +28     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@wd60622 wd60622 added the enhancement New feature or request label Nov 2, 2024
pymc_marketing/mmm/mmm.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/budget_optimizer.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/budget_optimizer.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/budget_optimizer.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/budget_optimizer.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/mmm.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/risk_assessment.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/risk_assessment.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/budget_optimizer.py Outdated Show resolved Hide resolved
pymc_marketing/mmm/mmm.py Outdated Show resolved Hide resolved
Copy link

review-notebook-app bot commented Nov 12, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-12T20:06:43Z
----------------------------------------------------------------

Line #3.    plt.title("Response Distribution at 95% Confidence Level");

We should use the term HDI (highest density interval)


Copy link

review-notebook-app bot commented Nov 12, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-12T20:06:44Z
----------------------------------------------------------------

Same comment bout the HDI in the title

It would be also nice to have them both plotten in the same figure to compare them :)


Copy link

review-notebook-app bot commented Nov 12, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-12T20:06:45Z
----------------------------------------------------------------

Same comment about the title


Copy link

review-notebook-app bot commented Nov 12, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-12T20:06:46Z
----------------------------------------------------------------

Did anything actually change in the example notebook or can we simply remove the changes ?


@cetagostini
Copy link
Contributor Author

cetagostini commented Nov 21, 2024

All notebooks update to use the new optimization method.

@cetagostini
Copy link
Contributor Author

Ready for final review, everything should be done.

Cc: @juanitorduz @cluhmann

@juanitorduz
Copy link
Collaborator

Thank @cetagostini ! I will review this one soon (I promise).

One thing you could improve while we do it is making sure we test all functions. For example, I see from the coverage report we do not have a test for the function (plot_allocated_contribution_by_channel). We need at least one test before we merge (If there is a test and I missed then it is fine :) )

Copy link

review-notebook-app bot commented Nov 29, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-29T18:59:16Z
----------------------------------------------------------------

possitive is a typo, we shoudl revert this


Copy link

review-notebook-app bot commented Nov 29, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-29T18:59:17Z
----------------------------------------------------------------

We shoudl revert this as we want to use the Prior class


Copy link

review-notebook-app bot commented Nov 29, 2024

View / edit / reply to this conversation on ReviewNB

juanitorduz commented on 2024-11-29T18:59:18Z
----------------------------------------------------------------

wrong correction


Copy link
Collaborator

@juanitorduz juanitorduz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cetagostini can we revert the examples in the example notebook? This seems like an old version and has many errors and typos 🙏 (can you please check the other notebooks in detail as well to see iv we have the same issue?)

Copy link
Collaborator

@juanitorduz juanitorduz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried to give a detailed look and left some comments 🙏

"method": "SLSQP",
"options": {"ftol": 1e-9, "maxiter": 1_000},
}
minimize_kwargs = self.DEFAULT_MINIMIZE_KWARGS
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we consider #1193 here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Like it, will apply it.

pymc_marketing/mmm/utility.py Show resolved Hide resolved

import pytensor.tensor as pt

UtilityFunction = Callable[[pt.TensorVariable, pt.TensorVariable], float]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall we call this UtilityFunctionType? Otherwise it could be interpreted as a class

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we can do that!

Comment on lines +77 to +81
def average_response(
samples: pt.TensorVariable, budgets: pt.TensorVariable
) -> pt.TensorVariable:
"""Compute the average response of the posterior predictive distribution."""
return pt.mean(samples)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need this function? Note we are not using the budget variable at all, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need the same signature in all functions in order to make compatible an scalable. I had an implementation that was more directed per function but was taking a few flexibility from users, with @wd60622 we arrive to this conclusion with makes everything more flexible, the only inconvenience is we need samples and budgets across all, even when we don't use them.

raise ValueError("Confidence level must be between 0 and 1.")

def _tail_distance(
samples: pt.TensorVariable, budgets: pt.TensorVariable
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we are not using the budgets variable, so we should remove it right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replied before!

----------
.. [1] Rockafellar, R.T., & Uryasev, S. (2000). Optimization of Conditional Value-at-Risk.
"""
if not 0 < confidence_level < 1:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any problems if is exactly zero or one?


Parameters
----------
confidence_level : float, optional
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add "confidence level must be between 0 and 1."

"channel_1": {
"adstock_params": {"alpha": 0.5},
"saturation_params": {"lam": 10, "beta": 0.5},
"saturation_params": {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we still test the scalar case?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you mean here? What scalar case?


rng: np.random.Generator = np.random.default_rng(seed=42)

EXPECTED_RESULTS = {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where are these values coming from?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I ran a notebook to check what would be the results for each function given the parameters, this test validates they return those values every time, meaning, function behavior its not changing and return consistent results.

UtilityFunction
A function that calculates the tail distance metric given samples and budgets.
"""
if not 0 < confidence_level < 1:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add a test fro these ValueErrors

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, we could use @validate_call from pydantic as in https://github.com/pymc-labs/pymc-marketing/blob/main/pymc_marketing/mmm/mmm.py#L74

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree!

@juanitorduz
Copy link
Collaborator

Important Comments:

  • Before we merge, we need to make sure the changes in the notebooks are meaningful. For example, the MMM Example version seems old as it reverts typo corrections and does not use the Prior class. We should only change the notebooks relevant to this PR.
    Can you please re-run the MMM case study and expand on the budget allocation section a bit to showcase the gains of this new approach and how to use it in practice?

Thank you for this great and ambitious PR, @cetagostini ! These suggestions are to make sure we deliver a great solution 💪 🙇

@cetagostini
Copy link
Contributor Author

cetagostini commented Nov 29, 2024

Important Comments:

  • Before we merge, we need to make sure the changes in the notebooks are meaningful. For example, the MMM Example version seems old as it reverts typo corrections and does not use the Prior class. We should only change the notebooks relevant to this PR.
    Can you please re-run the MMM case study and expand on the budget allocation section a bit to showcase the gains of this new approach and how to use it in practice?

Thank you for this great and ambitious PR, @cetagostini ! These suggestions are to make sure we deliver a great solution 💪 🙇

Thank you for the detailed review, I need some feedback on a few comments, I'll proceed with the rest 🙌🏻

PS: Sorry for the MMM example, I got issues with the notebook and maybe the rebase revert those, let me bring back the one from main @juanitorduz

@juanitorduz
Copy link
Collaborator

Thanks @cetagostini ! Git and notebooks is a pain!👌🙇

(btw cool pytensor stuff... I am learning quite a lot from these risks metrics!)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Improvements or additions to documentation enhancement New feature or request MMM tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants