Datasets:
Tasks:
Text Generation
Formats:
parquet
Sub-tasks:
language-modeling
Languages:
Danish
Size:
10M - 100M
ArXiv:
DOI:
License:
Kenneth Enevoldsen
commited on
format
Browse files
.vscode/data/memo/tmp/Corpus-v1.1
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 7205897f1f3ee65e296072f3e96d49488e54e8ce
|
src/dynaword/datasheet.py
CHANGED
@@ -11,7 +11,9 @@ from datasets import Dataset, IterableDataset, load_dataset
|
|
11 |
from pydantic import BaseModel, field_validator
|
12 |
|
13 |
from dynaword.descriptive_stats import DescriptiveStatsOverview
|
14 |
-
from dynaword.plots.descriptive_statistics_plots import
|
|
|
|
|
15 |
from dynaword.typings import DOMAIN, LICENSE, LICENSE_NAMES_MAPPING
|
16 |
|
17 |
logger = logging.getLogger(__name__)
|
|
|
11 |
from pydantic import BaseModel, field_validator
|
12 |
|
13 |
from dynaword.descriptive_stats import DescriptiveStatsOverview
|
14 |
+
from dynaword.plots.descriptive_statistics_plots import (
|
15 |
+
create_descriptive_statistics_plots,
|
16 |
+
)
|
17 |
from dynaword.typings import DOMAIN, LICENSE, LICENSE_NAMES_MAPPING
|
18 |
|
19 |
logger = logging.getLogger(__name__)
|
src/dynaword/plots/descriptive_statistics_plots.py
CHANGED
@@ -41,4 +41,4 @@ def create_descriptive_statistics_plots(
|
|
41 |
verbose=False,
|
42 |
)
|
43 |
|
44 |
-
return save_path, plot
|
|
|
41 |
verbose=False,
|
42 |
)
|
43 |
|
44 |
+
return save_path, plot
|