Robyn: Continuous & Semi-Automated MMM. The Open Source Marketing Mix Model Package from Meta Marketing Science
Project description
Robyn: Continuous & Semi-Automated MMM
The Open Source Marketing Mix Model Package from Meta Marketing Science
Introduction
-
What is Robyn?: Robyn is an experimental, semi-automated and open-sourced Marketing Mix Modeling (MMM) package from Meta Marketing Science. It uses various machine learning techniques (Ridge regression, multi-objective evolutionary algorithm for hyperparameter optimization, time-series decomposition for trend & season, gradient-based optimization for budget allocation, clustering, etc.) to define media channel efficiency and effectivity, explore adstock rates and saturation curves. It's built for granular datasets with many independent variables and therefore especially suitable for digital and direct response advertisers with rich data sources.
-
Why are we doing this?: MMM used to be a resource-intensive technique that was only affordable for "big players". As the privacy needs of the measurement landscape evolve, there's a clear trend of increasing demand for modern MMM as a privacy-safe solution. At Meta Marketing Science, our mission is to help all businesses grow by transforming marketing practices grounded in data and science. It's highly aligned with our mission to democratizing MMM and making it accessible for advertisers of all sizes. With Project Robyn, we want to contribute to the measurement landscape, inspire the industry and build a community for exchange and innovation around the future of MMM and Marketing Science in general.
Quick start for Python (Beta)
The Python version of Robyn is rewritten from Robyn's R package version 3.11.1 to Python using object oriented programming principles and modular architecture for a robust solution. It was developed by utilizing various LLMs and AI workflows. As is common with any AI-based solutions, there may be potential challenges in translating code from one language to another.
In this case, we anticipate that there could be some issues in the translation from R to Python. However, we believe in the power of community collaboration and open-source contribution. Therefore, we are opening this project to the community to participate and contribute.
Together, we can address and resolve any issues that may arise, enhancing the functionality and efficiency of the Python version of Robyn. We look forward to your contributions and to the continuous improvement of this project.
1. Installing the package
Prerequisites:
- Make sure you have R installed on your machine. You can download R from the official R Project website.
- Install the glmnet package in R:
Windows:
# Open R console (run in Command Prompt/PowerShell)
R
# Then in R console, install glmnet
install.packages("glmnet")
# Exit R console
q()
macOS/Linux:
# Open terminal and run R
R
# Then in R console, install glmnet
install.packages("glmnet")
# Exit R console
q()
First, create and activate a Python virtual environment (recommended):
Windows:
# Create virtual environment
python -m venv robyn-env
# Activate virtual environment
robyn-env\Scripts\activate
macOS/Linux:
# Create virtual environment
python3 -m venv robyn-env
# Activate virtual environment
source robyn-env/bin/activate
Then install Robyn:
# Install from PyPI (stable version)
pip install robynpy
# OR install development version from GitHub
git clone https://github.com/facebookexperimental/Robyn.git
cd Robyn
pip install -r requirements.txt
2. Getting started
-
python/src/robyn/tutorials contains tutorials for most common scenarios. Tutorials use simulated dataset provided in the package.
-
There are two ways of running Python Robyn; one is
tutorial1.ipynband second istutorial1_src.ipynb.
3. Running end-to-end
Option 1:
-
tutorial1.ipynbis the main notebook that runs the end-to-end flow. It is designed for majority of the users who would prefer a one click solution that runs the robyn flow end-to-end with minimal knowledge of the underlying logic. It should run without any changes required if you wish to use the simulated dataset for testing purposes. -
This notebook uses APIs available in
python/src/robyn/robyn.pyto set the configs, run feature engineering, run model training, evaluate models with clustering, generate one pagers and perform budget allocation. -
Change any of the configs directly in the notebook and avoid changes to robyn.py for what can be configurable.
Option 2:
-
tutorial1_src.ipynbruns the end-to-end flow of robyn python but with a lot more flexibility. It is designed for users who would like to have more control over which modules are and aren't run (ie. skipping clustering/one pager plots/budget allocation etc.). It should run without any changes required if you wish to use the simulated dataset for testing purposes. -
This notebook doesn't use APIs available in
python/src/robyn/robyn.pybut instead, calls the modules directly with the appropriate parameters. In this way, it is more flexible but still expects the users to understand the underlying logic that may change when using various parameter values.
Helpful Links
-
Visit our website to explore more details about Project Robyn.
-
Join our public group to exchange with other users and interact with team Robyn.
-
Take Meta's official Robyn blueprint course online
License
Meta's Robyn is MIT licensed, as found in the LICENSE file.
- Terms of Use - https://opensource.facebook.com/legal/terms
- Privacy Policy - https://opensource.facebook.com/legal/privacy
- Defensive Publication - https://www.tdcommons.org/dpubs_series/4627/
Contact
- gufeng@meta.com, Gufeng Zhou, Marketing Science, Robyn creator
- igorskokan@meta.com, Igor Skokan, Marketing Science Director, open source
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file robynpy-0.3.6.tar.gz.
File metadata
- Download URL: robynpy-0.3.6.tar.gz
- Upload date:
- Size: 564.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd62bf610e01d5a86da3f8a7042c211b4b4af629b9b859e83353f7ede57a19af
|
|
| MD5 |
f0b2413489daab411a7d2d357558628d
|
|
| BLAKE2b-256 |
2228a67178eea15d4064b21ce5b0c271c46af7c14da677229f4421606caffd25
|
File details
Details for the file robynpy-0.3.6-py3-none-any.whl.
File metadata
- Download URL: robynpy-0.3.6-py3-none-any.whl
- Upload date:
- Size: 593.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d41fa0800f8655ebc155b72cb1180ee6fe6bc70cc96a8583b47307c1d1b32871
|
|
| MD5 |
c6d4611a3133dd35b5768c5e68a5d0b3
|
|
| BLAKE2b-256 |
467ff8e5e780239d38f29aa6049d45acbf1043f6d7240acfd31ba358e75a6eda
|