Skip to content

Commit

Permalink
Add some space for training exmaple
Browse files Browse the repository at this point in the history
  • Loading branch information
natke committed Oct 13, 2023
1 parent 9d648a4 commit 9e07013
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions blogs/pytorch-on-the-edge.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ <h1 class="r-heading">Run PyTorch models on the edge</h1>
<div class="row">
<div class="col-12 col-md-9">
<p>
Most modern ML models are developed with PyTorch. The agility and flexibility that PyTorch provides for creating and training models has made it the most popular deep learning framework today. The typical workflow is to train these models in the cloud and run them from the cloud as well. However, many scenarios are arising that make it more attractive - or in some cases, required - to run locally on device. These include:
Most modern ML models are developed with PyTorch. The agility and flexibility that PyTorch provides for creating and training models has made it the most popular deep learning framework today. The typical workflow is to train these models in the cloud and run them from the cloud as well. However, many scenarios are arising that make it more attractive or in some cases, required to run locally on device. These include:
</p>
<ul>
<li>Avoiding network roundtrips to the cloud (for example in audio and video processing)</li>
<li>Avoiding network round-trips to the cloud (for example in audio and video processing)</li>
<li>Keeping user data on device (for privacy protection or regulatory requirements)</li>
<li>High cost of cloud resources (especially when device capabilities are underutilized)</li>
<li>Application requirements to operate without internet connectivity</li>
Expand Down Expand Up @@ -269,6 +269,8 @@ <h3 class="r-heading">Speech recognition with Whisper on mobile</h3>

<img src="../images/pytorch-on-the-edge-speechrec.png" alt="Screenshot of an Android app to perform speech recognition using ONNX Runtime, running a PyTorch Whisper model" class="img-fluid">

<p></p>

<h3 class="r-heading">Train a model to recognize your voice on mobile</h3>

<p>ONNX Runtime can also take a pre-trained model and adapt it to data that you provide. It can do this on the edge, on mobile specifically where it is easy to record your voice, access your photos and other personalized data. Importantly, your data does not leave the device during training.</p>
Expand Down

0 comments on commit 9e07013

Please sign in to comment.