forked from gitter-badger/bot7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
45 lines (40 loc) · 1.28 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
------------------------------------------------
-- Preamble
------------------------------------------------
--[[
Initializer for bot7 package.
Package Listing:
----------------------------------------
| Directory | Content |
----------------------------------------
| utils | Utility methods |
| models | Target function models |
| grids | Input grids |
| scores | Acquisition functions |
| samplers | Sampling methods |
| bots | Automated expt. runners |
----------------------------------------
To Do:
- Sobol grid (needs debugging)
- TPE implementation
Authored: 2015-09-28 (jwilson)
Modified: 2016-02-19
--]]
------------------------------------------------
-- Initializer
------------------------------------------------
bot7 = {} -- leaks a global called bot7
--------------------------------
-- Standalone Modules
--------------------------------
include('hyperparam.lua')
--------------------------------
-- Class Modules
--------------------------------
require('bot7.utils')
require('bot7.models')
require('bot7.grids')
require('bot7.scores')
require('bot7.samplers')
require('bot7.bots')
return bot7