https://github.com/kubeflow/katib
Revision c87d5838b4142fc458f030c1d58be52a554354ac authored by jdplatt on 11 March 2019, 19:54:38 UTC, committed by Kubernetes Prow Robot on 11 March 2019, 19:54:38 UTC
* added tests for acquisition function and models

* added tests for global_optimizer

* added tests for boa

* minor linting

* tests for algorithm manager

* added discrete parameter to study config

* covered all parameter types

* moved python script to testing folder

* added python tests to unit tests

* remembered to uncomment existing tests

* fixed path to test script

* moved python tests to separate job in workflow

* added run command to test script
1 parent 61451ef
Raw File
Tip revision: c87d5838b4142fc458f030c1d58be52a554354ac authored by jdplatt on 11 March 2019, 19:54:38 UTC
Test for Bayesian Optimization Algo (#406)
Tip revision: c87d583
.gitignore
# python ignore files
__pycache__/
.idea/
.coverage
.pytest_cache
*.egg-info

# Project specific ignore files
*.swp
bin
/katib-cli

# Go ignore files
## Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

## Test binary, build with `go test -c`
*.test

## Output of the go coverage tool, specifically when used with LiteIDE
*.out

# VS Code ignore files
.vscode/

# macOS ignore files
.DS_Store
.AppleDouble
.LSOverride

## Thumbnails
._*

## Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

## Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows ignore files
## Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

## Dump file
*.stackdump

## Folder config file
[Dd]esktop.ini

## Recycle Bin used on file shares
$RECYCLE.BIN/

## Vendor packages
vendor/
back to top