Market Research using AI Evolutionary Algorithms and Multimodal Regression

Community Article Published June 16, 2024

In this article I'll propose a theoretical framework for conducting market research using evolutionary generative AI to create ads, test them in the market using a digital ads managers, and then use that data to train multimodal regression model to predict how well the generated ads will do. This process can be done iteratively to create a feedback loop.

image/png

Ad: Content + Audience

In this artcile we'll define an ad as content and audience. The content is an image and some text. image/png

The audience is who is going to see the ad, in this case age, gender, and location. While there are plenty of other variables we can use for this (interests, placement, platform, etc.), we're going to keep it simple and only use three. image/png

The ad is the granular unit of our framework. In evolutionary alogrithms it might be called a "dna" or "genome". It describes what the ad looks like and who its going to be delivered to.

image/png

AI Ad Generation

First we'll need to generate an initial ad batch. We'll start will some seeds that will need to be generate manually. Then we'll feed these seed ads into our evolutionary AI generator to generate a bunch of combinations and variations. image/png

The evolutionary AI generator will use the manually create seed ads as its "dna", it'll pick 2 random seeds, mate them, and produce a new ad that has some characteristics from both of its parents. It will also introduce some randomness, or genetic mutation.

The formula is:

Generation(ad1,ad2)=ad1ad2+randomness \text{Generation}(\text{ad}_1, \text{ad}_2) = \text{ad}_1 * \text{ad}_2 + \text{randomness}

Here's an example of what a generation might look like. image/png

We can see the child image, text, age, and gender is a blend of its two parents. The location is an example of a random mutation, it's completely different than its two parents. The image generation was created with my Image Blender 🤗 Space and the text blending was done with Chat GPT.

Ad Testing: Scoring the Ad

For our initial batch we'll start small, say 100 ads. Then we'll need to test them in the market using a digital ads manager such as Meta, SnapChat, or Pinterest. Most ad managers will allow you allocate as little at $1 for an advertising bugdet, but considering we have 100 ads it would make more sense to allocate at least $20.

The primary metric we'll consider in our ad testing is click rate. I.e. out of 100 people that see the ad, how many poeple will click it. So the input into the system is an ad (content + audience) and the output is the click rate. image/png

Multimodal Regression

Once we do our ad testing we'll have a nice dataset consisting of the 100 ads and their respective scores or click rates. We can use this dataset to create a machine learning model, specifically a multimodal regression model. The model will have 6 inputs: content image, content text, audience age, audience gender, and audience location. And 1 output: click rate.

image/png

Now that we've trained our multimodal regression model, we'll have a way to predict the click rate of any abritrary ad.

Generation-Regression Feedback

Using the ads we just tested as the seeds, we'll feed them into the evolutionary AI generator to create a huge batch of ads. Then we'll take that huge batch, say 10,000 ads, and run them through our multimodal regression model to predict the click rate of each one. Using these predictions we'll only take the top 100 (1%) to use in our next batch of ad testing. Once we test our new ad batch, we'll take the data of the ads and the click rates to fine-tune our multimodal regression model. image/png

As you can see we've created a feedback loop. The ads we just tested will be the seeds for the next round of batch ad generation. The ad batch will fed into the updated multimodal regression model to find the ads with the highest predict scores which will be tested in the market. So on and so forth.

Pseudocode

Although this framework is theoretical, it is very possible to implement:

# Feed the manually-created seed ads into the generator to create an initial batch of 100 ads
initial_ad_batch = evolutionary_generator(seeds=seed_ads, num=100)

# Test the ads in the market 
ad_testing_data = deliver_ads(initial_ad_batch)

# Train a model that takes an ad as input and predicts the click rate
multimodal_regression_model = train_model(ad_testing_data)

# Feedback loop
for(num_iterations):
  # Feed the ad batch of 100 to the generator to create 10,000 ads
  large_ad_batch = evolutionary_generator(seeds=initial_ad_batch, num=10000)

  # Use the model to filter out the top 100 ads
  top_scoring_ads = multimodal_regression_model(large_ad_batch)

  # Test the ads in the market
  ad_testing_data = deliver_ads(top_scoring_ads)

  # Fine-tune the model with the new ad testing data
  multimodal_regression_model = train_model(ad_testing_data)

  # This current batch of top 100 ads will be the seed ads in the next iteration
  initial_ad_batch = top_scoring_ads

About Me

Hello, my name is Tony Assi. I'm a designer based in Los Angeles. I have a background in software, fashion, and marketing. I currently work for an e-commerce fashion brand. Check out my 🤗 profile for more apps, models and datasets.

Feel free to send me an email at tony.assi.media@gmail.com with any questions, comments, business inquiries or job offers.