Skip to content

Commit 5e7718c

Browse files
committed
Copy updates.
1 parent 8dca448 commit 5e7718c

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

app/components/app.js

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -306,34 +306,29 @@ class App extends Component {
306306
<TweetButton/>
307307
</div>
308308
<div id='canvas-explainer-title-container'>
309-
About the Model
309+
About Paint with Machine Learning
310310
</div>
311311
<div id='output-explainer-title-container'>
312-
About Spell
312+
About Spell Model Serving
313313
</div>
314314
<div id='canvas-explainer-text-container' className='explainer-text-container'>
315315
<p>
316-
This app uses a version of the GauGAN deep learning model to transform an input segmentation masks into a landscape painting.
316+
This web app allows you to create a landscape painting in the style of Bob Ross using a deep learning model served using a <a href="https://spell.ml/docs/model_servers/" style={{color: 'white'}}>Spell model server</a>. To do so paint some shapes on the canvas with a set of thematic (trees, mountains, etcetera) brushes provided to you. The shapes you paint are sent to a model server endpoint, which computes an output and presents it on the other screen.
317317
</p>
318318
<p>
319-
<a href="https://github.com/NVlabs/SPADE" style={{color: 'white'}}>GauGAN</a>, released in 2019, is the most powerful image-to-image translation algorithm currently known. This version of the model has been trained on the popular ADE20K dataset, then fine-tuned on a dataset of 250 paintings from Bob Ross's beloved PBS series, <a href="https://www.youtube.com/user/BobRossInc" style={{color: 'white'}}>"The Joy of Painting"</a>.
320-
</p>
321-
<p>
322-
Choose from nine different semantic brushes to craft your painting. Then click on the "Run" button to generate a result!
323-
</p>
324-
<p>
325-
The <a href="https://www.kaggle.com/residentmario/segmented-bob-ross-images" style={{color: 'white'}}>dataset</a> and <a href="https://github.com/ResidentMario/paint-with-ml" style={{color: 'white'}}>code</a> are publicly available. To learn more about how it works, check out <a href="https://spell.ml/blog/paint-with-machine-learning-X10i3BAAACQAUI_o" style={{color: 'white'}}>our blog post</a>.
319+
The <a href="https://www.kaggle.com/residentmario/segmented-bob-ross-images" style={{color: 'white'}}>dataset</a> and <a href="https://github.com/ResidentMario/paint-with-ml" style={{color: 'white'}}>code</a> are publicly available. To learn more about how it works and how it was developed, check out <a href="https://spell.ml/blog/paint-with-machine-learning-X10i3BAAACQAUI_o" style={{color: 'white'}}>our blog post</a>.
326320
</p>
327321
</div>
328322
<div id='output-explainer-text-container' className='explainer-text-container'>
323+
329324
<p>
330-
<a href="https://spell.ml/" style={{color: 'white'}}>Spell</a> is a powerful end-to-end machine learning model training and deployment platform. The model powering this application was trained in Spell runs and workspaces and then deployed into production using a Spell model server.
325+
<a href="https://spell.ml/" style={{color: 'white'}}>Spell</a> is a powerful end-to-end machine learning model training and deployment platform. The model powering this application was trained using the Spell platform and then deployed into production using Spell’s new Model Serving feature.
331326
</p>
332327
<p>
333-
We provide an easy-to-use API for deploying your model server publicly or privately. And because we serve models using Kubernetes, the service automatically scales up and down based on demand.
328+
Spell provides an easy-to-use API for deploying your model server publicly or privately. Models are served on Kubernetes, so the service automatically scales up and down based on demand.
334329
</p>
335330
<p>
336-
To learn more, see <a href="https://spell.ml/docs/model_servers" style={{color: 'white'}}>our docs</a>.
331+
<a href="https://spell.ml/docs/model_servers" style={{color: 'white'}}>Click here to learn more</a>.
337332
</p>
338333
</div>
339334
</div>

app/components/tweet_button.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@
33
<head>
44
<meta charset="UTF-8">
55
<title>Paint with Machine Learning</title>
6+
<meta property="og:title" content="Paint with Machine Learning" />
7+
<meta name="twitter:title" content="Paint with Machine Learning" />
8+
<meta name="description" content="Create a landscape painting in the style of Bob Ross using machine learning." />
9+
<meta property="og:description" content="Create a landscape painting in the style of Bob Ross using machine learning." />
10+
<meta name="twitter:description" content="Create a landscape painting in the style of Bob Ross using machine learning." />
11+
<meta property="og:image" content="/static/img/social.png" />
12+
<meta name="twitter:image" content="/static/img/social.png" />
613
<link rel="stylesheet" type="text/css" href="static/fonts.css"/>
714
<link rel="stylesheet" type="text/css" href="static/index.css"/>
8-
<link rel="shortcut icon" href="/static/img/favicon.png">
915
</head>
1016
<body>
1117

app/static/img/social.png

567 KB
Loading

0 commit comments

Comments
 (0)