Spaces:
Sleeping
Sleeping
File size: 1,703 Bytes
5657307 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# Installation
Before you start, you will need to setup your environment and install the appropriate packages. π€ Evaluate is tested on **Python 3.7+**.
## Virtual environment
You should install π€ Evaluate in a [virtual environment](https://docs.python.org/3/library/venv.html) to keep everything neat and tidy.
1. Create and navigate to your project directory:
```bash
mkdir ~/my-project
cd ~/my-project
```
2. Start a virtual environment inside the directory:
```bash
python -m venv .env
```
3. Activate and deactivate the virtual environment with the following commands:
```bash
# Activate the virtual environment
source .env/bin/activate
# Deactivate the virtual environment
source .env/bin/deactivate
```
Once you have created your virtual environment, you can install π€ Evaluate in it.
## pip
The most straightforward way to install π€ Evaluate is with pip:
```bash
pip install evaluate
```
Run the following command to check if π€ Evaluate has been properly installed:
```bash
python -c "import evaluate; print(evaluate.load('exact_match').compute(references=['hello'], predictions=['hello']))"
```
This should return:
```bash
{'exact_match': 1.0}
```
## source
Building π€ Evaluate from source lets you make changes to the code base. To install from source, clone the repository and install with the following commands:
```bash
git clone https://github.com/huggingface/evaluate.git
cd evaluate
pip install -e .
```
Again, you can check if π€ Evaluate has been properly installed with:
```bash
python -c "import evaluate; print(evaluate.load('exact_match').compute(references=['hello'], predictions=['hello']))"
``` |