Skip to content

Commit

Permalink
[ADD][FEAT] tf.Dataset Handler
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenbihi committed Aug 19, 2022
1 parent ef22dfa commit 6cf74a1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hourglass_tensorflow/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from hourglass_tensorflow.datasets._meta import HTFDatasetHandler
from hourglass_tensorflow.datasets._meta import HTFBaseDatasetHandler
11 changes: 11 additions & 0 deletions hourglass_tensorflow/datasets/_meta.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from abc import ABC
from typing import *


class HTFBaseDatasetHandler(ABC):
def __init__(self) -> None:
super().__init__()


class HTFDatasetHandler(HTFBaseDatasetHandler):
pass

0 comments on commit 6cf74a1

Please sign in to comment.