Skip to content

Commit cd5908b

Browse files
committed
update web
1 parent 35c3e64 commit cd5908b

35 files changed

+357
-123
lines changed

association-rule.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

classification.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

clustering.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

data.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

deep-learning.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

faq.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>
@@ -226,22 +226,22 @@ <h2 class="question" id="link-with-smile">Link with Smile</h2>
226226
&lt;dependency&gt;
227227
&lt;groupId&gt;com.github.haifengl&lt;/groupId&gt;
228228
&lt;artifactId&gt;smile-core&lt;/artifactId&gt;
229-
&lt;version&gt;4.0.0&lt;/version&gt;
229+
&lt;version&gt;4.1.0&lt;/version&gt;
230230
&lt;/dependency&gt;
231231
</code></pre>
232232
</div>
233233
</div>
234234
<div class="tab-pane" id="gradle_1">
235235
<div class="code" style="text-align: left;">
236236
<pre class="prettyprint"><code>
237-
implementation("com.github.haifengl:smile-core:4.0.0")
237+
implementation("com.github.haifengl:smile-core:4.1.0")
238238
</code></pre>
239239
</div>
240240
</div>
241241
<div class="tab-pane" id="sbt_1">
242242
<div class="code" style="text-align: left;">
243243
<pre class="prettyprint"><code>
244-
libraryDependencies += "com.github.haifengl" % "smile-core" % "4.0.0"
244+
libraryDependencies += "com.github.haifengl" % "smile-core" % "4.1.0"
245245
</code></pre>
246246
</div>
247247
</div>
@@ -260,22 +260,22 @@ <h2 class="question" id="link-with-smile">Link with Smile</h2>
260260
&lt;dependency&gt;
261261
&lt;groupId&gt;com.github.haifengl&lt;/groupId&gt;
262262
&lt;artifactId&gt;smile-deep&lt;/artifactId&gt;
263-
&lt;version&gt;4.0.0&lt;/version&gt;
263+
&lt;version&gt;4.1.0&lt;/version&gt;
264264
&lt;/dependency&gt;
265265
</code></pre>
266266
</div>
267267
</div>
268268
<div class="tab-pane" id="gradle_2">
269269
<div class="code" style="text-align: left;">
270270
<pre class="prettyprint"><code>
271-
implementation("com.github.haifengl:smile-deep:4.0.0")
271+
implementation("com.github.haifengl:smile-deep:4.1.0")
272272
</code></pre>
273273
</div>
274274
</div>
275275
<div class="tab-pane" id="sbt_2">
276276
<div class="code" style="text-align: left;">
277277
<pre class="prettyprint"><code>
278-
libraryDependencies += "com.github.haifengl" %% "smile-deep" % "4.0.0"
278+
libraryDependencies += "com.github.haifengl" %% "smile-deep" % "4.1.0"
279279
</code></pre>
280280
</div>
281281
</div>
@@ -284,7 +284,7 @@ <h2 class="question" id="link-with-smile">Link with Smile</h2>
284284
<p>For Scala API, add</p>
285285
<div class="code" style="text-align: left;">
286286
<pre class="prettyprint"><code>
287-
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "4.0.0"
287+
libraryDependencies += "com.github.haifengl" %% "smile-scala" % "4.1.0"
288288
</code></pre>
289289
</div>
290290

feature.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

gallery.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<p class="lead">
8383
<a href="index.html">
8484
<img src="images/smile.jpg" style="height:100px; width:auto; vertical-align: bottom; margin-top: 20px; margin-right: 20px;">
85-
<span class="tagline">Smile - Statistical Machine Intelligence and Learning Engine</span>
85+
<span class="tagline">Smile &mdash; Statistical Machine Intelligence and Learning Engine</span>
8686
</a>
8787
</p>
8888
</div>

0 commit comments

Comments
 (0)