Skip to content
Merged
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CHECK_DIRS := tfts examples tests
style: ## Run formatters and linters (black, isort, flake8, pre-commit)
black $(CHECK_DIRS)
isort $(CHECK_DIRS)
flake8 $(check_dirs)
flake8 $(CHECK_DIRS)
pre-commit run --all-files

## Run all unit tests
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ plt.show()
You could train your own data by preparing 3D data as inputs, for both inputs and targets
- option1 `np.ndarray`
- option2 `tf.data.Dataset`
- option3 `tf.keras.utils.Sequence`

Encoder only model inputs

Expand Down
1 change: 1 addition & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ plt.show()
为方便使用,将数据转化为三维作为tfts的输入
- 选项1 `np.ndarray`
- 选项2 `tf.data.Dataset`
- 选项3 `tf.keras.utils.Sequence`

编码类模型输入

Expand Down
5 changes: 4 additions & 1 deletion docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ API
:template: custom-module-template.rst
:recursive:

datasets
data
features
layers
models
losses
trainer
tasks
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,12 @@ def setup(app: Sphinx):

html_sidebars = {
"index": [],
"quick-start": [],
"installation": [],
"tutorials": [],
"models": [],
"tricks": [],
"CHANGELOG": [],
"feature_engineering": [],
"faq": [],
}


Expand Down
Loading
Loading