Browse Source

[FIX] fix typo in mnist experiment

pull/7/head
Gao Enhao 1 year ago
parent
commit
3619df4780
4 changed files with 9 additions and 9 deletions
  1. +1
    -1
      docs/Examples/HWF.rst
  2. +6
    -6
      docs/Examples/MNISTAdd.rst
  3. +1
    -1
      examples/hwf/hwf.ipynb
  4. +1
    -1
      examples/mnist_add/mnist_add.ipynb

+ 1
- 1
docs/Examples/HWF.rst View File

@@ -192,7 +192,7 @@ sklearn-style interface.
num_epochs=3, num_epochs=3,
) )


``BasicNN`` offers methods like ``predict`` and ``predict_prob``, which
``BasicNN`` offers methods like ``predict`` and ``predict_proba``, which
are used to predict the class index and the probabilities of each class are used to predict the class index and the probabilities of each class
for images. As shown below: for images. As shown below:




+ 6
- 6
docs/Examples/MNISTAdd.rst View File

@@ -163,7 +163,7 @@ model with a sklearn-style interface.
num_epochs=1, num_epochs=1,
) )


``BasicNN`` offers methods like ``predict`` and ``predict_prob``, which
``BasicNN`` offers methods like ``predict`` and ``predict_proba``, which
are used to predict the class index and the probabilities of each class are used to predict the class index and the probabilities of each class
for images. As shown below: for images. As shown below:


@@ -385,7 +385,7 @@ We present the results of ABL as follows, which include the reasoning accuracy (


<style type="text/css"> <style type="text/css">
.tg {border-collapse:collapse;border-spacing:0;margin-bottom:20px;} .tg {border-collapse:collapse;border-spacing:0;margin-bottom:20px;}
.tg td, .tg th {border:1px solid #ddd;padding:10px 15px;text-align:center;}
.tg td, .tg th {border:1px solid #ddd;padding:8px 22px;text-align:center;}
.tg th {background-color:#f5f5f5;color:#333333;} .tg th {background-color:#f5f5f5;color:#333333;}
.tg tr:nth-child(even) {background-color:#f9f9f9;} .tg tr:nth-child(even) {background-color:#f9f9f9;}
.tg tr:nth-child(odd) {background-color:#ffffff;} .tg tr:nth-child(odd) {background-color:#ffffff;}
@@ -394,9 +394,9 @@ We present the results of ABL as follows, which include the reasoning accuracy (
<table class="tg" style="margin-left: auto; margin-right: auto;"> <table class="tg" style="margin-left: auto; margin-right: auto;">
<thead> <thead>
<tr> <tr>
<th>Method</th>
<th>Accuracy</th>
<th>Time to achieve the Acc. (s)</th>
<th>方法</th>
<th>推理准确率(%)</th>
<th>训练时间(秒)</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -416,7 +416,7 @@ We present the results of ABL as follows, which include the reasoning accuracy (
<td>257</td> <td>257</td>
</tr> </tr>
<tr> <tr>
<td>ABL</td>
<td>ABLkit</td>
<td><span style="font-weight:bold">98.1</span></td> <td><span style="font-weight:bold">98.1</span></td>
<td><span style="font-weight:bold">47</span></td> <td><span style="font-weight:bold">47</span></td>
</tr> </tr>


+ 1
- 1
examples/hwf/hwf.ipynb View File

@@ -184,7 +184,7 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "source": [
"`BasicNN` offers methods like `predict` and `predict_prob`, which are used to predict the class index and the probabilities of each class for images. As shown below:"
"`BasicNN` offers methods like `predict` and `predict_proba`, which are used to predict the class index and the probabilities of each class for images. As shown below:"
] ]
}, },
{ {


+ 1
- 1
examples/mnist_add/mnist_add.ipynb View File

@@ -208,7 +208,7 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "source": [
"`BasicNN` offers methods like `predict` and `predict_prob`, which are used to predict the class index and the probabilities of each class for images. As shown below:"
"`BasicNN` offers methods like `predict` and `predict_proba`, which are used to predict the class index and the probabilities of each class for images. As shown below:"
] ]
}, },
{ {


Loading…
Cancel
Save