cgarciae commited on
Commit
8b74b04
1 Parent(s): c91bffe

loading script

Browse files
data/X_test.npy CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e76c8ab71ea612145f0c15d599525be29cc0788981986f71130871df14c60e57
3
  size 10530128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db29da2911cdfb2d7a340f4a4fc2481d83009febe3f85e237834ef2128957d9e
3
  size 10530128
data/X_train.npy CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:02f219a508b46839eb83cd34a12dc5952597550e1d83c911af7c6d59b9877278
3
  size 63180128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66a783a2c69d9652f40a267542cab15f33eea0da70264ad098a012ba12e0993d
3
  size 63180128
data/y_test.npy CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:996074233ccae69ee65b8551233f608adc1bce84b6b440e3531478a847958149
3
- size 80128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff7e84b144c037e7215dfa787d6773550c5db83029d9a4e7bae6e90f605f081d
3
+ size 10128
data/y_train.npy CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:10226b938104d9231ead4e9a0627f17e66cd18baf31a28784f1b72147057decf
3
- size 480128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dd4d822cab3e20099239bc9d433d587ae3ce00e084d191079dd30b38380b336
3
+ size 60128
dataset_infos.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "point-cloud-mnist": {
3
+ "description": "",
4
+ "citation": "",
5
+ "homepage": "",
6
+ "license": "",
7
+ "features": {
8
+ "image": {
9
+ "shape": [
10
+ 351,
11
+ 3
12
+ ],
13
+ "dtype": "uint8",
14
+ "id": null,
15
+ "_type": "Array2D"
16
+ },
17
+ "label": {
18
+ "num_classes": 10,
19
+ "names": [
20
+ "0",
21
+ "1",
22
+ "2",
23
+ "3",
24
+ "4",
25
+ "5",
26
+ "6",
27
+ "7",
28
+ "8",
29
+ "9"
30
+ ],
31
+ "names_file": null,
32
+ "id": null,
33
+ "_type": "ClassLabel"
34
+ }
35
+ },
36
+ "post_processed": null,
37
+ "supervised_keys": {
38
+ "input": "image",
39
+ "output": "label"
40
+ },
41
+ "builder_name": "point-cloud-mnist",
42
+ "config_name": "point-cloud-mnist",
43
+ "version": {
44
+ "version_str": "1.0.0",
45
+ "description": null,
46
+ "major": 1,
47
+ "minor": 0,
48
+ "patch": 0
49
+ },
50
+ "splits": {
51
+ "train": {
52
+ "name": "train",
53
+ "num_examples": 60000,
54
+ "dataset_name": "point-cloud-mnist"
55
+ },
56
+ "test": {
57
+ "name": "test",
58
+ "num_examples": 10000,
59
+ "dataset_name": "point-cloud-mnist"
60
+ }
61
+ },
62
+ "post_processing_size": null,
63
+ }
64
+ }
loading_script.py ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+
3
+ """MNIST Point Cloud Data Set"""
4
+
5
+
6
+ import struct
7
+
8
+ import numpy as np
9
+
10
+ import datasets
11
+
12
+ _VERSION = "0.0.1"
13
+
14
+ # _CITATION = """\
15
+ # @article{lecun2010mnist,
16
+ # title={MNIST handwritten digit database},
17
+ # author={LeCun, Yann and Cortes, Corinna and Burges, CJ},
18
+ # journal={ATT Labs [Online]. Available: http://yann.lecun.com/exdb/mnist},
19
+ # volume={2},
20
+ # year={2010}
21
+ # }
22
+ # """
23
+
24
+ _DESCRIPTION = """\
25
+ The MNIST dataset consists of 70,000 28x28 black-and-white points in 10 classes (one for each digits), with 7,000
26
+ points per class. There are 60,000 training points and 10,000 test points.
27
+ """
28
+
29
+ _URL = f"https://huggingface.co/datasets/cgarciae/point-cloud-mnist/resolve/{_VERSION}/data/"
30
+ _URLS = {
31
+ "train_points": "X_train.npy",
32
+ "train_labels": "y_train.npy",
33
+ "test_points": "X_test.npy",
34
+ "test_labels": "y_test.npy",
35
+ }
36
+
37
+
38
+ class MNIST(datasets.GeneratorBasedBuilder):
39
+ """MNIST Data Set"""
40
+
41
+ BUILDER_CONFIGS = [
42
+ datasets.BuilderConfig(
43
+ name="point-cloud-mnist",
44
+ version=datasets.Version("1.0.0"),
45
+ description=_DESCRIPTION,
46
+ )
47
+ ]
48
+
49
+ def _info(self):
50
+ return datasets.DatasetInfo(
51
+ description=_DESCRIPTION,
52
+ features=datasets.Features(
53
+ {
54
+ "points": datasets.Array2D(shape=(351, 3), dtype="uint8"),
55
+ "label": datasets.features.ClassLabel(
56
+ names=["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
57
+ ),
58
+ }
59
+ ),
60
+ supervised_keys=("points", "label"),
61
+ # homepage="http://yann.lecun.com/exdb/mnist/",
62
+ # citation=_CITATION,
63
+ )
64
+
65
+ def _split_generators(self, dl_manager):
66
+ urls_to_download = {key: _URL + fname for key, fname in _URLS.items()}
67
+ downloaded_files = dl_manager.download_and_extract(urls_to_download)
68
+ return [
69
+ datasets.SplitGenerator(
70
+ name=datasets.Split.TRAIN,
71
+ gen_kwargs={
72
+ "filepath": [
73
+ downloaded_files["train_points"],
74
+ downloaded_files["train_labels"],
75
+ ],
76
+ "split": "train",
77
+ },
78
+ ),
79
+ datasets.SplitGenerator(
80
+ name=datasets.Split.TEST,
81
+ gen_kwargs={
82
+ "filepath": [
83
+ downloaded_files["test_points"],
84
+ downloaded_files["test_labels"],
85
+ ],
86
+ "split": "test",
87
+ },
88
+ ),
89
+ ]
90
+
91
+ def _generate_examples(self, filepath, split):
92
+ """This function returns the examples in the raw form."""
93
+ # points
94
+ with open(filepath[0], "rb") as f:
95
+ points = np.load(f)
96
+
97
+ # Labels
98
+ with open(filepath[1], "rb") as f:
99
+ labels = np.load(f)
100
+
101
+ for idx in range(len(points)):
102
+ yield (
103
+ idx,
104
+ {
105
+ "points": points[idx],
106
+ "label": str(labels[idx]),
107
+ },
108
+ )
main.py CHANGED
@@ -1,13 +1,13 @@
1
- import json
2
  import os
3
- from pathlib import Path
4
  import random
 
 
5
 
6
  import numpy as np
7
  import pandas as pd
8
  import typer
9
- from tqdm import tqdm
10
  from datasets.load import load_dataset
 
11
 
12
  np.random.seed(42)
13
  random.seed(420)
@@ -18,19 +18,17 @@ def main(viz: bool = False):
18
  dataset = load_dataset("mnist")
19
  dataset.set_format("np")
20
  X_train = dataset["train"]["image"]
21
- y_train = dataset["train"]["label"]
22
  X_test = dataset["test"]["image"]
23
- y_test = dataset["test"]["label"]
24
 
25
- X_train = to_sparse(X_train)
26
- X_test = to_sparse(X_test)
27
 
28
- max_length = max(x.shape[0] for x in X_train + X_test)
29
 
30
- X_train = shuffle_and_pad(X_train, max_length, "train").astype(np.uint8)
31
- X_train = X_train.reshape(X_train.shape[0], -1)
32
- X_test = shuffle_and_pad(X_test, max_length, "test").astype(np.uint8)
33
- X_test = X_test.reshape(X_test.shape[0], -1)
34
 
35
  data_path = Path("data")
36
  np.save(data_path / "X_train.npy", X_train)
@@ -38,51 +36,27 @@ def main(viz: bool = False):
38
  np.save(data_path / "X_test.npy", X_test)
39
  np.save(data_path / "y_test.npy", y_test)
40
 
41
- return
42
-
43
- data_train = np.concatenate([y_train[:, None], X_train], axis=-1)
44
- data_test = np.concatenate([y_test[:, None], X_test], axis=-1)
45
-
46
 
47
- columns = [[f"x{i}", f"y{i}", f"v{i}"] for i in range(max_length)]
48
- columns = ["label"] + sum(columns, [])
49
-
50
- df_train = pd.DataFrame(data_train, columns=columns)
51
- df_test = pd.DataFrame(data_test, columns=columns)
52
- test_labels = pd.DataFrame(data_test[:, :1], columns=columns[:1])
53
-
54
- os.makedirs("data/point-cloud-mnist-2D", exist_ok=True)
55
-
56
- print("saving train")
57
- df_train.to_csv("data/point-cloud-mnist-2D/train.csv", index=False)
58
- print("saving test")
59
- df_test.to_csv("data/point-cloud-mnist-2D/test.csv", index=False)
60
- print("saving test labels")
61
- test_labels.to_csv("data/point-cloud-mnist-2D/test_labels.csv", index=False)
62
-
63
-
64
- def shuffle_and_pad(X, k, name):
65
 
66
  samples = []
67
 
68
- padding = np.array([[-1, -1, -1]], dtype=np.int32)
69
-
70
- for x in tqdm(X, desc=f"Padding {name}_{k}"):
71
  N = len(x)
72
 
73
  np.random.shuffle(x)
74
 
75
  if N < k:
76
- x = np.concatenate([x, np.tile(padding, (k - N, 1))])
77
 
78
  samples.append(x)
79
 
80
- samples = np.stack(samples, axis=0).astype(np.int32)
81
 
82
  return samples
83
 
84
 
85
- def to_sparse(X: np.ndarray) -> np.ndarray:
86
 
87
  N = len(X)
88
  w, h = X.shape[1:]
 
 
1
  import os
 
2
  import random
3
+ import typing as tp
4
+ from pathlib import Path
5
 
6
  import numpy as np
7
  import pandas as pd
8
  import typer
 
9
  from datasets.load import load_dataset
10
+ from tqdm import tqdm
11
 
12
  np.random.seed(42)
13
  random.seed(420)
 
18
  dataset = load_dataset("mnist")
19
  dataset.set_format("np")
20
  X_train = dataset["train"]["image"]
21
+ y_train = dataset["train"]["label"].astype(np.uint8)
22
  X_test = dataset["test"]["image"]
23
+ y_test = dataset["test"]["label"].astype(np.uint8)
24
 
25
+ Xs_train = to_sparse(X_train)
26
+ Xs_test = to_sparse(X_test)
27
 
28
+ max_length = max(x.shape[0] for x in Xs_train + Xs_test)
29
 
30
+ X_train = shuffle_and_pad(Xs_train, max_length, "train").astype(np.uint8)
31
+ X_test = shuffle_and_pad(Xs_test, max_length, "test").astype(np.uint8)
 
 
32
 
33
  data_path = Path("data")
34
  np.save(data_path / "X_train.npy", X_train)
 
36
  np.save(data_path / "X_test.npy", X_test)
37
  np.save(data_path / "y_test.npy", y_test)
38
 
 
 
 
 
 
39
 
40
+ def shuffle_and_pad(Xs, k, name):
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  samples = []
43
 
44
+ for x in tqdm(Xs, desc=f"Padding {name}_{k}"):
 
 
45
  N = len(x)
46
 
47
  np.random.shuffle(x)
48
 
49
  if N < k:
50
+ x = np.pad(x, [(0, k - N), (0, 0)])
51
 
52
  samples.append(x)
53
 
54
+ samples = np.stack(samples, axis=0).astype(np.uint8)
55
 
56
  return samples
57
 
58
 
59
+ def to_sparse(X: np.ndarray) -> tp.List[np.ndarray]:
60
 
61
  N = len(X)
62
  w, h = X.shape[1:]
poetry.lock CHANGED
@@ -39,6 +39,34 @@ docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
39
  tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"]
40
  tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"]
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  [[package]]
43
  name = "certifi"
44
  version = "2021.10.8"
@@ -68,11 +96,11 @@ unicode_backport = ["unicodedata2"]
68
 
69
  [[package]]
70
  name = "click"
71
- version = "7.0"
72
  description = "Composable command line interface toolkit"
73
  category = "main"
74
  optional = false
75
- python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
76
 
77
  [[package]]
78
  name = "colorama"
@@ -109,13 +137,13 @@ xxhash = "*"
109
  apache-beam = ["apache-beam (>=2.26.0)"]
110
  audio = ["librosa"]
111
  benchmarks = ["numpy (==1.18.5)", "tensorflow (==2.3.0)", "torch (==1.6.0)", "transformers (==3.0.2)"]
112
- dev = ["absl-py", "pytest", "pytest-datadir", "pytest-xdist", "apache-beam (>=2.26.0)", "elasticsearch", "aiobotocore", "boto3", "botocore", "fsspec", "moto[server,s3] (==2.0.4)", "rarfile (>=4.0)", "s3fs (==2021.08.1)", "tensorflow (>=2.3)", "torch", "torchaudio", "transformers", "bs4", "conllu", "langdetect", "lxml", "mwparserfromhell", "nltk", "openpyxl", "py7zr", "tldextract", "zstandard", "bert-score (>=0.3.6)", "rouge-score", "sacrebleu", "scipy", "seqeval", "scikit-learn", "jiwer", "sentencepiece", "toml (>=0.10.1)", "requests-file (>=1.5.1)", "tldextract (>=3.1.0)", "texttable (>=1.6.3)", "Werkzeug (>=1.0.1)", "six (>=1.15.0,<1.16.0)", "black (==21.4b0)", "flake8 (==3.7.9)", "isort", "pyyaml (>=5.3.1)", "importlib-resources"]
113
  docs = ["docutils (==0.16.0)", "recommonmark", "sphinx (==3.1.2)", "sphinx-markdown-tables", "sphinx-rtd-theme (==0.4.3)", "sphinxext-opengraph (==0.4.1)", "sphinx-copybutton", "fsspec (<2021.9.0)", "s3fs", "sphinx-panels", "sphinx-inline-tabs", "myst-parser"]
114
  quality = ["black (==21.4b0)", "flake8 (==3.7.9)", "isort", "pyyaml (>=5.3.1)"]
115
  s3 = ["fsspec", "boto3", "botocore", "s3fs"]
116
  tensorflow = ["tensorflow (>=2.2.0)"]
117
  tensorflow_gpu = ["tensorflow-gpu (>=2.2.0)"]
118
- tests = ["absl-py", "pytest", "pytest-datadir", "pytest-xdist", "apache-beam (>=2.26.0)", "elasticsearch", "aiobotocore", "boto3", "botocore", "fsspec", "moto[server,s3] (==2.0.4)", "rarfile (>=4.0)", "s3fs (==2021.08.1)", "tensorflow (>=2.3)", "torch", "torchaudio", "transformers", "bs4", "conllu", "langdetect", "lxml", "mwparserfromhell", "nltk", "openpyxl", "py7zr", "tldextract", "zstandard", "bert-score (>=0.3.6)", "rouge-score", "sacrebleu", "scipy", "seqeval", "scikit-learn", "jiwer", "sentencepiece", "toml (>=0.10.1)", "requests-file (>=1.5.1)", "tldextract (>=3.1.0)", "texttable (>=1.6.3)", "Werkzeug (>=1.0.1)", "six (>=1.15.0,<1.16.0)", "importlib-resources"]
119
  torch = ["torch"]
120
 
121
  [[package]]
@@ -264,6 +292,14 @@ python-versions = "*"
264
  [package.dependencies]
265
  dill = ">=0.3.4"
266
 
 
 
 
 
 
 
 
 
267
  [[package]]
268
  name = "numpy"
269
  version = "1.18.1"
@@ -299,6 +335,26 @@ pytz = ">=2017.2"
299
  [package.extras]
300
  test = ["pytest (>=4.0.2)", "pytest-xdist", "hypothesis (>=3.58)"]
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  [[package]]
303
  name = "pyarrow"
304
  version = "6.0.0"
@@ -345,6 +401,14 @@ category = "main"
345
  optional = false
346
  python-versions = ">=3.6"
347
 
 
 
 
 
 
 
 
 
348
  [[package]]
349
  name = "requests"
350
  version = "2.26.0"
@@ -371,6 +435,14 @@ category = "main"
371
  optional = false
372
  python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
373
 
 
 
 
 
 
 
 
 
374
  [[package]]
375
  name = "tqdm"
376
  version = "4.62.3"
@@ -387,6 +459,14 @@ dev = ["py-make (>=0.1.0)", "twine", "wheel"]
387
  notebook = ["ipywidgets (>=6)"]
388
  telegram = ["requests"]
389
 
 
 
 
 
 
 
 
 
390
  [[package]]
391
  name = "typer"
392
  version = "0.0.8"
@@ -460,7 +540,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes
460
  [metadata]
461
  lock-version = "1.1"
462
  python-versions = "^3.7"
463
- content-hash = "3b99bb4119b684b68058efc994a72614b795016bd2e54d8ced0e3b48f048ccf4"
464
 
465
  [metadata.files]
466
  aiohttp = [
@@ -510,6 +590,10 @@ attrs = [
510
  {file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"},
511
  {file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"},
512
  ]
 
 
 
 
513
  certifi = [
514
  {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
515
  {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
@@ -523,8 +607,8 @@ charset-normalizer = [
523
  {file = "charset_normalizer-2.0.7-py3-none-any.whl", hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b"},
524
  ]
525
  click = [
526
- {file = "Click-7.0-py2.py3-none-any.whl", hash = "sha256:2335065e6395b9e67ca716de5f7526736bfa6ceead690adf616d925bdc622b13"},
527
- {file = "Click-7.0.tar.gz", hash = "sha256:5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7"},
528
  ]
529
  colorama = [
530
  {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
@@ -673,6 +757,10 @@ multiprocess = [
673
  {file = "multiprocess-0.70.12.2-py39-none-any.whl", hash = "sha256:6f812a1d3f198b7cacd63983f60e2dc1338bd4450893f90c435067b5a3127e6f"},
674
  {file = "multiprocess-0.70.12.2.zip", hash = "sha256:206bb9b97b73f87fec1ed15a19f8762950256aa84225450abc7150d02855a083"},
675
  ]
 
 
 
 
676
  numpy = [
677
  {file = "numpy-1.18.1-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:20b26aaa5b3da029942cdcce719b363dbe58696ad182aff0e5dcb1687ec946dc"},
678
  {file = "numpy-1.18.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:70a840a26f4e61defa7bdf811d7498a284ced303dfbc35acb7be12a39b2aa121"},
@@ -716,6 +804,14 @@ pandas = [
716
  {file = "pandas-1.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:5036d4009012a44aa3e50173e482b664c1fae36decd277c49e453463798eca4e"},
717
  {file = "pandas-1.0.1.tar.gz", hash = "sha256:3c07765308f091d81b6735d4f2242bb43c332cc3461cae60543df6b10967fe27"},
718
  ]
 
 
 
 
 
 
 
 
719
  pyarrow = [
720
  {file = "pyarrow-6.0.0-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:c7a6e7e0bf8779e9c3428ced85507541f3da9a0675e2f4781d4eb2c7042cbf81"},
721
  {file = "pyarrow-6.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:7a683f71b848eb6310b4ec48c0def55dac839e9994c1ac874c9b2d3d5625def1"},
@@ -801,6 +897,44 @@ pyyaml = [
801
  {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
802
  {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
803
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
804
  requests = [
805
  {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"},
806
  {file = "requests-2.26.0.tar.gz", hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"},
@@ -809,10 +943,46 @@ six = [
809
  {file = "six-1.14.0-py2.py3-none-any.whl", hash = "sha256:8f3cd2e254d8f793e7f3d6d9df77b92252b52637291d0f0da013c76ea2724b6c"},
810
  {file = "six-1.14.0.tar.gz", hash = "sha256:236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a"},
811
  ]
 
 
 
 
812
  tqdm = [
813
  {file = "tqdm-4.62.3-py2.py3-none-any.whl", hash = "sha256:8dd278a422499cd6b727e6ae4061c40b48fce8b76d1ccbf5d34fca9b7f925b0c"},
814
  {file = "tqdm-4.62.3.tar.gz", hash = "sha256:d359de7217506c9851b7869f3708d8ee53ed70a1b8edbba4dbcb47442592920d"},
815
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
  typer = [
817
  {file = "typer-0.0.8-py3-none-any.whl", hash = "sha256:ada3c007a2d21cd0006a459670fbc76dde8a3bea10298167f41723f356115a6b"},
818
  {file = "typer-0.0.8.tar.gz", hash = "sha256:50cbb5659cd359eeae807d970fcb898589529d440c70af126c6ea8425443387d"},
 
39
  tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"]
40
  tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"]
41
 
42
+ [[package]]
43
+ name = "black"
44
+ version = "21.9b0"
45
+ description = "The uncompromising code formatter."
46
+ category = "dev"
47
+ optional = false
48
+ python-versions = ">=3.6.2"
49
+
50
+ [package.dependencies]
51
+ click = ">=7.1.2"
52
+ mypy-extensions = ">=0.4.3"
53
+ pathspec = ">=0.9.0,<1"
54
+ platformdirs = ">=2"
55
+ regex = ">=2020.1.8"
56
+ tomli = ">=0.2.6,<2.0.0"
57
+ typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\""}
58
+ typing-extensions = [
59
+ {version = ">=3.10.0.0", markers = "python_version < \"3.10\""},
60
+ {version = "!=3.10.0.1", markers = "python_version >= \"3.10\""},
61
+ ]
62
+
63
+ [package.extras]
64
+ colorama = ["colorama (>=0.4.3)"]
65
+ d = ["aiohttp (>=3.6.0)", "aiohttp-cors (>=0.4.0)"]
66
+ jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
67
+ python2 = ["typed-ast (>=1.4.2)"]
68
+ uvloop = ["uvloop (>=0.15.2)"]
69
+
70
  [[package]]
71
  name = "certifi"
72
  version = "2021.10.8"
 
96
 
97
  [[package]]
98
  name = "click"
99
+ version = "7.1.2"
100
  description = "Composable command line interface toolkit"
101
  category = "main"
102
  optional = false
103
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
104
 
105
  [[package]]
106
  name = "colorama"
 
137
  apache-beam = ["apache-beam (>=2.26.0)"]
138
  audio = ["librosa"]
139
  benchmarks = ["numpy (==1.18.5)", "tensorflow (==2.3.0)", "torch (==1.6.0)", "transformers (==3.0.2)"]
140
+ dev = ["absl-py", "pytest", "pytest-datadir", "pytest-xdist", "apache-beam (>=2.26.0)", "elasticsearch", "aiobotocore", "boto3", "botocore", "fsspec", "moto[s3,server] (==2.0.4)", "rarfile (>=4.0)", "s3fs (==2021.08.1)", "tensorflow (>=2.3)", "torch", "torchaudio", "transformers", "bs4", "conllu", "langdetect", "lxml", "mwparserfromhell", "nltk", "openpyxl", "py7zr", "tldextract", "zstandard", "bert-score (>=0.3.6)", "rouge-score", "sacrebleu", "scipy", "seqeval", "scikit-learn", "jiwer", "sentencepiece", "toml (>=0.10.1)", "requests-file (>=1.5.1)", "tldextract (>=3.1.0)", "texttable (>=1.6.3)", "Werkzeug (>=1.0.1)", "six (>=1.15.0,<1.16.0)", "black (==21.4b0)", "flake8 (==3.7.9)", "isort", "pyyaml (>=5.3.1)", "importlib-resources"]
141
  docs = ["docutils (==0.16.0)", "recommonmark", "sphinx (==3.1.2)", "sphinx-markdown-tables", "sphinx-rtd-theme (==0.4.3)", "sphinxext-opengraph (==0.4.1)", "sphinx-copybutton", "fsspec (<2021.9.0)", "s3fs", "sphinx-panels", "sphinx-inline-tabs", "myst-parser"]
142
  quality = ["black (==21.4b0)", "flake8 (==3.7.9)", "isort", "pyyaml (>=5.3.1)"]
143
  s3 = ["fsspec", "boto3", "botocore", "s3fs"]
144
  tensorflow = ["tensorflow (>=2.2.0)"]
145
  tensorflow_gpu = ["tensorflow-gpu (>=2.2.0)"]
146
+ tests = ["absl-py", "pytest", "pytest-datadir", "pytest-xdist", "apache-beam (>=2.26.0)", "elasticsearch", "aiobotocore", "boto3", "botocore", "fsspec", "moto[s3,server] (==2.0.4)", "rarfile (>=4.0)", "s3fs (==2021.08.1)", "tensorflow (>=2.3)", "torch", "torchaudio", "transformers", "bs4", "conllu", "langdetect", "lxml", "mwparserfromhell", "nltk", "openpyxl", "py7zr", "tldextract", "zstandard", "bert-score (>=0.3.6)", "rouge-score", "sacrebleu", "scipy", "seqeval", "scikit-learn", "jiwer", "sentencepiece", "toml (>=0.10.1)", "requests-file (>=1.5.1)", "tldextract (>=3.1.0)", "texttable (>=1.6.3)", "Werkzeug (>=1.0.1)", "six (>=1.15.0,<1.16.0)", "importlib-resources"]
147
  torch = ["torch"]
148
 
149
  [[package]]
 
292
  [package.dependencies]
293
  dill = ">=0.3.4"
294
 
295
+ [[package]]
296
+ name = "mypy-extensions"
297
+ version = "0.4.3"
298
+ description = "Experimental type system extensions for programs checked with the mypy typechecker."
299
+ category = "dev"
300
+ optional = false
301
+ python-versions = "*"
302
+
303
  [[package]]
304
  name = "numpy"
305
  version = "1.18.1"
 
335
  [package.extras]
336
  test = ["pytest (>=4.0.2)", "pytest-xdist", "hypothesis (>=3.58)"]
337
 
338
+ [[package]]
339
+ name = "pathspec"
340
+ version = "0.9.0"
341
+ description = "Utility library for gitignore style pattern matching of file paths."
342
+ category = "dev"
343
+ optional = false
344
+ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
345
+
346
+ [[package]]
347
+ name = "platformdirs"
348
+ version = "2.4.0"
349
+ description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
350
+ category = "dev"
351
+ optional = false
352
+ python-versions = ">=3.6"
353
+
354
+ [package.extras]
355
+ docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"]
356
+ test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"]
357
+
358
  [[package]]
359
  name = "pyarrow"
360
  version = "6.0.0"
 
401
  optional = false
402
  python-versions = ">=3.6"
403
 
404
+ [[package]]
405
+ name = "regex"
406
+ version = "2021.10.23"
407
+ description = "Alternative regular expression module, to replace re."
408
+ category = "dev"
409
+ optional = false
410
+ python-versions = "*"
411
+
412
  [[package]]
413
  name = "requests"
414
  version = "2.26.0"
 
435
  optional = false
436
  python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
437
 
438
+ [[package]]
439
+ name = "tomli"
440
+ version = "1.2.2"
441
+ description = "A lil' TOML parser"
442
+ category = "dev"
443
+ optional = false
444
+ python-versions = ">=3.6"
445
+
446
  [[package]]
447
  name = "tqdm"
448
  version = "4.62.3"
 
459
  notebook = ["ipywidgets (>=6)"]
460
  telegram = ["requests"]
461
 
462
+ [[package]]
463
+ name = "typed-ast"
464
+ version = "1.4.3"
465
+ description = "a fork of Python 2 and 3 ast modules with type comment support"
466
+ category = "dev"
467
+ optional = false
468
+ python-versions = "*"
469
+
470
  [[package]]
471
  name = "typer"
472
  version = "0.0.8"
 
540
  [metadata]
541
  lock-version = "1.1"
542
  python-versions = "^3.7"
543
+ content-hash = "f575d3c626ec7e75b4cff3341bd4c5d3b722846e1ec40351b11767ab51c43e46"
544
 
545
  [metadata.files]
546
  aiohttp = [
 
590
  {file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"},
591
  {file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"},
592
  ]
593
+ black = [
594
+ {file = "black-21.9b0-py3-none-any.whl", hash = "sha256:380f1b5da05e5a1429225676655dddb96f5ae8c75bdf91e53d798871b902a115"},
595
+ {file = "black-21.9b0.tar.gz", hash = "sha256:7de4cfc7eb6b710de325712d40125689101d21d25283eed7e9998722cf10eb91"},
596
+ ]
597
  certifi = [
598
  {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
599
  {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
 
607
  {file = "charset_normalizer-2.0.7-py3-none-any.whl", hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b"},
608
  ]
609
  click = [
610
+ {file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"},
611
+ {file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"},
612
  ]
613
  colorama = [
614
  {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
 
757
  {file = "multiprocess-0.70.12.2-py39-none-any.whl", hash = "sha256:6f812a1d3f198b7cacd63983f60e2dc1338bd4450893f90c435067b5a3127e6f"},
758
  {file = "multiprocess-0.70.12.2.zip", hash = "sha256:206bb9b97b73f87fec1ed15a19f8762950256aa84225450abc7150d02855a083"},
759
  ]
760
+ mypy-extensions = [
761
+ {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
762
+ {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
763
+ ]
764
  numpy = [
765
  {file = "numpy-1.18.1-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:20b26aaa5b3da029942cdcce719b363dbe58696ad182aff0e5dcb1687ec946dc"},
766
  {file = "numpy-1.18.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:70a840a26f4e61defa7bdf811d7498a284ced303dfbc35acb7be12a39b2aa121"},
 
804
  {file = "pandas-1.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:5036d4009012a44aa3e50173e482b664c1fae36decd277c49e453463798eca4e"},
805
  {file = "pandas-1.0.1.tar.gz", hash = "sha256:3c07765308f091d81b6735d4f2242bb43c332cc3461cae60543df6b10967fe27"},
806
  ]
807
+ pathspec = [
808
+ {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
809
+ {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
810
+ ]
811
+ platformdirs = [
812
+ {file = "platformdirs-2.4.0-py3-none-any.whl", hash = "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d"},
813
+ {file = "platformdirs-2.4.0.tar.gz", hash = "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2"},
814
+ ]
815
  pyarrow = [
816
  {file = "pyarrow-6.0.0-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:c7a6e7e0bf8779e9c3428ced85507541f3da9a0675e2f4781d4eb2c7042cbf81"},
817
  {file = "pyarrow-6.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:7a683f71b848eb6310b4ec48c0def55dac839e9994c1ac874c9b2d3d5625def1"},
 
897
  {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
898
  {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
899
  ]
900
+ regex = [
901
+ {file = "regex-2021.10.23-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:45b65d6a275a478ac2cbd7fdbf7cc93c1982d613de4574b56fd6972ceadb8395"},
902
+ {file = "regex-2021.10.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74d071dbe4b53c602edd87a7476ab23015a991374ddb228d941929ad7c8c922e"},
903
+ {file = "regex-2021.10.23-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:34d870f9f27f2161709054d73646fc9aca49480617a65533fc2b4611c518e455"},
904
+ {file = "regex-2021.10.23-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fb698037c35109d3c2e30f2beb499e5ebae6e4bb8ff2e60c50b9a805a716f79"},
905
+ {file = "regex-2021.10.23-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cb46b542133999580ffb691baf67410306833ee1e4f58ed06b6a7aaf4e046952"},
906
+ {file = "regex-2021.10.23-cp310-cp310-win32.whl", hash = "sha256:5e9c9e0ce92f27cef79e28e877c6b6988c48b16942258f3bc55d39b5f911df4f"},
907
+ {file = "regex-2021.10.23-cp310-cp310-win_amd64.whl", hash = "sha256:ab7c5684ff3538b67df3f93d66bd3369b749087871ae3786e70ef39e601345b0"},
908
+ {file = "regex-2021.10.23-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:de557502c3bec8e634246588a94e82f1ee1b9dfcfdc453267c4fb652ff531570"},
909
+ {file = "regex-2021.10.23-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee684f139c91e69fe09b8e83d18b4d63bf87d9440c1eb2eeb52ee851883b1b29"},
910
+ {file = "regex-2021.10.23-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5095a411c8479e715784a0c9236568ae72509450ee2226b649083730f3fadfc6"},
911
+ {file = "regex-2021.10.23-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b568809dca44cb75c8ebb260844ea98252c8c88396f9d203f5094e50a70355f"},
912
+ {file = "regex-2021.10.23-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eb672217f7bd640411cfc69756ce721d00ae600814708d35c930930f18e8029f"},
913
+ {file = "regex-2021.10.23-cp36-cp36m-win32.whl", hash = "sha256:a7a986c45d1099a5de766a15de7bee3840b1e0e1a344430926af08e5297cf666"},
914
+ {file = "regex-2021.10.23-cp36-cp36m-win_amd64.whl", hash = "sha256:6d7722136c6ed75caf84e1788df36397efdc5dbadab95e59c2bba82d4d808a4c"},
915
+ {file = "regex-2021.10.23-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9f665677e46c5a4d288ece12fdedf4f4204a422bb28ff05f0e6b08b7447796d1"},
916
+ {file = "regex-2021.10.23-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:450dc27483548214314640c89a0f275dbc557968ed088da40bde7ef8fb52829e"},
917
+ {file = "regex-2021.10.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:129472cd06062fb13e7b4670a102951a3e655e9b91634432cfbdb7810af9d710"},
918
+ {file = "regex-2021.10.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a940ca7e7189d23da2bfbb38973832813eab6bd83f3bf89a977668c2f813deae"},
919
+ {file = "regex-2021.10.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:530fc2bbb3dc1ebb17f70f7b234f90a1dd43b1b489ea38cea7be95fb21cdb5c7"},
920
+ {file = "regex-2021.10.23-cp37-cp37m-win32.whl", hash = "sha256:ded0c4a3eee56b57fcb2315e40812b173cafe79d2f992d50015f4387445737fa"},
921
+ {file = "regex-2021.10.23-cp37-cp37m-win_amd64.whl", hash = "sha256:391703a2abf8013d95bae39145d26b4e21531ab82e22f26cd3a181ee2644c234"},
922
+ {file = "regex-2021.10.23-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:be04739a27be55631069b348dda0c81d8ea9822b5da10b8019b789e42d1fe452"},
923
+ {file = "regex-2021.10.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13ec99df95003f56edcd307db44f06fbeb708c4ccdcf940478067dd62353181e"},
924
+ {file = "regex-2021.10.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d1cdcda6bd16268316d5db1038965acf948f2a6f43acc2e0b1641ceab443623"},
925
+ {file = "regex-2021.10.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c186691a7995ef1db61205e00545bf161fb7b59cdb8c1201c89b333141c438a"},
926
+ {file = "regex-2021.10.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2b20f544cbbeffe171911f6ce90388ad36fe3fad26b7c7a35d4762817e9ea69c"},
927
+ {file = "regex-2021.10.23-cp38-cp38-win32.whl", hash = "sha256:c0938ddd60cc04e8f1faf7a14a166ac939aac703745bfcd8e8f20322a7373019"},
928
+ {file = "regex-2021.10.23-cp38-cp38-win_amd64.whl", hash = "sha256:56f0c81c44638dfd0e2367df1a331b4ddf2e771366c4b9c5d9a473de75e3e1c7"},
929
+ {file = "regex-2021.10.23-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80bb5d2e92b2258188e7dcae5b188c7bf868eafdf800ea6edd0fbfc029984a88"},
930
+ {file = "regex-2021.10.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1dae12321b31059a1a72aaa0e6ba30156fe7e633355e445451e4021b8e122b6"},
931
+ {file = "regex-2021.10.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1f2b59c28afc53973d22e7bc18428721ee8ca6079becf1b36571c42627321c65"},
932
+ {file = "regex-2021.10.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d134757a37d8640f3c0abb41f5e68b7cf66c644f54ef1cb0573b7ea1c63e1509"},
933
+ {file = "regex-2021.10.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0dcc0e71118be8c69252c207630faf13ca5e1b8583d57012aae191e7d6d28b84"},
934
+ {file = "regex-2021.10.23-cp39-cp39-win32.whl", hash = "sha256:a30513828180264294953cecd942202dfda64e85195ae36c265daf4052af0464"},
935
+ {file = "regex-2021.10.23-cp39-cp39-win_amd64.whl", hash = "sha256:0f7552429dd39f70057ac5d0e897e5bfe211629652399a21671e53f2a9693a4e"},
936
+ {file = "regex-2021.10.23.tar.gz", hash = "sha256:f3f9a91d3cc5e5b0ddf1043c0ae5fa4852f18a1c0050318baf5fc7930ecc1f9c"},
937
+ ]
938
  requests = [
939
  {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"},
940
  {file = "requests-2.26.0.tar.gz", hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"},
 
943
  {file = "six-1.14.0-py2.py3-none-any.whl", hash = "sha256:8f3cd2e254d8f793e7f3d6d9df77b92252b52637291d0f0da013c76ea2724b6c"},
944
  {file = "six-1.14.0.tar.gz", hash = "sha256:236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a"},
945
  ]
946
+ tomli = [
947
+ {file = "tomli-1.2.2-py3-none-any.whl", hash = "sha256:f04066f68f5554911363063a30b108d2b5a5b1a010aa8b6132af78489fe3aade"},
948
+ {file = "tomli-1.2.2.tar.gz", hash = "sha256:c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee"},
949
+ ]
950
  tqdm = [
951
  {file = "tqdm-4.62.3-py2.py3-none-any.whl", hash = "sha256:8dd278a422499cd6b727e6ae4061c40b48fce8b76d1ccbf5d34fca9b7f925b0c"},
952
  {file = "tqdm-4.62.3.tar.gz", hash = "sha256:d359de7217506c9851b7869f3708d8ee53ed70a1b8edbba4dbcb47442592920d"},
953
  ]
954
+ typed-ast = [
955
+ {file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:2068531575a125b87a41802130fa7e29f26c09a2833fea68d9a40cf33902eba6"},
956
+ {file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:c907f561b1e83e93fad565bac5ba9c22d96a54e7ea0267c708bffe863cbe4075"},
957
+ {file = "typed_ast-1.4.3-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:1b3ead4a96c9101bef08f9f7d1217c096f31667617b58de957f690c92378b528"},
958
+ {file = "typed_ast-1.4.3-cp35-cp35m-win32.whl", hash = "sha256:dde816ca9dac1d9c01dd504ea5967821606f02e510438120091b84e852367428"},
959
+ {file = "typed_ast-1.4.3-cp35-cp35m-win_amd64.whl", hash = "sha256:777a26c84bea6cd934422ac2e3b78863a37017618b6e5c08f92ef69853e765d3"},
960
+ {file = "typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f"},
961
+ {file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:52b1eb8c83f178ab787f3a4283f68258525f8d70f778a2f6dd54d3b5e5fb4341"},
962
+ {file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:01ae5f73431d21eead5015997ab41afa53aa1fbe252f9da060be5dad2c730ace"},
963
+ {file = "typed_ast-1.4.3-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:c190f0899e9f9f8b6b7863debfb739abcb21a5c054f911ca3596d12b8a4c4c7f"},
964
+ {file = "typed_ast-1.4.3-cp36-cp36m-win32.whl", hash = "sha256:398e44cd480f4d2b7ee8d98385ca104e35c81525dd98c519acff1b79bdaac363"},
965
+ {file = "typed_ast-1.4.3-cp36-cp36m-win_amd64.whl", hash = "sha256:bff6ad71c81b3bba8fa35f0f1921fb24ff4476235a6e94a26ada2e54370e6da7"},
966
+ {file = "typed_ast-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0fb71b8c643187d7492c1f8352f2c15b4c4af3f6338f21681d3681b3dc31a266"},
967
+ {file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e"},
968
+ {file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04"},
969
+ {file = "typed_ast-1.4.3-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899"},
970
+ {file = "typed_ast-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:aee0c1256be6c07bd3e1263ff920c325b59849dc95392a05f258bb9b259cf39c"},
971
+ {file = "typed_ast-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9ad2c92ec681e02baf81fdfa056fe0d818645efa9af1f1cd5fd6f1bd2bdfd805"},
972
+ {file = "typed_ast-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b36b4f3920103a25e1d5d024d155c504080959582b928e91cb608a65c3a49e1a"},
973
+ {file = "typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl", hash = "sha256:067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff"},
974
+ {file = "typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41"},
975
+ {file = "typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39"},
976
+ {file = "typed_ast-1.4.3-cp38-cp38-win32.whl", hash = "sha256:f2362f3cb0f3172c42938946dbc5b7843c2a28aec307c49100c8b38764eb6927"},
977
+ {file = "typed_ast-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:dd4a21253f42b8d2b48410cb31fe501d32f8b9fbeb1f55063ad102fe9c425e40"},
978
+ {file = "typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3"},
979
+ {file = "typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl", hash = "sha256:2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4"},
980
+ {file = "typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0"},
981
+ {file = "typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3"},
982
+ {file = "typed_ast-1.4.3-cp39-cp39-win32.whl", hash = "sha256:209596a4ec71d990d71d5e0d312ac935d86930e6eecff6ccc7007fe54d703808"},
983
+ {file = "typed_ast-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c"},
984
+ {file = "typed_ast-1.4.3.tar.gz", hash = "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65"},
985
+ ]
986
  typer = [
987
  {file = "typer-0.0.8-py3-none-any.whl", hash = "sha256:ada3c007a2d21cd0006a459670fbc76dde8a3bea10298167f41723f356115a6b"},
988
  {file = "typer-0.0.8.tar.gz", hash = "sha256:50cbb5659cd359eeae807d970fcb898589529d440c70af126c6ea8425443387d"},
pyproject.toml CHANGED
@@ -15,6 +15,7 @@ datasets = "^1.14.0"
15
 
16
  [tool.poetry.dev-dependencies]
17
  debugpy = "^1.5.1"
 
18
 
19
  [build-system]
20
  requires = ["poetry>=0.12"]
 
15
 
16
  [tool.poetry.dev-dependencies]
17
  debugpy = "^1.5.1"
18
+ black = {version = "^21.9b0", allow-prereleases = true}
19
 
20
  [build-system]
21
  requires = ["poetry>=0.12"]