File size: 940 Bytes
2def8c0
 
 
 
 
 
 
 
 
 
249c88f
121d926
 
 
 
 
249c88f
121d926
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
title: Model Eval Be
emoji: πŸ†
colorFrom: green
colorTo: green
sdk: docker
pinned: false
---

Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference

## Setup Environment

```bash
python3 -m env model_be
source model_be/bin/activate
pip install -r requirements.txt
```

## Secret Variables

- FastAPI uses "AUTH_UUID" as an environment variable to authenticate. Add this variable to your .env file on development mode (local deployment). 
- If Huggingface space is used, set AUTH_UUID as a secret. (Set the same secret value in metunlp/backend)


## Add New Task (Development)
Under virtual environment lib/python3/site-packages/lm_eval/tasks , add your new task. Once you are certain that the task works, add the task to the github repository (which is specified in requirements.txt file)

## Run Application (port: 8080)
Change port or host on app.py if needed. 

```bash
python app.py
```