Datasets:
Add an example of dataset analysis
Browse files
analysis/dataset_sample_analysis.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
analysis/pyproject.toml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "notebook-error-dataset"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["JetBrains Research"]
|
6 |
+
readme = "README.md"
|
7 |
+
|
8 |
+
[tool.poetry.dependencies]
|
9 |
+
python = "^3.10"
|
10 |
+
jupyter = "^1.0.0"
|
11 |
+
pandas = "^2.2.0"
|
12 |
+
tqdm = "^4.66.2"
|
13 |
+
matplotlib = "^3.8.3"
|
14 |
+
seaborn = "^0.13.2"
|
15 |
+
huggingface-hub = "^0.21.3"
|
16 |
+
python-dotenv = "^1.0.1"
|
17 |
+
datasets = "^2.17.1"
|
18 |
+
|
19 |
+
|
20 |
+
[build-system]
|
21 |
+
requires = ["poetry-core"]
|
22 |
+
build-backend = "poetry.core.masonry.api"
|