README.md in torch-rb-0.2.7 vs README.md in torch-rb-0.3.0
- old
+ new
@@ -40,10 +40,12 @@
- Methods that perform in-place modifications end with `!` instead of `_` (`add!` instead of `add_`)
- Methods that return booleans use `?` instead of `is_` (`tensor?` instead of `is_tensor`)
- Numo is used instead of NumPy (`x.numo` instead of `x.numpy()`)
+You can follow PyTorch tutorials and convert the code to Ruby in many cases. Feel free to open an issue if you run into problems.
+
## Tutorial
Some examples below are from [Deep Learning with PyTorch: A 60 Minutes Blitz](https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html)
### Tensors
@@ -407,10 +409,11 @@
Here’s the list of compatible versions.
Torch.rb | LibTorch
--- | ---
-0.2.0+ | 1.5.0+
+0.3.0 | 1.6.0
+0.2.0-0.2.7 | 1.5.0-1.5.1
0.1.8 | 1.4.0
0.1.0-0.1.7 | 1.3.1
### Homebrew