PyTorch 1.0 is out
github.com
PyTorch 1.0 is out
1–10 of 72 posts
Re: PyTorch 1.0 is out
#2Re: PyTorch 1.0 is out
#3Isn't python bytecode simple enough that it can be run anywhere?
Re: PyTorch 1.0 is out
#4Is there some sort of pytorch 1.0 migration guide or does anyone know if there is any breaking from .41 to 1.0 ?
Re: PyTorch 1.0 is out
#5Is there some sort of pytorch 1.0 migration guide or does anyone know if there is any breaking from .41 to 1.0 ?
Re: PyTorch 1.0 is out
#6Re: PyTorch 1.0 is out
#7The new JIT is very interesting. Anyone know if this is for inference only or also for training?
Re: PyTorch 1.0 is out
#8> The JIT is a set of compiler tools for bridging the gap between research in PyTorch and production. It allows for the creation of models that can run without a dependency on the Python interpreter and which can be optimized more aggressively. Using program annotations existing models can be transformed into Torch Script, a subset of Python that PyTorch can run directly. Isn't python bytecode simple enough that it c…
Re: PyTorch 1.0 is out
#9> The JIT is a set of compiler tools for bridging the gap between research in PyTorch and production. It allows for the creation of models that can run without a dependency on the Python interpreter and which can be optimized more aggressively. Using program annotations existing models can be transformed into Torch Script, a subset of Python that PyTorch can run directly. Isn't python bytecode simple enough that it c…
The point here is to run PyTorch code without having a Python interpreter, and without having to run slow Python code.