https://github.com/himkt/optuna-schemata
https://github.com/himkt/optuna-schemata
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/himkt/optuna-schemata
- Owner: himkt
- Created: 2020-10-12T12:22:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T13:51:45.000Z (over 5 years ago)
- Last Synced: 2025-03-02T17:48:33.871Z (over 1 year ago)
- Language: Ruby
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Optuna schemata
## MySQL
### (a) Vanilla MySQL
1. create database
```
% mysql -u [your name] # terminal
> create table [table name] -- mysql console
> exit;
```
2. create tables
```shell
make mysql
```
### (b) Ridgepole
1. setup
```shell
bundle install
```
2. create tables
```shell
make mysql_ridgepole
```