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

[WIP] add BOBSL data set #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.idea/
old/
__pycache__

.coverage
sign_language_datasets/datasets/msasl
sign_language_datasets/datasets/ncslgr
.coverage
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ rwth_phoenix2014_t = tfds.load(name='rwth_phoenix2014_t', builder_kwargs=dict(co
| Video-Based CSL | | | None |
| RVL-SLLL ASL | | | None |
| ngt_corpus | Yes | | 3.0.0 |
| bobsl | Yes | OpenPose | 1.0.0 |

## Data Interface

Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ numpy
pytest
pytest-cov
pympi-ling
requests
lxml
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
setup(
name="sign-language-datasets",
packages=packages,
version="0.0.4",
version="0.0.5",
description="TFDS Datasets for sign language",
author="Amit Moryossef",
author_email="amitmoryossef@gmail.com",
url="https://github.com/sign-language-processing/datasets",
keywords=[],
install_requires=["python-dotenv", "tqdm", "pose-format", "tfds-nightly", "tensorflow", "numpy", "pympi-ling"],
install_requires=["python-dotenv", "tqdm", "pose-format", "tfds-nightly", "tensorflow", "numpy", "pympi-ling",
"requests", "lxml"],
tests_require=['pytest', 'pytest-cov'],
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
1 change: 1 addition & 0 deletions sign_language_datasets/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
from .swojs_glossario import SwojsGlossario
from .wlasl import Wlasl
from .ngt_corpus import NGTCorpus
from .bobsl import Bobsl
3 changes: 3 additions & 0 deletions sign_language_datasets/datasets/bobsl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""bobsl dataset."""

from .bobsl import Bobsl
Loading