Skip to content

Commit d1abaa3

Browse files
authored
update links to docs
1 parent 1460b80 commit d1abaa3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ The mission of ThunderSVM is to help users easily and efficiently apply SVMs to
2424

2525
**Why accelerate SVMs**: A [survey](https://www.kaggle.com/amberthomas/kaggle-2017-survey-results) conducted by Kaggle in 2017 shows that 26% of the data mining and machine learning practitioners are users of SVMs.
2626

27-
[Documentations](http://thundersvm.readthedocs.io) | [Installation](http://thundersvm.readthedocs.io/en/latest/how-to.html) | [API Reference (doxygen)](http://Xtra-Computing.github.io/thundersvm/)
27+
[Documentations](docs/index.md) | [Installation](docs/how-to.md#install-thundersvm) | [API Reference (doxygen)](http://Xtra-Computing.github.io/thundersvm/)
2828
## Contents
2929
- [Getting Started](https://github.com/zeyiwen/thundersvm#getting-started)
30-
- [Working without GPUs](http://thundersvm.readthedocs.io/en/latest/get-started.html#working-without-gpus-a-name-withoutgpu-a)
30+
- [Working without GPUs](docs/get-started.md#working-without-gpus)
3131
## Getting Started
3232

3333
### Prerequisites
@@ -67,7 +67,7 @@ clf.fit(x, y)
6767
```bash
6868
git clone https://github.com/zeyiwen/thundersvm.git
6969
```
70-
### Build on Linux (build [instructions](http://thundersvm.readthedocs.io/en/latest/get-started.html#installation) for MacOS and Windows)
70+
### Build on Linux (build [instructions](docs/get-started.md#installation-for-macos) for MacOS and Windows)
7171
##### ThunderSVM on GPUs
7272
```bash
7373
cd thundersvm
@@ -80,7 +80,7 @@ mkdir build && cd build && cmake .. && make -j
8080
git submodule init eigen && git submodule update
8181
mkdir build && cd build && cmake -DUSE_CUDA=OFF -DUSE_EIGEN=ON .. && make -j
8282
```
83-
If ```make -j``` doesn't work, please simply use ```make```. The number of CPU cores to use can be specified by the ```-o``` option (e.g., ```-o 10```), and refer to [Parameters](http://thundersvm.readthedocs.io/en/latest/parameters.html) for more information.
83+
If ```make -j``` doesn't work, please simply use ```make```. The number of CPU cores to use can be specified by the ```-o``` option (e.g., ```-o 10```), and refer to [Parameters](docs/parameters.md) for more information.
8484

8585
### Quick Start
8686
```bash

0 commit comments

Comments
 (0)