Spaces:
No application file
No application file
Update record_interestingness.py
Browse files
tools/record_interestingness.py
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
"""Template for custom function or Pydantic model."""
|
|
|
|
|
|
|
| 2 |
|
| 3 |
def record_interestingness(titles: list[str], uninteresting: list[bool]) -> None:
|
| 4 |
"""Label the interestingness of the entries.
|
|
|
|
| 1 |
"""Template for custom function or Pydantic model."""
|
| 2 |
+
import csv
|
| 3 |
+
from pathlib import Path
|
| 4 |
|
| 5 |
def record_interestingness(titles: list[str], uninteresting: list[bool]) -> None:
|
| 6 |
"""Label the interestingness of the entries.
|