Skip to content
Snippets Groups Projects
Commit bc363c1e authored by Nikolai.Hartmann's avatar Nikolai.Hartmann
Browse files

Update README.md

parent a0c31bdc
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,19 @@ Previously created projects can be inspected in iypthon like
ipython -i -m KerasROOTClassification.browse <project-dir>
```
Or in a script you can initialise a project by just specifying the path to the project directory. This is especially useful when you want to compare different projects:
```python
from KerasROOTClassification import ClassificationProject
from KerasROOTClassification.compare import overlay_ROC, overlay_loss
c1 = ClassificationProject("path/to/project1")
c2 = ClassificationProject("path/to/project2")
overlay_ROC("ROC_overlay.pdf", c1, c2)
overlay_loss("loss_overlay.pdf", c1, c2)
```
# Conda setup
An example for a mini conda setup that contains the nescessary packages:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment