Skip to content

Commit

Permalink
add examples link to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Oege Dijk committed Dec 8, 2023
1 parent a315d88 commit e479c79
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Simplebandit is a lightweight typescript/javascript library for contextual bandi

It provides classes and interfaces to create and manage bandit models, generate recommendations, select actions, and update your models. Easily integrates with e.g. React Native to support privacy sensitive and fully interpretable recommendations right on a user's device.

You can find the live examples deployed at [https://thoughtworks.github.io/simplebandit/](https://thoughtworks.github.io/simplebandit/).

Under the hood it's a online logistic regression oracle with softmax exploration.

## Installation
Expand Down Expand Up @@ -230,8 +232,10 @@ slate = bandit.slate(context, { include: ["banana", "pear"] });

## Examples

There are several usage examples provided in the `examples/` folder made with react.
You can run the examples with e.g. `parcel index.html` or `make examples` and then view them on `http://localhost:1234`.
There are several usage examples provided in the `examples/` folder (built with react).
You can run the examples with e.g. `parcel examples/index.html` or `make example` and then view them on e.g. `http://localhost:1234`.

Or simply visit [https://thoughtworks.github.io/simplebandit/](https://thoughtworks.github.io/simplebandit/).

## Testing

Expand Down

0 comments on commit e479c79

Please sign in to comment.