Refactored structure // Adapted structure from python wiki authored by thiuda's avatar thiuda
blank
copied from prev page:
- Install any packages you want to use. For our example, switch to the package manager with "\]" and run:
```
## Package Installation
Install any packages you want to use. For our example, switch to the package manager with `\]` and run:
```julia
add LowRankModels
add DecisionTree
```
- Congratulations! As an example, run:
```
## Quickstart
Congratulations! As an example, run:
```julia
using ConML
using LowRankModels # some algorithms for Construction and Reconstruction, use what you want
using DecisionTree
......@@ -52,4 +51,6 @@ copied from prev page:
learn(block)
```
- To update the packages, navigate to the project folder and do a git pull. Afterwards, go to the julia package manager ("\]") and run "update".
\ No newline at end of file
## Update
Navigate to the project folder and run `git pull`. Afterwards, go to the julia package manager (`\]`) and run `update`.
\ No newline at end of file