Skip to content

Commit

Permalink
docs: fix broken README links
Browse files Browse the repository at this point in the history
  • Loading branch information
thetawom committed Jan 25, 2024
1 parent ee80459 commit 8233e6d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<h1 align="center">
<img src="https://raw.githubusercontent.com/ew2664/mabby/main/assets/mabby-logo-title.png" width="500">
<img src="https://raw.githubusercontent.com/thetawom/mabby/main/assets/mabby-logo-title.png" width="500">
</h1>

[![PyPI](https://img.shields.io/pypi/v/mabby)](https://pypi.org/project/mabby/)
[![license](https://img.shields.io/github/license/ew2664/mabby)](https://github.com/ew2664/mabby/blob/main/LICENSE)
[![issues](https://img.shields.io/github/issues/ew2664/mabby)](https://github.com/ew2664/mabby/issues)
[![build](https://img.shields.io/github/actions/workflow/status/ew2664/mabby/build.yml)](https://github.com/ew2664/mabby/actions/workflows/build.yml)
[![docs](https://img.shields.io/github/actions/workflow/status/ew2664/mabby/docs.yml?label=docs)](https://ew2664.github.io/mabby/)
[![coverage](https://coveralls.io/repos/github/ew2664/mabby/badge.svg)](https://coveralls.io/github/ew2664/mabby)
[![license](https://img.shields.io/github/license/thetawom/mabby)](https://github.com/thetawom/mabby/blob/main/LICENSE)
[![issues](https://img.shields.io/github/issues/thetawom/mabby)](https://github.com/thetawom/mabby/issues)
[![build](https://img.shields.io/github/actions/workflow/status/thetawom/mabby/build.yml)](https://github.com/thetawom/mabby/actions/workflows/build.yml)
[![docs](https://img.shields.io/github/actions/workflow/status/thetawom/mabby/docs.yml?label=docs)](https://thetawom.github.io/mabby/)
[![coverage](https://coveralls.io/repos/github/thetawom/mabby/badge.svg)](https://coveralls.io/github/thetawom/mabby)

**mabby** is a library for simulating [multi-armed bandits (MABs)](https://en.wikipedia.org/wiki/Multi-armed_bandit), a resource-allocation problem and framework in reinforcement learning. It allows users to quickly yet flexibly define and run bandit simulations, with the ability to:

Expand All @@ -27,7 +27,7 @@ pip install mabby

## Basic Usage

The code example below demonstrates the basic steps of running a simulation with **mabby**. For more in-depth examples, please see the [Usage Examples](https://ew2664.github.io/mabby/examples/) section of the **mabby** documentation.
The code example below demonstrates the basic steps of running a simulation with **mabby**. For more in-depth examples, please see the [Usage Examples](https://thetawom.github.io/mabby/examples/) section of the **mabby** documentation.

```python
import mabby as mb
Expand All @@ -50,8 +50,8 @@ stats.plot_regret()

## Contributing

Please see [CONTRIBUTING](https://ew2664.github.io/mabby/contributing/) for more information.
Please see [CONTRIBUTING](https://thetawom.github.io/mabby/contributing/) for more information.

## License

This software is licensed under the Apache 2.0 license. Please see [LICENSE](https://ew2664.github.io/mabby/license/) for more information.
This software is licensed under the Apache 2.0 license. Please see [LICENSE](https://thetawom.github.io/mabby/license/) for more information.

0 comments on commit 8233e6d

Please sign in to comment.