3

我正在尝试将 openresty 与 torch 一起用于神经网络的 Rest api。第一个查询有效,之后的任何查询都失败。

Nginx 配置

workers processes 1;

error_log logs/error.log;
events {
    workers connections 1024
}
http {
    server {
        listen 5050;
        location /{
            default type text/html;
            content_by_lua_file /home/yiftach/testFile.lua;
        } 
    } 
}

测试文件.lua

require "nn" 
local tensorA=torch.zeros(1,1)
ngx.say(tensorA:size()[1])

错误:

Lua entry thread aborted: runtime error: /home/yiftach/testFile.lua: attempt to index global 'torch' (a nil value)

将不胜感激任何帮助

4

1 回答 1

1

你没有require火炬库。local torch = require "torch"在顶部添加。

于 2015-06-20T07:46:02.620 回答