Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First Demo testing with time series and other features #492

Closed
wants to merge 9 commits into from
4,846 changes: 2,844 additions & 2,002 deletions poetry.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ pillow = ">=9.5,<11.0"
scikit-learn = "^1.2.0"
seaborn = "^0.12.2"
openpyxl = "^3.1.2"
scikit-image = ">=0.21,<0.23"
levenshtein = ">=0.21.1,<0.24.0"
scikit-image = "^0.21.0"
levenshtein = "^0.21.1"
torch = "^1.4"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
Expand Down
2 changes: 2 additions & 0 deletions src/safeds/data/tabular/containers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
from ._row import Row
from ._table import Table
from ._tagged_table import TaggedTable
from ._timeseries_table import TimeSeries

__all__ = [
"Column",
"Row",
"Table",
"TaggedTable",
"TimeSeries"
]
Loading
Loading