Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
100K - 1M
Tags:
structure-prediction
License:
Automatically use Notebook tqdm when relevant
Browse filestqdm.autonotebook (https://tqdm.github.io/docs/shortcuts/#tqdmautonotebook) is a shortcut to either load `tqdm.std`, i.e. the default, or `tqdm.notebook`, i.e. tqdm for notebooks. This allows the progress bars to be printed nicely in notebooks without changes to other environments.
- few-nerd.py +1 -1
few-nerd.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import os
|
| 2 |
import json
|
| 3 |
import datasets
|
| 4 |
-
from tqdm import tqdm
|
| 5 |
|
| 6 |
|
| 7 |
_CITATION = """
|
|
|
|
| 1 |
import os
|
| 2 |
import json
|
| 3 |
import datasets
|
| 4 |
+
from tqdm.autonotebook import tqdm
|
| 5 |
|
| 6 |
|
| 7 |
_CITATION = """
|