del [TIP]

This commit is contained in:
jnanliu 2025-02-26 04:01:05 +00:00
parent 46cd631e13
commit 97594676e8
3 changed files with 1 additions and 4 deletions

View File

@ -101,7 +101,6 @@ afqmc_datasets = [
```
> \[!TIP\]
> Additionally, for binary evaluation metrics (such as accuracy, pass-rate, etc.), you can also set the parameter `k` in conjunction with `n` for [G-Pass@k](http://arxiv.org/abs/2412.13147) evaluation. The formula for G-Pass@k is:
>
> ```{math}

View File

@ -100,7 +100,6 @@ afqmc_datasets = [
]
```
> \[!TIP\]
> 另外对于二值评测指标例如accuracypass-rate等还可以通过设置参数`k`配合`n`进行[G-Pass@k](http://arxiv.org/abs/2412.13147)评测。G-Pass@k计算公式为
>
> ```{math}

View File

@ -1,4 +1,3 @@
from abc import abstractstaticmethod
from copy import deepcopy
from typing import Dict, List, Optional, Union
@ -55,6 +54,6 @@ class BaseDataset:
def test(self):
return self.reader.dataset['test']
@abstractstaticmethod
@staticmethod
def load(**kwargs) -> Union[Dataset, DatasetDict]:
pass