Spaces:
Build error
Build error
Update docs.
Browse files- README.md +1 -1
- vendiscore.py +2 -4
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
datasets:
|
| 4 |
-
|
| 5 |
tags:
|
|
|
|
| 1 |
---
|
| 2 |
+
title: vendiscore
|
| 3 |
datasets:
|
| 4 |
-
|
| 5 |
tags:
|
vendiscore.py
CHANGED
|
@@ -11,8 +11,6 @@
|
|
| 11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
# See the License for the specific language governing permissions and
|
| 13 |
# limitations under the License.
|
| 14 |
-
"""TODO: Add a description here."""
|
| 15 |
-
|
| 16 |
import evaluate
|
| 17 |
import datasets
|
| 18 |
import numpy as np
|
|
@@ -58,13 +56,13 @@ Args:
|
|
| 58 |
Returns:
|
| 59 |
VS: The Vendi Score.
|
| 60 |
Examples:
|
| 61 |
-
>>>
|
| 62 |
>>> samples = ["Look, Jane.",
|
| 63 |
"See Spot.",
|
| 64 |
"See Spot run.",
|
| 65 |
"Run, Spot, run.",
|
| 66 |
"Jane sees Spot run."]
|
| 67 |
-
>>> results =
|
| 68 |
>>> print(results)
|
| 69 |
{'VS': 3.90657...}
|
| 70 |
"""
|
|
|
|
| 11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
# See the License for the specific language governing permissions and
|
| 13 |
# limitations under the License.
|
|
|
|
|
|
|
| 14 |
import evaluate
|
| 15 |
import datasets
|
| 16 |
import numpy as np
|
|
|
|
| 56 |
Returns:
|
| 57 |
VS: The Vendi Score.
|
| 58 |
Examples:
|
| 59 |
+
>>> vendiscore = evaluate.load("danf0/vendiscore")
|
| 60 |
>>> samples = ["Look, Jane.",
|
| 61 |
"See Spot.",
|
| 62 |
"See Spot run.",
|
| 63 |
"Run, Spot, run.",
|
| 64 |
"Jane sees Spot run."]
|
| 65 |
+
>>> results = vendiscore.compute(samples, k="ngram_overlap", ns=[1, 2])
|
| 66 |
>>> print(results)
|
| 67 |
{'VS': 3.90657...}
|
| 68 |
"""
|