Skip to content

Commit

Permalink
feat: add easy schedulers
Browse files Browse the repository at this point in the history
  • Loading branch information
Optimox committed Oct 12, 2020
1 parent 9cb38d2 commit 0ae114f
Show file tree
Hide file tree
Showing 7 changed files with 723 additions and 35 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
Expand Up @@ -165,6 +165,20 @@ jobs:
shell: bash -leo pipefail
command: |
make test-nb-multi-task
test-nb-customization:
executor: python-executor
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "poetry.lock" }}
- install_poetry
- run:
name: run test-nb-customization
shell: bash -leo pipefail
command: |
make test-nb-customization
workflows:
version: 2
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Expand Up @@ -93,6 +93,10 @@ test-nb-multi-task: ## run multi task classification example tests using noteboo
$(MAKE) _run_notebook NB_FILE="./multi_task_example.ipynb"
.PHONY: test-obfuscator

test-nb-customization: ## run customization example tests using notebooks
$(MAKE) _run_notebook NB_FILE="./customizing_example.ipynb"
.PHONY: test-obfuscator

help: ## Display help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -94,6 +94,8 @@ clf.fit(
```

A specific customization example notebook is available here : https://github.com/dreamquark-ai/tabnet/blob/develop/customizing_example.ipynb

# Useful links

- explanatory video : https://youtu.be/ysBaZO8YmX8
Expand Down

0 comments on commit 0ae114f

Please sign in to comment.