You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* small copy change in notebook.
* mapping learning rate, making --set-parameter a global option and lowercase, documentation of train command.
* predict fixes, default STRUCTURE_AND_VALUES
* CLI documentation, fixed issue where target field is ignored. Instead it returns Symbol.UNKNOWN in the TargetFieldPipe.
---------
Co-authored-by: Thomas Rueckstiess <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+4-22Lines changed: 4 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,33 +50,15 @@ ORiGAMi comes with a command line interface (CLI) and a Python SDK.
50
50
51
51
### Usage from the Command Line
52
52
53
-
The CLI allows to train a model and make predictions and generate synthetic data from a trained model. After installation, run `origami` from your shell to see an overview of available commands.
53
+
The CLI allows to train a model and make predictions from a trained model. After installation, run `origami` from your shell to see an overview of available commands.
54
54
55
-
Help for specific commands is available with `origami <command> --help`, where `<command>` is one of `train`, `predict`, `generate`.
55
+
Help for specific commands is available with `origami <command> --help`, where `<command>` is currently one of `train` or `predict`.
56
56
57
-
#### Model Training
58
-
59
-
To train a model, use the `origami train` command. ORiGAMi works well with MongoDB. For example, to train a model on the `shop.orders` collection on a locally running MongoDB instance on standard port 27017, use the following command:
Detailed documentation for the CLI and available options can be found in [`CLI.md`](CLI.md).
72
58
73
59
### Usage with Python
74
60
75
-
...TBD...
76
-
77
-
```python
78
-
from origami.model importORIGAMI
79
-
```
61
+
To see an example on how to use ORiGAMi from Python, take a look at the provided [./notebooks](./notebooks/) folder, e.g. the [`example_origami_dungeons.ipynb`](./notebooks/example_origami_dungeons.ipynb) notebook.
0 commit comments