README.md in torch-rb-0.1.4 vs README.md in torch-rb-0.1.5

- old
+ new

@@ -18,19 +18,21 @@ ```ruby gem 'torch-rb' ``` +It can take a few minutes to compile the extension. + ## Getting Started This library follows the [PyTorch API](https://pytorch.org/docs/stable/torch.html). There are a few changes to make it more Ruby-like: - 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()`) -Many methods and options are missing at the moment. PRs welcome! +Some methods and options are missing at the moment. PRs welcome! ## Tutorial Some examples below are from [Deep Learning with PyTorch: A 60 Minutes Blitz](https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html) @@ -363,12 +365,12 @@ ## Examples Here are a few full examples: -- [Image classification with MNIST](examples/mnist) +- [Image classification with MNIST](examples/mnist) ([日本語版](https://qiita.com/kojix2/items/c19c36dc1bf73ea93409)) - [Collaborative filtering with MovieLens](examples/movielens) -- [Word embeddings](examples/nlp) [master] +- [Word embeddings](examples/nlp) ## LibTorch Installation [Download LibTorch](https://pytorch.org/). For Linux, use the `cxx11 ABI` version. Then run: