Skip to content

Commit 6bdc14d

Browse files
brucejlin1Pat Mellon
authored andcommitted
Merge pull request #268 from xta0/mobile-launch
update iOS.md
2 parents 3c90957 + d5426a8 commit 6bdc14d

File tree

1 file changed

+42
-22
lines changed

1 file changed

+42
-22
lines changed

_mobile/ios.md

Lines changed: 42 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,42 +10,45 @@ published: true
1010

1111
# iOS
1212

13-
To get started with PyTorch on iOS, we recommend exploring the following a HelloWorld example on Github [Hello Word](https://github.com/pytorch/ios-demo-app/tree/master/HelloWorld).
13+
To get started with PyTorch on iOS, we recommend exploring the following [HelloWorld](https://github.com/pytorch/ios-demo-app/tree/master/HelloWorld).
1414

15-
## Quickstart with a HelloWorld example
15+
## Quickstart with a Hello World example
1616

17-
HelloWorld is a simple image classification application that demonstrates how to use PyTorch C++ libraries on iOS. The code is written in Swift and uses an Objective-C class as a bridging header.
18-
19-
Before we jump into details, we highly recommend following the Pytorch Github page to set up the Python development environment on your local machine.
17+
HelloWorld is a simple image classification application that demonstrates how to use PyTorch C++ libraries on iOS. The code is written in Swift and uses Objective-C as a bridge.
2018

2119
### Model preparation
2220

23-
Let's start with model preparation. If you are familiar with PyTorch, you probably should already know how to train and save your model. In case you don't, we are going to use a pre-trained image classification model(Resnet18), which is packaged in [TorchVision](https://pytorch.org/docs/stable/torchvision/index.html). To install TorchVision, run the command below.
21+
Let's start with model preparation. If you are familiar with PyTorch, you probably should already know how to train and save your model. In case you don't, we are going to use a pre-trained image classification model - Resnet18, which is already packaged in [TorchVision](https://pytorch.org/docs/stable/torchvision/index.html). To install it, run the command below.
22+
23+
> Before running, we highly recommend following the [Pytorch Github page](https://github.com/pytorch/pytorch) to set up the Python development environment on your local machine.
2424
2525
```shell
2626
pip install torchvision
2727
```
2828

29-
Once we have TorchVision installed successfully, let's navigate to the HelloWorld folder and run a python script to generate our model. The `trace_model.py` contains the code of tracing and saving a [torchscript model](https://pytorch.org/tutorials/beginner/Intro_to_TorchScript_tutorial.html) that can be run on mobile devices. Run the command below to get our model
29+
Once we have TorchVision installed successfully, let's navigate to the HelloWorld folder and run `trace_model.py`. The script contains the code of tracing and saving a [torchscript model](https://pytorch.org/tutorials/beginner/Intro_to_TorchScript_tutorial.html) that can be run on mobile devices.
3030

3131
```shell
3232
python trace_model.py
3333
```
3434

35-
If everything works well, we should have our model - `model.pt` generated in the same folder. Now copy the model file to our application folder `HelloWorld/model`.
35+
If everything works well, we should have our model - `model.pt` generated in the `HelloWorld` folder. Now copy the model file to our application folder `HelloWorld/model`.
36+
37+
> To find out more details about TorchScript, please visit [tutorials on pytorch.org](https://pytorch.org/docs/stable/jit.html)
3638
3739
### Install PyTorch C++ libraries via Cocoapods
3840

39-
The PyTorch C++ library is available in [Cocoapods](https://cocoapods.org/), to integrate it to our project, we can run
41+
The PyTorch C++ library is available in [Cocoapods](https://cocoapods.org/), to integrate it to our project, simply run
4042

4143
```ruby
4244
pod install
4345
```
44-
Now it's time to open the `HelloWorld.xcworkspace` in XCode, select an iOS simulator and hit the build and run button (cmd + R). If everything works well, we should see a wolf picture on the simulator screen along with the prediction result.
46+
47+
Now it's time to open the `HelloWorld.xcworkspace` in XCode, select an iOS simulator and launch it (cmd + R). If everything works well, we should see a wolf picture on the simulator screen along with the prediction result.
4548

4649
### Code Walkthrough
4750

48-
In this part, we are going to walk through the code step by step. The `ViewController.swift` contains most of the code.
51+
In this part, we are going to walk through the code step by step.
4952

5053
#### Image loading
5154

@@ -60,7 +63,7 @@ guard var pixelBuffer = resizedImage.normalized() else {
6063
}
6164
```
6265

63-
We first load an image from the bundle and resize it to 224x224, which is the size of the input tensor. Then we call this `normalized()` category method on UIImage to get normalized pixel data from the image. Let's take a look at the code below.
66+
We first load the image from our bundle and resize it to 224x224. Then we call this `normalized()` category method to normalized the pixel buffer. Let's take a closer look at the code below.
6467

6568
```swift
6669
var normalizedBuffer: [Float32] = [Float32](repeating: 0, count: w * h * 3)
@@ -72,11 +75,12 @@ for i in 0 ..< w * h {
7275
normalizedBuffer[w * h * 2 + i] = (Float32(rawBytes[i * 4 + 2]) / 255.0 - 0.406) / 0.225 // B
7376
}
7477
```
75-
The input data of our model is a 3-channel RGB image of shape (3 x H x W), where H and W are expected to be at least 224. The image have to be loaded in to a range of [0, 1] and then normalized using mean = [0.485, 0.456, 0.406] and std = [0.229, 0.224, 0.225].
7678

77-
#### Init JIT interpreter
79+
The code might look weird at first glance, but it’ll make sense once we understand our model. The input data of our model is a 3-channel RGB image of shape (3 x H x W), where H and W are expected to be at least 224. The image have to be loaded in to a range of [0, 1] and then normalized using mean = [0.485, 0.456, 0.406] and std = [0.229, 0.224, 0.225].
7880

79-
Now that we have preprocessed our input data and we have a pre-trained TorchScript model, the next step is to use the model and the data to run the predication. To do that, we'll first load our model into the application.
81+
#### TorchScript module
82+
83+
Now that we have preprocessed our input data and we have a pre-trained TorchScript model, the next step is to use them to run predication. To do that, we'll first load our model into the application.
8084

8185
```swift
8286
private lazy var module: TorchModule = {
@@ -88,25 +92,43 @@ private lazy var module: TorchModule = {
8892
}
8993
}()
9094
```
91-
The TorchModule Class is an Objective-C wrapper for the C++ class `torch::jit::script::Module`.
95+
Note that the `TorchModule` Class is an Objective-C wrapper of `torch::jit::script::Module`.
9296

9397
```cpp
9498
torch::jit::script::Module module = torch::jit::load(filePath.UTF8String);
9599
```
100+
Since Swift can not talk to C++ directly, we have to either use an Objective-C class as a bride, or create a C wrapper for the C++ library. For the demo purpose, we're going to wrap everything in this Objective-C class, but we are working on bringing the Swift wrapper to PyTorch.
96101

97102
#### Run Inference
98103

99-
Now it's time to run the inference and get the result. We pass in the pixel buffer object as a raw pointer to the `predict` method and get the result from it.
104+
Now it's time to run the inference and get the results.
100105

101106
```swift
102107
guard let outputs = module.predict(image: UnsafeMutableRawPointer(&pixelBuffer)) else {
103108
return
104109
}
105110
```
106-
Again, the `predict` method on the `module` is an Objective-C method. Under the hood, it calls the C++ version of predict which is `forward`
111+
Again, the `predict` method is just an Objective-C wrapper. Under the hood, it calls the C++ `forward` function. Let's take a look at how it's implemented.
107112

108113
```cpp
109-
auto outputTensor = _impl.forward({inputTensor}).toTensor();
114+
at::Tensor tensor = torch::from_blob(imageBuffer, {1, 3, 224, 224}, at::kFloat);
115+
torch::autograd::AutoGradMode guard(false);
116+
at::AutoNonVariableTypeMode non_var_type_mode(true);
117+
auto outputTensor = _impl.forward({tensor}).toTensor();
118+
void* tensorBuffer = outputTensor.storage().data();
119+
```
120+
The C++ function `torch::from_blob` will create an input tensor from the pixel buffer. Note that the shpae of the tensor is `{1,3,224,224}` which represents `NxCxWxH` as we discuessed in above section.
121+
122+
```cpp
123+
torch::autograd::AutoGradMode guard(false);
124+
at::AutoNonVariableTypeMode non_var_type_mode(true);
125+
```
126+
The above two lines tells the PyTorch engine to do inference only. This is beacuse By default, PyTorch has built-in support for doing auto-differentiation, which is also known as autograd. Since we don't do training on mobile, we can just disable the autograd mode.
127+
128+
Finally, we can call this `forward` function to get the output tensor as the results.
129+
130+
```cpp
131+
auto outputTensor = _impl.forward({tensor}).toTensor();
110132
```
111133
112134
### Collect results
@@ -120,9 +142,7 @@ let sortedResults = zippedResults.sorted { $0.1.floatValue > $1.1.floatValue }.p
120142

121143
### PyTorch demo app
122144

123-
For more complex use cases, we recommend to check out the PyTorch demo application.
124-
125-
The demo app contains two showcases. A camera app that runs a quantized model to predict the images coming from device’s rear-facing camera in real time. And a text-based app that uses a self-trained NLP model to predict the topic from the input string.
145+
For more complex use cases, we recommend to check out the PyTorch demo application. The demo app contains two showcases. A camera app that runs a quantized model to predict the images coming from device’s rear-facing camera in real time. And a text-based app that uses a text classififcation model to predict the topic from the input string.
126146

127147
## Build PyTorch iOS libraries from source
128148

0 commit comments

Comments
 (0)