Skip to main content

An OpenAI Gym for Shopping Cart Reinforcement Learning

Project description

gym-display-advertising

An OpenAI Gym for Shopping Cart Reinforcement Learning.

This is a project by Winder Research, a Cloud-Native Data Science consultancy.

Installation

pip install gym-shopping-cart

Usage

This example will use the small example data included in the repo.

import gym
import gym_shopping_cart

env = gym.make("ShoppingCart-v0")
episode_over = False
rewards = 0
while not episode_over:
    state, reward, episode_over, _ = env.step(env.action_space.sample())
    print(state, reward)
    rewards += reward
print("Total reward: {}".format(rewards))

Real Shopping Cart Data

This environment uses real shopping cart information from the Instacart dataset.

To help read this data the library also comes with a data parser. This loads the raw data and cleans the data to be in a format expected by the environment.

Credits

Gitlab icon made by Freepik from www.flaticon.com.

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

gym_shopping_cart-0.0.1.tar.gz (23.1 kB view hashes)

Uploaded Source

Built Distribution

gym_shopping_cart-0.0.1-py3-none-any.whl (24.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page