Skip to content

Commit

Permalink
changed some links
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-igel committed May 20, 2024
1 parent c94a906 commit c75ece1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
theinput = document.createElement("input");
theinput.type = "text";
theinput.name = "q";
theinput.value = term + " site:http://shark-ml.org/";
theinput.value = term + " site:https://shark-ml.github.io/Shark/";
theform.appendChild(theinput);
document.body.appendChild(theform);
theform.submit();
Expand Down Expand Up @@ -180,7 +180,7 @@ <h2>Quick Start</h2>
</p>
<div class="code">ClassificationDataset traindata;
downloadCsvData(traindata,
<span class="string">"www.shark-ml.org/data/quickstart-train.csv"</span>,
<span class="string">"https://raw.githubusercontent.com/Shark-ML/Shark/master/docs/data/quickstart-train.csv"</span>,
LAST_COLUMN,
<span class="string">' '</span>);
</div>
Expand All @@ -201,7 +201,7 @@ <h2>Quick Start</h2>
</p>
<div class="code">ClassificationDataset testdata;
downloadCsvData(testdata,
<span class="string">"www.shark-ml.org/data/quickstart-test.csv"</span>,
<span class="string">"https://raw.githubusercontent.com/Shark-ML/Shark/master/docs/data/quickstart-test.csv"</span>,
LAST_COLUMN,
<span class="string">' '</span>);
ZeroOneLoss&lt;&gt; loss;
Expand Down

0 comments on commit c75ece1

Please sign in to comment.