Releases: hughperkins/pytorch
Releases · hughperkins/pytorch
v4.1.0
v4.0.0
Changes:
- uses luajit by default on linux, instead of lua (mac os x continues to use lua, instead of luajit)
v3.1.0
Changes:
- improved error handling, when something goes wrong in lua script
Bug fixes
- fix py27 regression, which meant that the scripts wouldnt compile
v3.0.0
backward incompatible change:
- nn modules now in
PyTorchAug.nn
, rather than inPyTorchAug
directly
new functionality:
- anything in
nn
can now be used, without having to explicitly add to the program - this also paves the way for being able to easily (and perhaps automatically) handle other types, like nnx etc
v2.9.0
Changes:
- lua functions can return tables to python now (as python dictionaries)
v2.8.1
Bugfixes:
- fix bug with pushing tables to function calls
v2.8.0
changes:
- can pass python dictionary to lua function now, where it arrives as a lua table
v2.7.0
Changes:
- can pass parameters to lua class constructor now
v2.6.0
Changes:
- Simplify loading lua classes: added
PyTorchHelpers.load_lua_class(lua_filename, lua_classname)
v2.5.0
Changes:
- added incremental build option to
build.sh
(build likeINCREMENTAL=1 ./build.sh