-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc035cd
commit f09917d
Showing
3 changed files
with
45 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
tensorflow-cpu | ||
tensorflow | ||
tokenizers |
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,34 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="smile-datasets", | ||
version="0.0.1", | ||
description="La**S**t **mile** datasets: Use `tf.data` to solve the last mile data loading problem for tensorflow.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/luozhouyang/smile-datasets", | ||
author="ZhouYang Luo", | ||
author_email="[email protected]", | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
install_requires=[ | ||
"tokenizers", | ||
"tensorflow", | ||
], | ||
extras_require={}, | ||
license="Apache Software License", | ||
classifiers=( | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
), | ||
) |
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,10 @@ | ||
import logging | ||
|
||
from smile_datasets.qa.dataset import DatapipeForQuestionAnswering, DatasetForQuestionAnswering | ||
from smile_datasets.qa.example import ExampleForQuestionAnswering | ||
from smile_datasets.qa.parsers import ParserForQuestionAnswering | ||
|
||
__name__ = "smile_datasets" | ||
__version__ = "0.0.1" | ||
|
||
logging.basicConfig(format="%(asctime)s %(levelname)7s %(filename)20s %(lineno)4d] %(message)s", level=logging.INFO) |