-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(datasets): loading datasets from remote repository (#1)
* feat(datasets): loading datasets from remote repository * feat(datasets): adding factory methods to traffic weaver from csv files * feat(core): interpolating series * feat(core): interpolating series * feat(datasets): add mix dataset * feat(datasets): add ams dataset
- Loading branch information
1 parent
6783250
commit d9e579a
Showing
54 changed files
with
2,696 additions
and
782 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[report] | ||
show_missing = True | ||
omit = src/traffic_weaver/datasets/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
max-line-length = 120 | ||
extend-ignore = E203, W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,7 @@ | |
.husky | ||
__pycache__/ | ||
/htmlcov/ | ||
/src/traffic_weaver/test_runners/ | ||
|
||
.venv/ | ||
venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ sphinx | |
sphinx-rtd-theme | ||
sphinx-mdinclude | ||
sphinxcontrib-bibtex | ||
pandas | ||
pytest | ||
pytest-cov | ||
pytest-mock | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[pytest] | ||
pythonpath = src/ | ||
addopts = --doctest-modules tests src -W ignore::DeprecationWarning | ||
addopts = --doctest-modules -W ignore::DeprecationWarning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,20 @@ | ||
from . import datasets | ||
from . import oversample | ||
from . import rfa | ||
from . import match | ||
from . import process | ||
from . import interval | ||
from . import array_utils | ||
from . import sorted_array_utils | ||
from ._version import __version__ | ||
from .oversample import ( | ||
LinearFixedOversample, | ||
LinearAdaptiveOversample, | ||
ExpFixedOversample, | ||
ExpAdaptiveOversample, | ||
CubicSplineOversample, | ||
PiecewiseConstantOversample, | ||
) | ||
from .weaver import Weaver | ||
|
||
# @formatter:off | ||
__all__ = [ | ||
Weaver, | ||
__version__, | ||
datasets, | ||
oversample, | ||
rfa, | ||
match, | ||
process, | ||
interval, | ||
array_utils, | ||
LinearFixedOversample, | ||
LinearAdaptiveOversample, | ||
ExpFixedOversample, | ||
ExpAdaptiveOversample, | ||
CubicSplineOversample, | ||
PiecewiseConstantOversample, | ||
sorted_array_utils, | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.