From 8233e6d1916630565d065075d75c37d915012910 Mon Sep 17 00:00:00 2001
From: Ethan Wu <64718929+thetawom@users.noreply.github.com>
Date: Wed, 24 Jan 2024 19:24:49 -0800
Subject: [PATCH] docs: fix broken README links
---
README.md | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index effff21..050395e 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-
+
[![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:
@@ -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
@@ -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.