forked from twitter-archive/torch-dataset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset-scm-1.rockspec
41 lines (37 loc) · 1 KB
/
dataset-scm-1.rockspec
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
package = "dataset"
version = "scm-1"
source = {
url = "git://github.com/twitter/torch-dataset.git",
}
description = {
summary = "A dataset library, for Torch",
homepage = "-",
license = "MIT",
}
dependencies = {
"torch >= 7.0",
"regress",
"luasocket",
"luafilesystem",
"paths",
"ipc",
"murmurhash3",
}
build = {
type = "builtin",
modules = {
['dataset.Batch'] = 'lua/Batch.lua',
['dataset.Cache'] = 'lua/Cache.lua',
['dataset.Dataset'] = 'lua/Dataset.lua',
['dataset.Getters'] = 'lua/Getters.lua',
['dataset.Index'] = 'lua/Index.lua',
['dataset.IndexCSV'] = 'lua/IndexCSV.lua',
['dataset.IndexDirectory'] = 'lua/IndexDirectory.lua',
['dataset.IndexSlowFS'] = 'lua/IndexSlowFS.lua',
['dataset.IndexTensor'] = 'lua/IndexTensor.lua',
['dataset.IndexUtils'] = 'lua/IndexUtils.lua',
['dataset.Reader'] = 'lua/Reader.lua',
['dataset.Sampler'] = 'lua/Sampler.lua',
['dataset.SlowFS'] = 'lua/SlowFS.lua',
},
}