piotr-szleg-bards-ai commited on
Commit
c62f49a
·
1 Parent(s): 8530cb4

2024-02-09 10:02:57 Publish script update

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,9 +9,9 @@ from pipeline.config import LLMBoardConfig, QueriesConfig
9
 
10
  README = """
11
  Projects compares different large language models and their providers for real time applications and mass data processing.
12
- While other benchmarks compare LLMs on different human intelligence tasks this bencchmark focus on features related to business and engineering aspects such as response times, pricing and data streaming capabilities.
13
 
14
- To preform evaluation we chose a task of newspaper articles summarization from DATASET_LINK/NAME as it represents a very standard type of task where model has to understand unstructured natural language text, process it and output text in a specified format.
15
  For this version we chose English, Polish and Japanese languages, with Japanese representing languages using logographic alphabets. This enable us also validate the effectiveness of the LLM for different language groups.
16
 
17
  Each of the models was asked to summarize the text using the following prompt:
@@ -20,7 +20,7 @@ Each of the models was asked to summarize the text using the following prompt:
20
  {}
21
  ```
22
 
23
- Where \{language\} stands for original language of the text as we wanted to avoid the model translating the text to English during summarization.
24
 
25
  LLM was asked to return the output in three formats: markdown, json and function call. Note that currently function calls are only supported by Open AI API.
26
  To do that we added following text to the query:
 
9
 
10
  README = """
11
  Projects compares different large language models and their providers for real time applications and mass data processing.
12
+ While other benchmarks compare LLMs on different human intelligence tasks this benchmark focus on features related to business and engineering aspects such as response times, pricing and data streaming capabilities.
13
 
14
+ To preform evaluation we chose a task of newspaper articles summarization from [GEM/xlsum](https://huggingface.co/datasets/GEM/xlsum) dataset as it represents a very standard type of task where model has to understand unstructured natural language text, process it and output text in a specified format.
15
  For this version we chose English, Polish and Japanese languages, with Japanese representing languages using logographic alphabets. This enable us also validate the effectiveness of the LLM for different language groups.
16
 
17
  Each of the models was asked to summarize the text using the following prompt:
 
20
  {}
21
  ```
22
 
23
+ Where {{language}} stands for original language of the text as we wanted to avoid the model translating the text to English during summarization.
24
 
25
  LLM was asked to return the output in three formats: markdown, json and function call. Note that currently function calls are only supported by Open AI API.
26
  To do that we added following text to the query: