Skip to main content

Implementation of Exponential weighting for Exploration and Exploitation with Experts.

Project description

EXP4

A python implementation of Exponential weighting for Exploration and Exploitation with Experts. Based on this blog post.

Build Status PyPI version License: MIT

Table of Contents

Installation

If you just need to use exp4, you can just run:

$ pip install exp4

For developers, note that this project uses the poetry python package/dependency management tool. Please familarize yourself with it and then run:

$ poetry install

Usage

exp4 is centered around the exp4.exp4 function which creates a co-routine for selecting arms given expert advice.

The protocol is as follows:

  1. The expert constructs an expert advice matrix.
    • Each row contains the corresponding experts advice vector.
    • The advice vector provides probabilities for each arm.
  2. The expert sends a tuple of loss and advice.
    • The loss corresponds to the previous round.
    • The first round's loss is ignored.
    • The advice correspond to the current round.

An example is given below.

player = exp4()

loss = None           # Will be ignored.
advice = [
    [1/3, 1/3, 1/3],  # Expert 1 
    [2/3, 1/3, 0],    # Expert 2
]
arm = player.send((loss, advice))
assert arm in range(3)

loss = 1 / (1 + arm)  # Arbitrary loss assigned to arm.
advice = [
    [0, 0, 1],        # Expert 1
    [0, 0, 1],        # Expert 2
]
arm = player.send((loss, advice))
assert arm == 2

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

exp4-0.1.1.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

exp4-0.1.1-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file exp4-0.1.1.tar.gz.

File metadata

  • Download URL: exp4-0.1.1.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.6 Linux/5.13.4-1-MANJARO

File hashes

Hashes for exp4-0.1.1.tar.gz
Algorithm Hash digest
SHA256 850e37bc4ea2afab4a40bc74f621ce9775755c77ab04d7de9f27a231da7893c3
MD5 6b6aa6b585fdf57afed8eb5e285dc1a4
BLAKE2b-256 16add717b678949a5cea92b02c32f0b1cbb2b19c3ee2e6ecb8e7ef25b665f5e9

See more details on using hashes here.

File details

Details for the file exp4-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: exp4-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.6 Linux/5.13.4-1-MANJARO

File hashes

Hashes for exp4-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c8dc9460d0000656c6319dc452c22ac19505958511a73449cbbbe5057f0ec6bd
MD5 72850cf67d9c20be890787cfda5f0746
BLAKE2b-256 e4bc31bf3b935db2db06d05b03731978657b6285118c82e54d06513e8aed6874

See more details on using hashes here.

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