Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carperai/cheese
Used for adaptive human in the loop evaluation of language and embedding models.
https://github.com/carperai/cheese
Last synced: 25 days ago
JSON representation
Used for adaptive human in the loop evaluation of language and embedding models.
- Host: GitHub
- URL: https://github.com/carperai/cheese
- Owner: CarperAI
- License: mit
- Created: 2022-01-30T18:24:51.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T13:22:37.000Z (almost 2 years ago)
- Last Synced: 2024-11-10T17:47:57.059Z (about 1 month ago)
- Language: Python
- Size: 500 KB
- Stars: 303
- Watchers: 10
- Forks: 24
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-colab-project - CHEESE
README
[![DOI](https://zenodo.org/badge/453764663.svg)](https://zenodo.org/badge/latestdoi/453764663)
[docs-image]: https://readthedocs.org/projects/cheese1/badge/?version=latest
[docs-url]: https://cheese1.readthedocs.io/en/latest/?badge=latest# Coadaptive Harness for Effective Evaluation, Steering, & Enhancement
Used for adaptive human in the loop evaluation of language and embedding models.---------------------------------------------------------------------------------------
[![Docs Status][docs-image]][docs-url]
**[Documentation](https://cheese1.readthedocs.io)**
# Getting Started
First install the required packages:
```
git clone https://github.com/carperai/cheese
cd cheese
pip install -r requirements.txt
```You need rabbitmq for the messaging system in the backend. It can be installed easily with conda as follows:
```
conda install -c conda-forge rabbitmq-server
```
Then start the server (should do this on a different screen/window)
```
rabbitmq-server
```
Note that because of how rabbitmq works, it is possible several items may remain in the queue after your application using CHEESE has terminated. If the server is not shut down and restarted, then subsequent uses of CHEESE may end up drawing from items that were placed in the queue in a previous run.
As an example, the following script runs an image selection task, where two images from LAION-art dataset are presented and the labeller is asked to choose one.
```
python -m examples.image_selection
```# Custom tasks in Gradio
Refer to examples/image_selection.py for a comprehensive example on how to create your own custom task with a Gradio UI.