Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkerBarrett959 authored Nov 3, 2024
1 parent 73e6108 commit cdfc58d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,23 @@ make
```
./MltTest
```

# Run Examples

This library contains examples for all the algorithms implemented. The example executables can be built by enabling them in the CMake command by using a flag. For example:

```
mkdir build
cd build
cmake .. -DBUILD_LINEAR_REGRESSION=true
make
./LinearRegressionExample
```

Depending on which flags are used, the associated binaries will be output to the build directory. The current list of supported examples are (entire CMake and run command included below for convenience):

```
# Linear Regression
cmake .. -DBUILD_LINEAR_REGRESSION=true # CMake command
./LinearRegressionExample # Run command
```

0 comments on commit cdfc58d

Please sign in to comment.