-
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: cacheable YaakMetadataDataFrameBuilder (#34)
- Loading branch information
1 parent
ffd14dc
commit 9585c74
Showing
18 changed files
with
48 additions
and
79 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[project] | ||
name = "rbyte" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
description = "Multimodal PyTorch dataset library" | ||
authors = [{ name = "Evgenii Gorchakov", email = "[email protected]" }] | ||
maintainers = [{ name = "Evgenii Gorchakov", email = "[email protected]" }] | ||
dependencies = [ | ||
"tensordict>=0.6.2", | ||
"torch", | ||
"numpy", | ||
"polars>=1.18.0", | ||
"polars>=1.21.0", | ||
"pydantic>=2.10.2", | ||
"more-itertools>=10.5.0", | ||
"hydra-core>=1.3.2", | ||
|
@@ -18,7 +18,8 @@ dependencies = [ | |
"parse>=1.20.2", | ||
"structlog>=24.4.0", | ||
"tqdm>=4.66.5", | ||
"pipefunc>=0.50.0", | ||
"pipefunc>=0.53.0", | ||
"xxhash>=3.5.0", | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.12,<3.13" | ||
|
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
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
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
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 |
---|---|---|
|
@@ -8,8 +8,6 @@ | |
|
||
@final | ||
class DataFrameFpsResampler: | ||
__name__ = __qualname__ | ||
|
||
IDX_COL = uuid4().hex | ||
|
||
@validate_call | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
from .dataframe_builder import ( | ||
YaakMetadataDataFrameBuilder, | ||
build_yaak_metadata_dataframe, | ||
) | ||
from .dataframe_builder import YaakMetadataDataFrameBuilder | ||
|
||
__all__ = ["YaakMetadataDataFrameBuilder", "build_yaak_metadata_dataframe"] | ||
__all__ = ["YaakMetadataDataFrameBuilder"] |
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