Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete study subcommand #56

Merged
merged 2 commits into from
Oct 27, 2019
Merged

Delete study subcommand #56

merged 2 commits into from
Oct 27, 2019

Conversation

c-bata
Copy link
Owner

@c-bata c-bata commented Oct 27, 2019

refs optuna/optuna#524

$ ./bin/goptuna create-study --storage sqlite:///example.db --study study
study
$ sqlite3 example.db 
SQLite version 3.24.0 2018-06-04 14:10:15
Enter ".help" for usage hints.
sqlite> select * from studies;
1|study|MINIMIZE
sqlite> ^D
$ ./bin/goptuna create-study --storage sqlite:///example.db --study study2
study2
$ sqlite3 example.db 
SQLite version 3.24.0 2018-06-04 14:10:15
Enter ".help" for usage hints.
sqlite> select * from studies;
1|study|MINIMIZE
2|study2|MINIMIZE
sqlite> ^D
$ ./bin/goptuna delete-study --storage sqlite:///example.db --study study
$ sqlite3 example.db 
SQLite version 3.24.0 2018-06-04 14:10:15
Enter ".help" for usage hints.
sqlite> select * from studies;
2|study2|MINIMIZE
sqlite> 

@c-bata c-bata changed the title Delete study Delete study subcommand Oct 27, 2019
@c-bata c-bata merged commit 7660010 into master Oct 27, 2019
@c-bata c-bata deleted the delete-study branch October 27, 2019 23:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant