Repository: incubator-predictionio-site
Updated Branches:
  refs/heads/asf-site 464172ede -> 89f04a02f


http://git-wip-us.apache.org/repos/asf/incubator-predictionio-site/blob/89f04a02/templates/similarproduct/quickstart/index.html.gz
----------------------------------------------------------------------
diff --git a/templates/similarproduct/quickstart/index.html.gz 
b/templates/similarproduct/quickstart/index.html.gz
index cab855c..9f3a1bc 100644
Binary files a/templates/similarproduct/quickstart/index.html.gz and 
b/templates/similarproduct/quickstart/index.html.gz differ

http://git-wip-us.apache.org/repos/asf/incubator-predictionio-site/blob/89f04a02/templates/vanilla/dase/index.html.gz
----------------------------------------------------------------------
diff --git a/templates/vanilla/dase/index.html.gz 
b/templates/vanilla/dase/index.html.gz
index fa0a10f..16c2023 100644
Binary files a/templates/vanilla/dase/index.html.gz and 
b/templates/vanilla/dase/index.html.gz differ

http://git-wip-us.apache.org/repos/asf/incubator-predictionio-site/blob/89f04a02/templates/vanilla/quickstart/index.html
----------------------------------------------------------------------
diff --git a/templates/vanilla/quickstart/index.html 
b/templates/vanilla/quickstart/index.html
index 15f38a1..21f1b0d 100644
--- a/templates/vanilla/quickstart/index.html
+++ b/templates/vanilla/quickstart/index.html
@@ -54,17 +54,17 @@ Your system is all ready to go.
 </pre></td></tr></tbody></table> </div> <p>When the engine is deployed 
successfully and running, you should see a console message similar to the 
following:</p><div class="highlight shell"><table style="border-spacing: 
0"><tbody><tr><td class="gutter gl" style="text-align: right"><pre 
class="lineno">1
 2</pre></td><td class="code"><pre><span class="o">[</span>INFO] <span 
class="o">[</span>HttpListener] Bound to /0.0.0.0:8000
 <span class="o">[</span>INFO] <span class="o">[</span>MasterActor] Bind 
successful. Ready to serve.
-</pre></td></tr></tbody></table> </div> <p>Do not kill the deployed engine 
process.</p><p>By default, the deployed engine binds to <a 
href="http://localhost:8000";><a 
href="http://localhost:8000";>http://localhost:8000</a></a>. You can visit that 
page in your web browser to check its status.</p><p><img alt="Engine Status" 
src="/images/engine-server-3246414b.png"/></p></p><h2 id='6.-use-the-engine' 
class='header-anchors'>6. Use the Engine</h2><p>Now, You can try to retrieve 
predicted results. The engine accepts JSON query with the field &#39;q&#39;: 
<code>{ &quot;q&quot; : &quot;foo&quot; }</code>. A prefix is added to the 
query data and return as PredictedResult.</p><p>With the deployed engine 
running, open another temrinal and run the following <code>curl</code> command 
or use SDK to send the query:</p><div class="tabs"> <ul class="control"> <li 
data-lang="json"><a href="#tab-a563cac6-bd8c-461f-9a58-c9f8607c7ded">REST 
API</a></li> <li data-lang="python"><a href="#tab-a6136f7c-cb92-47
 d3-90cb-9b4dd7ff1c7a">Python SDK</a></li> <li data-lang="php"><a 
href="#tab-da5ac17b-6b0c-48c5-85b5-2bb7ea0748c2">PHP SDK</a></li> <li 
data-lang="ruby"><a href="#tab-b2c32cb2-9d47-4806-a787-e4d5c5614765">Ruby 
SDK</a></li> <li data-lang="java"><a 
href="#tab-dc71b828-8b30-4dbf-80c7-f774df752a00">Java SDK</a></li> </ul> <div 
data-tab="REST API" data-lang="json" 
id="tab-a563cac6-bd8c-461f-9a58-c9f8607c7ded"> <div class="highlight shell"> 
<table style="border-spacing: 0"><tbody><tr> <td class="gutter gl" 
style="text-align: right"><pre class="lineno">1
+</pre></td></tr></tbody></table> </div> <p>Do not kill the deployed engine 
process.</p><p>By default, the deployed engine binds to <a 
href="http://localhost:8000";><a 
href="http://localhost:8000";>http://localhost:8000</a></a>. You can visit that 
page in your web browser to check its status.</p><p><img alt="Engine Status" 
src="/images/engine-server-3246414b.png"/></p></p><h2 id='6.-use-the-engine' 
class='header-anchors'>6. Use the Engine</h2><p>Now, You can try to retrieve 
predicted results. The engine accepts JSON query with the field &#39;q&#39;: 
<code>{ &quot;q&quot; : &quot;foo&quot; }</code>. A prefix is added to the 
query data and return as PredictedResult.</p><p>With the deployed engine 
running, open another temrinal and run the following <code>curl</code> command 
or use SDK to send the query:</p><div class="tabs"> <ul class="control"> <li 
data-lang="json"><a href="#tab-d7903969-277f-49d7-9146-f7c99d580429">REST 
API</a></li> <li data-lang="python"><a href="#tab-ef1fe5a7-a509-41
 56-8b4e-f2fc674b744f">Python SDK</a></li> <li data-lang="php"><a 
href="#tab-badc3d47-8ace-4472-928a-df11837f7700">PHP SDK</a></li> <li 
data-lang="ruby"><a href="#tab-ae993d3b-b7f7-4289-93e9-d546832d9a31">Ruby 
SDK</a></li> <li data-lang="java"><a 
href="#tab-2a0cda61-a79b-4386-aadd-beb181bb304c">Java SDK</a></li> </ul> <div 
data-tab="REST API" data-lang="json" 
id="tab-d7903969-277f-49d7-9146-f7c99d580429"> <div class="highlight shell"> 
<table style="border-spacing: 0"><tbody><tr> <td class="gutter gl" 
style="text-align: right"><pre class="lineno">1
 2
 3</pre></td> <td class="code"><pre><span class="gp">$ </span>curl -H <span 
class="s2">"Content-Type: application/json"</span> <span class="se">\</span>
 -d <span class="s1">'{ "q": "foo" }'</span> http://localhost:8000/queries.json
 
-</pre></td> </tr></tbody></table> </div> </div> <div data-tab="Python SDK" 
data-lang="python" id="tab-a6136f7c-cb92-47d3-90cb-9b4dd7ff1c7a"> <div 
class="highlight python"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
+</pre></td> </tr></tbody></table> </div> </div> <div data-tab="Python SDK" 
data-lang="python" id="tab-ef1fe5a7-a509-4156-8b4e-f2fc674b744f"> <div 
class="highlight python"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
 2
 3</pre></td> <td class="code"><pre><span class="kn">import</span> <span 
class="nn">predictionio</span>
 <span class="n">engine_client</span> <span class="o">=</span> <span 
class="n">predictionio</span><span class="o">.</span><span 
class="n">EngineClient</span><span class="p">(</span><span 
class="n">url</span><span class="o">=</span><span 
class="s">"http://localhost:8000";</span><span class="p">)</span>
 <span class="k">print</span> <span class="n">engine_client</span><span 
class="o">.</span><span class="n">send_query</span><span class="p">({</span> 
<span class="s">"q"</span><span class="p">:</span> <span class="s">"foo"</span> 
<span class="p">})</span>
-</pre></td> </tr></tbody></table> </div> </div> <div data-tab="PHP SDK" 
data-lang="php" id="tab-da5ac17b-6b0c-48c5-85b5-2bb7ea0748c2"> <div 
class="highlight php"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
+</pre></td> </tr></tbody></table> </div> </div> <div data-tab="PHP SDK" 
data-lang="php" id="tab-badc3d47-8ace-4472-928a-df11837f7700"> <div 
class="highlight php"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
 2
 3
 4
@@ -83,7 +83,7 @@ Your system is all ready to go.
 <span class="nb">print_r</span><span class="p">(</span><span 
class="nv">$response</span><span class="p">);</span>
 
 <span class="cp">?&gt;</span>
-</pre></td> </tr></tbody></table> </div> </div> <div data-tab="Ruby SDK" 
data-lang="ruby" id="tab-b2c32cb2-9d47-4806-a787-e4d5c5614765"> <div 
class="highlight ruby"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
+</pre></td> </tr></tbody></table> </div> </div> <div data-tab="Ruby SDK" 
data-lang="ruby" id="tab-ae993d3b-b7f7-4289-93e9-d546832d9a31"> <div 
class="highlight ruby"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
 2
 3
 4
@@ -96,7 +96,7 @@ Your system is all ready to go.
 <span class="n">response</span> <span class="o">=</span> <span 
class="n">client</span><span class="p">.</span><span 
class="nf">send_query</span><span class="p">(</span><span class="s1">'q'</span> 
<span class="o">=&gt;</span> <span class="s1">'foo'</span><span 
class="p">)</span>
 
 <span class="nb">puts</span> <span class="n">response</span>
-</pre></td> </tr></tbody></table> </div> </div> <div data-tab="Java SDK" 
data-lang="java" id="tab-dc71b828-8b30-4dbf-80c7-f774df752a00"> <div 
class="highlight java"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
+</pre></td> </tr></tbody></table> </div> </div> <div data-tab="Java SDK" 
data-lang="java" id="tab-2a0cda61-a79b-4386-aadd-beb181bb304c"> <div 
class="highlight java"> <table style="border-spacing: 0"><tbody><tr> <td 
class="gutter gl" style="text-align: right"><pre class="lineno">1
 2
 3
 4

http://git-wip-us.apache.org/repos/asf/incubator-predictionio-site/blob/89f04a02/templates/vanilla/quickstart/index.html.gz
----------------------------------------------------------------------
diff --git a/templates/vanilla/quickstart/index.html.gz 
b/templates/vanilla/quickstart/index.html.gz
index 611ae57..c3d4138 100644
Binary files a/templates/vanilla/quickstart/index.html.gz and 
b/templates/vanilla/quickstart/index.html.gz differ

http://git-wip-us.apache.org/repos/asf/incubator-predictionio-site/blob/89f04a02/tryit/index.html.gz
----------------------------------------------------------------------
diff --git a/tryit/index.html.gz b/tryit/index.html.gz
index c18a959..6a280b4 100644
Binary files a/tryit/index.html.gz and b/tryit/index.html.gz differ

Reply via email to