Metadata-Version: 2.1
Name: minari
Version: 0.3.1
Summary: A standard format for offline reinforcement learning datasets, with popular reference datasets and related utilities.
Author-email: Farama Foundation <contact@farama.org>
License: MIT License
Project-URL: Homepage, https://farama.org
Project-URL: Repository, https://github.com/Farama-Foundation/Minari
Project-URL: Documentation, https://minari.farama.org/
Project-URL: Bug Report, https://github.com/Farama-Foundation/Minari/issues
Keywords: Reinforcement Learning,Offline RL,RL,AI,gymnasium,Farama
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: testing
License-File: LICENSE

<p align="center">
    <img src="minari-text.png" width="500px"/>
</p>

Minari is a Python library for conducting research in offline reinforcement learning, akin to an offline version of Gymnasium or an offline RL version of HuggingFace's datasets library. This library is currently in beta.

The documentation website is at [minari.farama.org](https://minari.farama.org/main/). We also have a public discord server (which we use for Q&A and to coordinate development work) that you can join here: https://discord.gg/bnJ6kubTg6.

Note: Minari was previously developed under the name Kabuki.


## Installation

Currently the beta release is under development. If you'd like to start testing or contribute to Minari please install this project from source with: 

```bash
git clone https://github.com/Farama-Foundation/Minari.git
cd Minari
pip install -e .
```

## Getting Started

For an introduction to Minari, see [Basic Usage](https://minari.farama.org/main/content/basic_usage/). To create new datasets using Minari, see our [Pointmaze D4RL Dataset](https://minari.farama.org/main/tutorials/dataset_creation/point_maze_dataset/) tutorial, which re-creates the Maze2D datasets from [D4RL](https://github.com/Farama-Foundation/D4RL).

## API 

To check available remote datasets:

```python
import minari

minari.list_remote_datasets()
```

To check available local datasets:

```python
import minari

minari.list_local_datasets()
```

To download a dataset:

```python
import minari

dataset = minari.download_dataset("LunarLander_v2_remote-test-dataset")
```

## Project Maintainers
Main Contributors: [Rodrigo Perez-Vicente](https://github.com/rodrigodelazcano), [Omar Younis](https://github.com/younik)

Maintenance for this project is also contributed by the broader Farama team: [farama.org/team](https://farama.org/team).

___

_Minari is a shortening of Minarai, the Japanese word for "learning by observation"._
