Update README.md
Browse files
README.md
CHANGED
@@ -14,16 +14,27 @@ metrics:
|
|
14 |
datasets:
|
15 |
- sst
|
16 |
- sst2
|
|
|
|
|
|
|
17 |
results:
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
datasets:
|
15 |
- sst
|
16 |
- sst2
|
17 |
+
|
18 |
+
model-index:
|
19 |
+
- name: rttl-ai/SentyBert
|
20 |
results:
|
21 |
+
- task:
|
22 |
+
type: task-classification # Required. Example: automatic-speech-recognition
|
23 |
+
name: Text Classification # Optional. Example: Speech Recognition
|
24 |
+
dataset:
|
25 |
+
type: sst2 # Required. Example: common_voice. Use dataset id from https://hf.co/datasets
|
26 |
+
name: sst2 # Required. A pretty name for the dataset. Example: Common Voice (French)
|
27 |
+
config: default # Optional. The name of the dataset configuration used in `load_dataset()`. Example: fr in `load_dataset("common_voice", "fr")`. See the `datasets` docs for more info: https://huggingface.co/docs/datasets/package_reference/loading_methods#datasets.load_dataset.name
|
28 |
+
split: validation # Optional. Example: test
|
29 |
+
revision: {dataset_revision} # Optional. Example: 5503434ddd753f426f4b38109466949a1217c2bb
|
30 |
+
args:
|
31 |
+
{arg_0}: {value_0} # Optional. Additional arguments to `load_dataset()`. Example for wikipedia: language: en
|
32 |
+
{arg_1}: {value_1} # Optional. Example for wikipedia: date: 20220301
|
33 |
+
metrics:
|
34 |
+
- type: f1 # Required. Example: wer. Use metric id from https://hf.co/metrics
|
35 |
+
value: 0.9992 # Required. Example: 20.90
|
36 |
+
name: f1 Macro # Optional. Example: Test WER
|
37 |
+
config: {metric_config} # Optional. The name of the metric configuration used in `load_metric()`. Example: bleurt-large-512 in `load_metric("bleurt", "bleurt-large-512")`. See the `datasets` docs for more info: https://huggingface.co/docs/datasets/v2.1.0/en/loading#load-configurations
|
38 |
+
args:
|
39 |
+
{arg_0}: {value_0} # Optional. The arguments passed during `Metric.compute()`. Example for `bleu`: max_order: 4
|
40 |
+
verified: true
|