google-meridian 1.2.1__py3-none-any.whl → 1.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. google_meridian-1.3.1.dist-info/METADATA +209 -0
  2. google_meridian-1.3.1.dist-info/RECORD +76 -0
  3. {google_meridian-1.2.1.dist-info → google_meridian-1.3.1.dist-info}/top_level.txt +1 -0
  4. meridian/analysis/__init__.py +2 -0
  5. meridian/analysis/analyzer.py +179 -105
  6. meridian/analysis/formatter.py +2 -2
  7. meridian/analysis/optimizer.py +227 -87
  8. meridian/analysis/review/__init__.py +20 -0
  9. meridian/analysis/review/checks.py +721 -0
  10. meridian/analysis/review/configs.py +110 -0
  11. meridian/analysis/review/constants.py +40 -0
  12. meridian/analysis/review/results.py +544 -0
  13. meridian/analysis/review/reviewer.py +186 -0
  14. meridian/analysis/summarizer.py +21 -34
  15. meridian/analysis/templates/chips.html.jinja +12 -0
  16. meridian/analysis/test_utils.py +27 -5
  17. meridian/analysis/visualizer.py +41 -57
  18. meridian/backend/__init__.py +457 -118
  19. meridian/backend/test_utils.py +162 -0
  20. meridian/constants.py +39 -3
  21. meridian/model/__init__.py +1 -0
  22. meridian/model/eda/__init__.py +3 -0
  23. meridian/model/eda/constants.py +21 -0
  24. meridian/model/eda/eda_engine.py +1309 -196
  25. meridian/model/eda/eda_outcome.py +200 -0
  26. meridian/model/eda/eda_spec.py +84 -0
  27. meridian/model/eda/meridian_eda.py +220 -0
  28. meridian/model/knots.py +55 -49
  29. meridian/model/media.py +10 -8
  30. meridian/model/model.py +79 -16
  31. meridian/model/model_test_data.py +53 -0
  32. meridian/model/posterior_sampler.py +39 -32
  33. meridian/model/prior_distribution.py +12 -2
  34. meridian/model/prior_sampler.py +146 -90
  35. meridian/model/spec.py +7 -8
  36. meridian/model/transformers.py +11 -3
  37. meridian/version.py +1 -1
  38. schema/__init__.py +18 -0
  39. schema/serde/__init__.py +26 -0
  40. schema/serde/constants.py +48 -0
  41. schema/serde/distribution.py +515 -0
  42. schema/serde/eda_spec.py +192 -0
  43. schema/serde/function_registry.py +143 -0
  44. schema/serde/hyperparameters.py +363 -0
  45. schema/serde/inference_data.py +105 -0
  46. schema/serde/marketing_data.py +1321 -0
  47. schema/serde/meridian_serde.py +413 -0
  48. schema/serde/serde.py +47 -0
  49. schema/serde/test_data.py +4608 -0
  50. schema/utils/__init__.py +17 -0
  51. schema/utils/time_record.py +156 -0
  52. google_meridian-1.2.1.dist-info/METADATA +0 -409
  53. google_meridian-1.2.1.dist-info/RECORD +0 -52
  54. {google_meridian-1.2.1.dist-info → google_meridian-1.3.1.dist-info}/WHEEL +0 -0
  55. {google_meridian-1.2.1.dist-info → google_meridian-1.3.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,209 @@
1
+ Metadata-Version: 2.4
2
+ Name: google-meridian
3
+ Version: 1.3.1
4
+ Summary: Google's open source mixed marketing model library, helps you understand your return on investment and direct your ad spend with confidence.
5
+ Author-email: The Meridian Authors <no-reply@google.com>
6
+ Project-URL: homepage, https://github.com/google/meridian
7
+ Project-URL: repository, https://github.com/google/meridian
8
+ Project-URL: changelog, https://github.com/google/meridian/blob/main/CHANGELOG.md
9
+ Project-URL: documentation, https://developers.google.com/meridian
10
+ Keywords: mmm
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Topic :: Other/Nonlisted Topic
14
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: arviz
19
+ Requires-Dist: altair>=5
20
+ Requires-Dist: immutabledict
21
+ Requires-Dist: joblib
22
+ Requires-Dist: natsort<8,>=7.1.1
23
+ Requires-Dist: numpy<3,>=2.0.2
24
+ Requires-Dist: pandas<3,>=2.2.2
25
+ Requires-Dist: patsy<1,>=0.5.3
26
+ Requires-Dist: scipy<2,>=1.13.1
27
+ Requires-Dist: statsmodels>=0.14.5
28
+ Requires-Dist: tensorflow<2.19,>=2.18
29
+ Requires-Dist: tensorflow-probability<0.26,>=0.25
30
+ Requires-Dist: tf-keras<2.19,>=2.18
31
+ Requires-Dist: xarray
32
+ Provides-Extra: dev
33
+ Requires-Dist: pytest>=8.0.0; extra == "dev"
34
+ Requires-Dist: pytest-xdist; extra == "dev"
35
+ Requires-Dist: pylint>=2.6.0; extra == "dev"
36
+ Requires-Dist: pyink; extra == "dev"
37
+ Provides-Extra: colab
38
+ Requires-Dist: psutil; extra == "colab"
39
+ Requires-Dist: python-calamine; extra == "colab"
40
+ Provides-Extra: and-cuda
41
+ Requires-Dist: tensorflow[and-cuda]<2.19,>=2.18; extra == "and-cuda"
42
+ Provides-Extra: mlflow
43
+ Requires-Dist: mlflow; extra == "mlflow"
44
+ Provides-Extra: jax
45
+ Requires-Dist: jax==0.4.26; extra == "jax"
46
+ Requires-Dist: jaxlib==0.4.26; extra == "jax"
47
+ Requires-Dist: tensorflow-probability[substrates-jax]==0.25.0; extra == "jax"
48
+ Provides-Extra: schema
49
+ Requires-Dist: mmm-proto-schema; extra == "schema"
50
+ Requires-Dist: semver; extra == "schema"
51
+ Dynamic: license-file
52
+
53
+ # About Meridian
54
+
55
+ Marketing mix modeling (MMM) is a statistical analysis technique that measures
56
+ the impact of marketing campaigns and activities to guide budget planning
57
+ decisions and improve overall media effectiveness. MMM uses aggregated data to
58
+ measure impact across marketing channels and account for non-marketing factors
59
+ that impact sales and other key performance indicators (KPIs). MMM is
60
+ privacy-safe and does not use any cookie or user-level information.
61
+
62
+ Meridian is an MMM framework that enables advertisers to set up and run their
63
+ own in-house models. Meridian helps you answer key questions such as:
64
+
65
+ * How did the marketing channels drive my revenue or other KPI?
66
+ * What was my marketing return on investment (ROI)?
67
+ * How do I optimize my marketing budget allocation for the future?
68
+
69
+ Meridian is a highly customizable modeling framework that is based on
70
+ [Bayesian causal inference](https://developers.google.com/meridian/docs/causal-inference/bayesian-inference).
71
+ It is capable of handling large scale geo-level data, which is encouraged if
72
+ available, but it can also be used for national-level modeling. Meridian
73
+ provides clear insights and visualizations to inform business decisions around
74
+ marketing budget and planning. Additionally, Meridian provides methodologies to
75
+ support calibration of MMM with experiments and other prior information, and to
76
+ optimize target ad frequency by utilizing reach and frequency data.
77
+
78
+ If you are using LightweightMMM, see the
79
+ [migration guide](https://developers.google.com/meridian/docs/migrate) to help
80
+ you understand the differences between these MMM projects.
81
+
82
+ ## Install Meridian
83
+
84
+ Python 3.11 or 3.12 is required to use Meridian. We also recommend using a
85
+ minimum of 1 GPU.
86
+
87
+ Note: This project has been tested on T4 GPU using 16 GB of RAM.
88
+
89
+ To install Meridian, run the following command to automatically install the
90
+ latest release from PyPI.
91
+
92
+ * For Linux-GPU users:
93
+
94
+ Note: CUDA toolchain and a compatible GPU device is necessary for
95
+ `[and-cuda]` extra to activate.
96
+
97
+ ```sh
98
+ $ pip install --upgrade google-meridian[and-cuda]
99
+ ```
100
+
101
+ * For macOS and general CPU users:
102
+
103
+ Note: There is no official GPU support for macOS.
104
+
105
+ ```sh
106
+ $ pip install --upgrade google-meridian
107
+ ```
108
+
109
+ Alternatively, run the following command to install the most recent, unreleased
110
+ version from GitHub.
111
+
112
+ * For GPU users:
113
+
114
+ ```sh
115
+ $ pip install --upgrade "google-meridian[and-cuda] @ git+https://github.com/google/meridian.git"
116
+ ```
117
+
118
+ * For CPU users:
119
+
120
+ ```sh
121
+ $ pip install --upgrade git+https://github.com/google/meridian.git
122
+ ```
123
+
124
+ We recommend to install Meridian in a fresh
125
+ [virtual environment](https://virtualenv.pypa.io/en/latest/user_guide.html#quick-start)
126
+ to make sure that correct versions of all the dependencies are installed, as
127
+ defined in [pyproject.toml](https://github.com/google/meridian/blob/main/pyproject.toml).
128
+
129
+ ## How to use the Meridian library
130
+
131
+ To get started with Meridian, you can run the code programmatically using sample
132
+ data with the [Getting Started Colab][3].
133
+
134
+ The Meridian model uses a holistic MCMC sampling approach called
135
+ [No U Turn Sampler (NUTS)](https://www.tensorflow.org/probability/api_docs/python/tfp/experimental/mcmc/NoUTurnSampler)
136
+ which can be compute intensive. To help with this, GPU support has been
137
+ developed across the library (out-of-the-box) using tensors. We recommend
138
+ running your Meridian model on GPUs to get real time optimization results and
139
+ significantly reduce training time.
140
+
141
+ ## Meridian Documentation & Tutorials
142
+
143
+ The following documentation, colab, and video resources will help you get
144
+ started quickly with using Meridian:
145
+
146
+ | Resource | Description |
147
+ | --------------------------- | ---------------------------------------------- |
148
+ | [Meridian documentation][1] | Main landing page for Meridian documentation. |
149
+ | [Meridian basics][2] | Learn about Meridian features, methodologies, and the model math. |
150
+ | [Getting started colab][3] | Install and quickly learn how to use Meridian with this colab tutorial using sample data. |
151
+ | [User guide][4] | A detailed walk-through of how to use Meridian and generating visualizations using your own data. |
152
+ | [Pre-modeling][5] | Prepare and analyze your data before modeling. |
153
+ | [Modeling][6] | Modeling guidance for model refinement and edge cases. |
154
+ | [Post-modeling][7] | Post-modeling guidance for model fit, visualizations, optimizations, refreshing the model, and debugging. |
155
+ | [Migrate from LMMM][8] | Learn about the differences between Meridian and LightweightMMM as you consider migrating. |
156
+ | [API Reference][9] | API reference documentation for the Meridian package. |
157
+ | [Reference list][10] | White papers and other referenced material. |
158
+
159
+ [1]: https://developers.google.com/meridian
160
+ [2]: https://developers.google.com/meridian/docs/basics/meridian-introduction
161
+ [3]: https://developers.google.com/meridian/notebook/meridian-getting-started
162
+ [4]: https://developers.google.com/meridian/docs/user-guide/installing
163
+ [5]: https://developers.google.com/meridian/docs/pre-modeling/collect-data
164
+ [6]: https://developers.google.com/meridian/docs/advanced-modeling/control-variables
165
+ [7]: https://developers.google.com/meridian/docs/post-modeling/model-fit
166
+ [8]: https://developers.google.com/meridian/docs/migrate
167
+ [9]: https://developers.google.com/meridian/reference/api/meridian
168
+ [10]: https://developers.google.com/meridian/docs/reference-list
169
+
170
+ ## Support
171
+
172
+ **Questions about methodology**: Please see the [Modeling](https://developers.google.com/meridian/docs/basics/meridian-introduction) tab in the technical documentation.
173
+
174
+ **Issues installing or using Meridian**: Feel free to post questions in the
175
+ [Discussions](https://github.com/google/meridian/discussions) or [Issues](https://github.com/google/meridian/issues) tabs of the Meridian GitHub repository. The Meridian team responds to
176
+ these questions weekly in batches, so please be patient and don't reach out
177
+ directly to your Google Account teams.
178
+
179
+ **Bug reports**: Please post bug reports to the [Issues](https://github.com/google/meridian/issues)
180
+ tab of the Meridian GitHub repository. We also encourage the community to share
181
+ tips and advice with each other on the [Issues](https://github.com/google/meridian/issues)
182
+ tab. When our team addresses or resolves a new bug, we will notify you through
183
+ the comments on the issue.
184
+
185
+ **Feature requests**: Please post these to the [Discussions](https://github.com/google/meridian/discussions)
186
+ tab of the Meridian GitHub repository. We have an internal roadmap for Meridian
187
+ development, but would love your inputs for new feature requests so that we can
188
+ prioritize them based on the roadmap.
189
+
190
+ **Pull requests**: These are appreciated but are very difficult for us to merge
191
+ because the code in this repository is linked to Google internal systems and has
192
+ to pass internal review. If you submit a pull request and we believe that we can
193
+ incorporate a change in the base code, we will reach out to you directly about
194
+ this.
195
+
196
+ ## Citing Meridian
197
+
198
+ To cite this repository:
199
+
200
+ <!-- mdlint off(SNIPPET_INVALID_LANGUAGE) -->
201
+ ```BibTeX
202
+ @software{meridian_github,
203
+ author = {Google Meridian Marketing Mix Modeling Team},
204
+ title = {Meridian: Marketing Mix Modeling},
205
+ url = {https://github.com/google/meridian},
206
+ version = {1.3.1},
207
+ year = {2025},
208
+ }
209
+ ```
@@ -0,0 +1,76 @@
1
+ google_meridian-1.3.1.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
2
+ meridian/__init__.py,sha256=0fOT5oNZF7-pbiWWGUefV-ysafttieG079m1ijMFQO8,861
3
+ meridian/constants.py,sha256=ZmMIoJDFQvKIOVG9oPOQ7Cj16wt4HDS5fCPBrz_KiLE,20308
4
+ meridian/version.py,sha256=mmCkrGRWB8mI33apVnverT2ysfJofSyhlXSCVNotj9U,644
5
+ meridian/analysis/__init__.py,sha256=NWDhtRkKs-n66C6746rXT7Wk8tLdkrT9NDvuPG_B_5c,874
6
+ meridian/analysis/analyzer.py,sha256=EUKoN69EEz4vt4BpyRvrwEoHt7eLZ8UM6emNe14Tbj0,219975
7
+ meridian/analysis/formatter.py,sha256=AN2M4jdUV88XjNdi5-dK_mITES1J1Dk3Zs7DYo3OTKg,7290
8
+ meridian/analysis/optimizer.py,sha256=RX8HXSUi-tvLSjzF2OIbXQT3pMT75PzA5Y0xK6PPE_I,126277
9
+ meridian/analysis/summarizer.py,sha256=7hHBf2Bj0lKqamg7DGvaKIuCf06CSsPPhDM2wKsXUPk,19035
10
+ meridian/analysis/summary_text.py,sha256=I_smDkZJYp2j77ea-9AIbgeraDa7-qUYyb-IthP2qO4,12438
11
+ meridian/analysis/test_utils.py,sha256=aZq88pxtpMHwhcpfYz8nHhR0Alhi_OvgS9qBR4LBgO0,78346
12
+ meridian/analysis/visualizer.py,sha256=1vjX3XQF_BoXEGDUS4o2GheZQ5c0VGdHuc-nXySnpsY,94091
13
+ meridian/analysis/review/__init__.py,sha256=cF24EbhiVSs-tvtRf59uVin39tu6aCTTCaeEdv6ISZ8,804
14
+ meridian/analysis/review/checks.py,sha256=CBBZ0uNN91b_0H9DGdbDRVdiTRI4D7xptLCq_gK5WAI,25002
15
+ meridian/analysis/review/configs.py,sha256=5JJ8v6n22GNBmE78xNX6jwdjkZz2qar4Q9YTcVqzcoI,3653
16
+ meridian/analysis/review/constants.py,sha256=bL-se2BFfRxPr3F0Rfpdy7d8s3idMoaka_t6hN1K3Sc,1369
17
+ meridian/analysis/review/results.py,sha256=jsOPohmwozCrx8yt9p7_GiVxGmRDVeAbA8W48MUfAPA,16168
18
+ meridian/analysis/review/reviewer.py,sha256=BcfmqHjp-30iZBlrzWfXDN1IJU-UIjINxZ7lsrj5Mts,6675
19
+ meridian/analysis/templates/card.html.jinja,sha256=pv4MVbQ25CcvtZY-LH7bFW0OSeHobkeEkAleB1sfQ14,1284
20
+ meridian/analysis/templates/chart.html.jinja,sha256=87i0xnXHRBoLLxBpKv2i960TLToWq4r1aVQZqaXIeMQ,1086
21
+ meridian/analysis/templates/chips.html.jinja,sha256=t-ovn-2pcPCn1ev1VtSaSC3W7QxSy_iAO_L5-p68mdg,1030
22
+ meridian/analysis/templates/insights.html.jinja,sha256=6hEWipbOMiMzs9QGZ6dcB_73tNkj0ZtNiC8E89a98zg,606
23
+ meridian/analysis/templates/stats.html.jinja,sha256=9hQOG02FX1IHVIvdWS_-LI2bbSaqdyHEtCZkiArwAg0,772
24
+ meridian/analysis/templates/style.css,sha256=RODTWc2pXcG9zW3q9SEJpVXgeD-WwQgzLpmFcbXPhLg,5492
25
+ meridian/analysis/templates/style.scss,sha256=nSrZOpcIrVyiL4eC9jLUlxIZtAKZ0Rt8pwfk4H1nMrs,5076
26
+ meridian/analysis/templates/summary.html.jinja,sha256=LuENVDHYIpNo4pzloYaCR2K9XN1Ow6_9oQOcOwD9nGg,1707
27
+ meridian/analysis/templates/table.html.jinja,sha256=mvLMZx92RcD2JAS2w2eZtfYG-6WdfwYVo7pM8TbHp4g,1176
28
+ meridian/backend/__init__.py,sha256=ftXcdb3tIky_m8exhD9RRhaEqTEvMcqZ8lGkkR1PjsE,39495
29
+ meridian/backend/config.py,sha256=B9VQnhBfg9RW04GNbt7F5uCugByenoJzt-keFLLYEp8,3561
30
+ meridian/backend/test_utils.py,sha256=DYU5IpWiyM26aTY9Q84mOGRw0dQ9XmsZRsAJNFuZDp0,11667
31
+ meridian/data/__init__.py,sha256=StIe-wfYnnbfUbKtZHwnAQcRQUS8XCZk_PCaEzw90Ww,929
32
+ meridian/data/arg_builder.py,sha256=Kqlt88bOqFj6D3xNwvWo4MBwNwcDFHzd-wMfEOmLoPU,3741
33
+ meridian/data/data_frame_input_data_builder.py,sha256=_hexZMFAuAowgo6FaOGElHSFHqhGnHQwEEBcwnT3zUE,27295
34
+ meridian/data/input_data.py,sha256=Qlxm4El6h1SRPsWDqZoKkOcMtrjiRWr3z8sU2mtghRA,43151
35
+ meridian/data/input_data_builder.py,sha256=tbZjVXPDfmtndVyJA0fmzGzZwZb0RCEjXOTXb-ga8Nc,25648
36
+ meridian/data/load.py,sha256=X2nmYCC-7A0RUgmdolTqCt0TD3NEZabQ5oGv-TugE00,40129
37
+ meridian/data/nd_array_input_data_builder.py,sha256=lfpmnENGuSGKyUd7bDGAwoLqHqteOKmHdKl0VI2wCQA,16341
38
+ meridian/data/test_utils.py,sha256=mw-QPTP15oXf32I7cxMe8iSFBLB3seqEiITZMTz_Eg8,59838
39
+ meridian/data/time_coordinates.py,sha256=C5A5fscSLjPH6G9YT8OspgIlCrkMY7y8dMFEt3tNSnE,9874
40
+ meridian/mlflow/__init__.py,sha256=elwXUqPQYi7VF9PYjelU1tydfcUrmtuoq6eJCOnV9bk,693
41
+ meridian/mlflow/autolog.py,sha256=SZsrynLjozcyrAFCNWiqchSa2yOszVnwFBGz23BmWUU,6379
42
+ meridian/model/__init__.py,sha256=mhF5VkRxvwamRa_0AihgbFuXLMueRCK-Je_ZZvU5IFw,1013
43
+ meridian/model/adstock_hill.py,sha256=HoRKjyL03pCTBz6Utof9wEvlQCFM43BvrEW_oupj7NU,17688
44
+ meridian/model/knots.py,sha256=87kw5oa3T1k9GgT_aWXTqQx5XCxLsS2w1hnzc581XL0,26677
45
+ meridian/model/media.py,sha256=skjy4Vd8LfDQWlqR_2lJ1qbG9UcS1dow5W45BAu4qk8,14599
46
+ meridian/model/model.py,sha256=jMtfl7woWtJ8M8AX42QeZ5hUS8hlhPdZ-9OU8KahjKA,68984
47
+ meridian/model/model_test_data.py,sha256=XGBz8RGdCsjAUOmgxX3CfWSj-_hdq2Lc8saFCqmImwM,23901
48
+ meridian/model/posterior_sampler.py,sha256=f3MayglIgBeBjWeXJU_RgT9cCugcjJ3aEjHqaWPsTbg,26806
49
+ meridian/model/prior_distribution.py,sha256=ZArW4uXIPPQL6hRWiGZUzcHktbkjE_vOklvlbp9LR64,57662
50
+ meridian/model/prior_sampler.py,sha256=iLvCefhA4WY0ENcnLK9471WUZPPyzQ1je58MRjxKv74,25460
51
+ meridian/model/spec.py,sha256=VlK6WJiPo2lzOF0O2judtJ6O3uEw7wYL5AT8bioq4gE,19188
52
+ meridian/model/transformers.py,sha256=HxlVJitxP-wu-NOHU0tArFUZ4NAO3c7adAYj4Zvqnvo,8363
53
+ meridian/model/eda/__init__.py,sha256=w3p7ZUZLq5TOEHm8n2P1CWjGrzuNrkqSSnVFdlw17Dk,812
54
+ meridian/model/eda/constants.py,sha256=V9aOHQDvB3WAEyT0NE4gE8rqbStaGVh3XDlBPOKpuLc,739
55
+ meridian/model/eda/eda_engine.py,sha256=5Ikgiz-6d3uTBan71WwsgPHOqk0fAy390ZLCq9L6HoY,64846
56
+ meridian/model/eda/eda_outcome.py,sha256=P-0kNIbNXcyqMaNvFxiL3x6fhtYOL2trw-zPPZGXh5w,5670
57
+ meridian/model/eda/eda_spec.py,sha256=diieYyZH0ee3ZLy0rGFMcWrrgiUrz2HctMwOrmtJR6w,2871
58
+ meridian/model/eda/meridian_eda.py,sha256=GTdBaAtfsHS5s6P5ZESaeh1ElKV_o7dSqQosiMnFBKg,7537
59
+ schema/__init__.py,sha256=Df2XKjMKa0ry7CTlDuJnyxuTdSgAd5za922wMlE98cg,681
60
+ schema/serde/__init__.py,sha256=xyydIcWB5IUpcn3wu1m9HL1fK4gMWURbwTyRsQtolF0,975
61
+ schema/serde/constants.py,sha256=aYtD_RuA0GCkpC4TIQq3VjMqEc837Wn-TlJNm-yn_4Y,1842
62
+ schema/serde/distribution.py,sha256=jy3h6JD1TSs4gwociMis814sz_Fm2kFQ2UbkgjYJW9k,19347
63
+ schema/serde/eda_spec.py,sha256=uOqBeZpUU3Dzzc19rU1LjHWmUhRmVcx8oIZvZfVJHT8,7180
64
+ schema/serde/function_registry.py,sha256=GbgC5_9NDcA9Y7nqmdJ-4-LK5JPhhfI50Lmfy5ZBJOg,4858
65
+ schema/serde/hyperparameters.py,sha256=Igm-PZmIozrsKZH6c-XkrU_Nlf8OAuxpnJJfv7W1SfQ,13524
66
+ schema/serde/inference_data.py,sha256=DrwE9hU8LMrl0z8W_sUSIaPrRdym_lu0iOqpT4KZxsA,3623
67
+ schema/serde/marketing_data.py,sha256=yb-fRTe84Sjg7-v3wsvYRRXvrxLSFWSenO0_ikMvUpk,44845
68
+ schema/serde/meridian_serde.py,sha256=ZG05JaBG4LW8mhl-Cunje9Q6xyR4tyNTtLYedzMBYjA,15985
69
+ schema/serde/serde.py,sha256=8vUqhJxvZgX9UY3rXTyWJznRgapwDzzaHXDHwV_kKTA,1612
70
+ schema/serde/test_data.py,sha256=7hfEWyvZ9WcAkVAOXt6elX8stJlsfhfd-ASlHo9SRb8,107342
71
+ schema/utils/__init__.py,sha256=AkC4NMbmXC3PFBY9dFYxlf3qFsxt5OOBVdc9zmFXsC8,675
72
+ schema/utils/time_record.py,sha256=-KzHFjvSBUUXsfESPAfcJP_VFxaFLqj90Ac0kgKWfpI,4624
73
+ google_meridian-1.3.1.dist-info/METADATA,sha256=wu5D6r6v46vd5g4uKLfXEVuhxkO3jwEgS68wn6m0jR4,9547
74
+ google_meridian-1.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
75
+ google_meridian-1.3.1.dist-info/top_level.txt,sha256=yWkWDLV_UUanhKmk_xNPiKNdPDl1oyU1sBYwEnhaSf4,16
76
+ google_meridian-1.3.1.dist-info/RECORD,,
@@ -17,5 +17,7 @@
17
17
  from meridian.analysis import analyzer
18
18
  from meridian.analysis import formatter
19
19
  from meridian.analysis import optimizer
20
+ from meridian.analysis import review
20
21
  from meridian.analysis import summarizer
21
22
  from meridian.analysis import visualizer
23
+