Commit 74b5e14d authored by Fabian Meyer's avatar Fabian Meyer
Browse files

Update README.md

parent a12379ab
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@
![Appveyor Status](https://ci.appveyor.com/api/projects/status/66uh2rua4sijj4y9?svg=true)
![Appveyor Status](https://ci.appveyor.com/api/projects/status/66uh2rua4sijj4y9?svg=true)


gradient-descent-cpp is a header-only C++ library for gradient descent
gradient-descent-cpp is a header-only C++ library for gradient descent
optimization using the Eigen3 library.
optimization using the ```Eigen3``` library.


## Install
## Install


@@ -21,7 +21,7 @@ cmake ..
make install
make install
```
```


The library requires Eigen3 to be installed on your system.
The library requires ```Eigen3``` to be installed on your system.
In Debian based systems you can simply type
In Debian based systems you can simply type


```bash
```bash
@@ -30,6 +30,8 @@ apt-get install libeigen3-dev


Make sure ```Eigen3``` can be found by your build system.
Make sure ```Eigen3``` can be found by your build system.


You can use the CMake Find module in ```cmake/``` to find the installed header.

## Usage
## Usage


There are three steps to use gradient-descent-cpp:
There are three steps to use gradient-descent-cpp: