origami-ml 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. origami_ml-0.1.0/LICENSE +201 -0
  2. origami_ml-0.1.0/PKG-INFO +112 -0
  3. origami_ml-0.1.0/README.md +63 -0
  4. origami_ml-0.1.0/origami/__init__.py +0 -0
  5. origami_ml-0.1.0/origami/cli/__init__.py +1 -0
  6. origami_ml-0.1.0/origami/cli/generate.py +7 -0
  7. origami_ml-0.1.0/origami/cli/main.py +17 -0
  8. origami_ml-0.1.0/origami/cli/predict.py +118 -0
  9. origami_ml-0.1.0/origami/cli/train.py +296 -0
  10. origami_ml-0.1.0/origami/cli/utils.py +134 -0
  11. origami_ml-0.1.0/origami/datasets/__init__.py +0 -0
  12. origami_ml-0.1.0/origami/datasets/dungeons.py +131 -0
  13. origami_ml-0.1.0/origami/inference/__init__.py +4 -0
  14. origami_ml-0.1.0/origami/inference/autocomplete.py +140 -0
  15. origami_ml-0.1.0/origami/inference/batch_sampler.py +50 -0
  16. origami_ml-0.1.0/origami/inference/embedder.py +119 -0
  17. origami_ml-0.1.0/origami/inference/metrics.py +43 -0
  18. origami_ml-0.1.0/origami/inference/predictor.py +144 -0
  19. origami_ml-0.1.0/origami/model/__init__.py +1 -0
  20. origami_ml-0.1.0/origami/model/origami.py +320 -0
  21. origami_ml-0.1.0/origami/model/positions.py +153 -0
  22. origami_ml-0.1.0/origami/model/vpda.py +693 -0
  23. origami_ml-0.1.0/origami/preprocessing/__init__.py +9 -0
  24. origami_ml-0.1.0/origami/preprocessing/df_dataset.py +61 -0
  25. origami_ml-0.1.0/origami/preprocessing/encoder.py +186 -0
  26. origami_ml-0.1.0/origami/preprocessing/pipelines.py +65 -0
  27. origami_ml-0.1.0/origami/preprocessing/pipes.py +362 -0
  28. origami_ml-0.1.0/origami/preprocessing/utils.py +113 -0
  29. origami_ml-0.1.0/origami/utils/__init__.py +7 -0
  30. origami_ml-0.1.0/origami/utils/common.py +380 -0
  31. origami_ml-0.1.0/origami/utils/config.py +157 -0
  32. origami_ml-0.1.0/origami/utils/guild.py +157 -0
  33. origami_ml-0.1.0/origami_ml.egg-info/PKG-INFO +112 -0
  34. origami_ml-0.1.0/origami_ml.egg-info/SOURCES.txt +39 -0
  35. origami_ml-0.1.0/origami_ml.egg-info/dependency_links.txt +1 -0
  36. origami_ml-0.1.0/origami_ml.egg-info/requires.txt +22 -0
  37. origami_ml-0.1.0/origami_ml.egg-info/top_level.txt +1 -0
  38. origami_ml-0.1.0/pyproject.toml +20 -0
  39. origami_ml-0.1.0/setup.cfg +11 -0
  40. origami_ml-0.1.0/setup.py +53 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Copyright 2025 MongoDB
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction,
12
+ and distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all
18
+ other entities that control, are controlled by, or are under common
19
+ control with that entity. For the purposes of this definition,
20
+ "control" means (i) the power, direct or indirect, to cause the
21
+ direction or management of such entity, whether by contract or
22
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
23
+ outstanding shares, or (iii) beneficial ownership of such entity.
24
+
25
+ "You" (or "Your") shall mean an individual or Legal Entity
26
+ exercising permissions granted by this License.
27
+
28
+ "Source" form shall mean the preferred form for making modifications,
29
+ including but not limited to software source code, documentation
30
+ source, and configuration files.
31
+
32
+ "Object" form shall mean any form resulting from mechanical
33
+ transformation or translation of a Source form, including but
34
+ not limited to compiled object code, generated documentation,
35
+ and conversions to other media types.
36
+
37
+ "Work" shall mean the work of authorship, whether in Source or
38
+ Object form, made available under the License, as indicated by a
39
+ copyright notice that is included in or attached to the work
40
+ (an example is provided in the Appendix below).
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object
43
+ form, that is based on (or derived from) the Work and for which the
44
+ editorial revisions, annotations, elaborations, or other modifications
45
+ represent, as a whole, an original work of authorship. For the purposes
46
+ of this License, Derivative Works shall not include works that remain
47
+ separable from, or merely link (or bind by name) to the interfaces of,
48
+ the Work and Derivative Works thereof.
49
+
50
+ "Contribution" shall mean any work of authorship, including
51
+ the original version of the Work and any modifications or additions
52
+ to that Work or Derivative Works thereof, that is intentionally
53
+ submitted to Licensor for inclusion in the Work by the copyright owner
54
+ or by an individual or Legal Entity authorized to submit on behalf of
55
+ the copyright owner. For the purposes of this definition, "submitted"
56
+ means any form of electronic, verbal, or written communication sent
57
+ to the Licensor or its representatives, including but not limited to
58
+ communication on electronic mailing lists, source code control systems,
59
+ and issue tracking systems that are managed by, or on behalf of, the
60
+ Licensor for the purpose of discussing and improving the Work, but
61
+ excluding communication that is conspicuously marked or otherwise
62
+ designated in writing by the copyright owner as "Not a Contribution."
63
+
64
+ "Contributor" shall mean Licensor and any individual or Legal Entity
65
+ on behalf of whom a Contribution has been received by Licensor and
66
+ subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to reproduce, prepare Derivative Works of,
72
+ publicly display, publicly perform, sublicense, and distribute the
73
+ Work and such Derivative Works in Source or Object form.
74
+
75
+ 3. Grant of Patent License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ (except as stated in this section) patent license to make, have made,
79
+ use, offer to sell, sell, import, and otherwise transfer the Work,
80
+ where such license applies only to those patent claims licensable
81
+ by such Contributor that are necessarily infringed by their
82
+ Contribution(s) alone or by combination of their Contribution(s)
83
+ with the Work to which such Contribution(s) was submitted. If You
84
+ institute patent litigation against any entity (including a
85
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
86
+ or a Contribution incorporated within the Work constitutes direct
87
+ or contributory patent infringement, then any patent licenses
88
+ granted to You under this License for that Work shall terminate
89
+ as of the date such litigation is filed.
90
+
91
+ 4. Redistribution. You may reproduce and distribute copies of the
92
+ Work or Derivative Works thereof in any medium, with or without
93
+ modifications, and in Source or Object form, provided that You
94
+ meet the following conditions:
95
+
96
+ (a) You must give any other recipients of the Work or
97
+ Derivative Works a copy of this License; and
98
+
99
+ (b) You must cause any modified files to carry prominent notices
100
+ stating that You changed the files; and
101
+
102
+ (c) You must retain, in the Source form of any Derivative Works
103
+ that You distribute, all copyright, patent, trademark, and
104
+ attribution notices from the Source form of the Work,
105
+ excluding those notices that do not pertain to any part of
106
+ the Derivative Works; and
107
+
108
+ (d) If the Work includes a "NOTICE" text file as part of its
109
+ distribution, then any Derivative Works that You distribute must
110
+ include a readable copy of the attribution notices contained
111
+ within such NOTICE file, excluding those notices that do not
112
+ pertain to any part of the Derivative Works, in at least one
113
+ of the following places: within a NOTICE text file distributed
114
+ as part of the Derivative Works; within the Source form or
115
+ documentation, if provided along with the Derivative Works; or,
116
+ within a display generated by the Derivative Works, if and
117
+ wherever such third-party notices normally appear. The contents
118
+ of the NOTICE file are for informational purposes only and
119
+ do not modify the License. You may add Your own attribution
120
+ notices within Derivative Works that You distribute, alongside
121
+ or as an addendum to the NOTICE text from the Work, provided
122
+ that such additional attribution notices cannot be construed
123
+ as modifying the License.
124
+
125
+ You may add Your own copyright statement to Your modifications and
126
+ may provide additional or different license terms and conditions
127
+ for use, reproduction, or distribution of Your modifications, or
128
+ for any such Derivative Works as a whole, provided Your use,
129
+ reproduction, and distribution of the Work otherwise complies with
130
+ the conditions stated in this License.
131
+
132
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
133
+ any Contribution intentionally submitted for inclusion in the Work
134
+ by You to the Licensor shall be under the terms and conditions of
135
+ this License, without any additional terms or conditions.
136
+ Notwithstanding the above, nothing herein shall supersede or modify
137
+ the terms of any separate license agreement you may have executed
138
+ with Licensor regarding such Contributions.
139
+
140
+ 6. Trademarks. This License does not grant permission to use the trade
141
+ names, trademarks, service marks, or product names of the Licensor,
142
+ except as required for reasonable and customary use in describing the
143
+ origin of the Work and reproducing the content of the NOTICE file.
144
+
145
+ 7. Disclaimer of Warranty. Unless required by applicable law or
146
+ agreed to in writing, Licensor provides the Work (and each
147
+ Contributor provides its Contributions) on an "AS IS" BASIS,
148
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149
+ implied, including, without limitation, any warranties or conditions
150
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151
+ PARTICULAR PURPOSE. You are solely responsible for determining the
152
+ appropriateness of using or redistributing the Work and assume any
153
+ risks associated with Your exercise of permissions under this License.
154
+
155
+ 8. Limitation of Liability. In no event and under no legal theory,
156
+ whether in tort (including negligence), contract, or otherwise,
157
+ unless required by applicable law (such as deliberate and grossly
158
+ negligent acts) or agreed to in writing, shall any Contributor be
159
+ liable to You for damages, including any direct, indirect, special,
160
+ incidental, or consequential damages of any character arising as a
161
+ result of this License or out of the use or inability to use the
162
+ Work (including but not limited to damages for loss of goodwill,
163
+ work stoppage, computer failure or malfunction, or any and all
164
+ other commercial damages or losses), even if such Contributor
165
+ has been advised of the possibility of such damages.
166
+
167
+ 9. Accepting Warranty or Additional Liability. While redistributing
168
+ the Work or Derivative Works thereof, You may choose to offer,
169
+ and charge a fee for, acceptance of support, warranty, indemnity,
170
+ or other liability obligations and/or rights consistent with this
171
+ License. However, in accepting such obligations, You may act only
172
+ on Your own behalf and on Your sole responsibility, not on behalf
173
+ of any other Contributor, and only if You agree to indemnify,
174
+ defend, and hold each Contributor harmless for any liability
175
+ incurred by, or claims asserted against, such Contributor by reason
176
+ of your accepting any such warranty or additional liability.
177
+
178
+ END OF TERMS AND CONDITIONS
179
+
180
+ APPENDIX: How to apply the Apache License to your work.
181
+
182
+ To apply the Apache License to your work, attach the following
183
+ boilerplate notice, with the fields enclosed by brackets "[]"
184
+ replaced with your own identifying information. (Don't include
185
+ the brackets!) The text should be enclosed in the appropriate
186
+ comment syntax for the file format. We also recommend that a
187
+ file or class name and description of purpose be included on the
188
+ same "printed page" as the copyright notice for easier
189
+ identification within third-party archives.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,112 @@
1
+ Metadata-Version: 2.2
2
+ Name: origami-ml
3
+ Version: 0.1.0
4
+ Summary: An ML classifier model to make predictions from semi-structured data.
5
+ Home-page: https://github.com/yourusername/origami-ml
6
+ Author: Thomas Rueckstiess
7
+ Author-email: thomas.rueckstiess@mongodb.com
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: click>=8.1.7
19
+ Requires-Dist: click-option-group>=0.5.6
20
+ Requires-Dist: guildai>=0.9.0
21
+ Requires-Dist: lightgbm>=4.5.0
22
+ Requires-Dist: matplotlib>=3.9.2
23
+ Requires-Dist: mdbrtools>=0.1.1
24
+ Requires-Dist: numpy>=1.26.4
25
+ Requires-Dist: omegaconf>=2.3.0
26
+ Requires-Dist: openml>=0.15.1
27
+ Requires-Dist: pandas>=2.2.3
28
+ Requires-Dist: pymongo>=4.8.0
29
+ Requires-Dist: python-dotenv>=1.0.1
30
+ Requires-Dist: scikit_learn>=1.5.2
31
+ Requires-Dist: torch>=2.4.1
32
+ Requires-Dist: tqdm>=4.66.4
33
+ Requires-Dist: xgboost>=2.1.3
34
+ Provides-Extra: dev
35
+ Requires-Dist: jupyter>=1.1.1; extra == "dev"
36
+ Requires-Dist: jupyter_contrib_nbextensions>=0.7.0; extra == "dev"
37
+ Requires-Dist: pytest>=8.3.3; extra == "dev"
38
+ Requires-Dist: ruff>=0.9.3; extra == "dev"
39
+ Dynamic: author
40
+ Dynamic: author-email
41
+ Dynamic: classifier
42
+ Dynamic: description
43
+ Dynamic: description-content-type
44
+ Dynamic: home-page
45
+ Dynamic: provides-extra
46
+ Dynamic: requires-dist
47
+ Dynamic: requires-python
48
+ Dynamic: summary
49
+
50
+ <p align="center">
51
+ <img src="assets/origami_logo.jpg" style="width: 100%; height: auto;">
52
+ </p>
53
+
54
+ # ORiGAMi - Object Representation through Generative Autoregressive Modelling
55
+
56
+ <p align="center">
57
+ | <a href="https://arxiv.org/abs/2412.17348"><b>ORiGAMi Paper on Arxiv</b></a> |
58
+ </p>
59
+
60
+ ## Disclaimer
61
+
62
+ Please note: This tool is not officially supported or endorsed by MongoDB, Inc. The code is released for use "AS IS" without any warranties of any kind, including, but not limited to its installation, use, or performance. Do not run this tool against critical production systems.
63
+
64
+ ## Overview
65
+
66
+ ORiGAMi is a transformer-based Machine Learning model to directly process semi-structured data such as MongoDB documents or JSON files and make predictions from this data.
67
+
68
+ Typically, when working with semi-structured data in a Machine Learning context, the data needs to be flattened
69
+ into a tabular form first. This flattening can be lossy, especially in the presence of arrays and nested objects, and often requires domain expertise to extract meaningful higher-order features from the raw data. This feature extraction step is manual, slow and expensive and doesn't scale well.
70
+
71
+ ORiGAMi is a transformer model and follows the trend of many other deep learning models by operating directly on the raw data and discovering meaningful features itself. Preprocessing is fully automated (apart from some hyper-parameters that can improve the model performance).
72
+
73
+
74
+ ## Installation
75
+
76
+ ORiGAMi requires Python version 3.10 or higher. We recommend using a virtual environment, such as
77
+ Python's native [`venv`](https://docs.python.org/3/library/venv.html).
78
+
79
+ To install ORiGAMi with `pip`, use
80
+
81
+ ```shell
82
+ pip install origami-ml
83
+ ```
84
+
85
+ You can also clone the repository to your local machine and install the dependencies manually:
86
+
87
+ ```shell
88
+ git clone https://github.com/mongodb-labs/origami.git
89
+ cd origami
90
+ pip install -r requirements.txt
91
+ pip install -e .
92
+ ```
93
+
94
+ ## Usage
95
+
96
+ ORiGAMi comes with a command line interface (CLI) and a Python SDK.
97
+
98
+ ### Usage from the Command Line
99
+
100
+ 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.
101
+
102
+ Help for specific commands is available with `origami <command> --help`, where `<command>` is currently one of `train` or `predict`.
103
+
104
+ Detailed documentation for the CLI and available options can be found in [`CLI.md`](CLI.md).
105
+
106
+ ### Usage with Python
107
+
108
+ 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.
109
+
110
+ ## Experiment Reproduction
111
+
112
+ This code is released alongside our paper, which can be found on Arxiv: [ORIGAMI: A generative transformer architecture for predictions from semi-structured data](https://arxiv.org/abs/2412.17348). To reproduce the experiments in the paper, see the instructions in the [`./experiments/`](./experiments/) directory.
@@ -0,0 +1,63 @@
1
+ <p align="center">
2
+ <img src="assets/origami_logo.jpg" style="width: 100%; height: auto;">
3
+ </p>
4
+
5
+ # ORiGAMi - Object Representation through Generative Autoregressive Modelling
6
+
7
+ <p align="center">
8
+ | <a href="https://arxiv.org/abs/2412.17348"><b>ORiGAMi Paper on Arxiv</b></a> |
9
+ </p>
10
+
11
+ ## Disclaimer
12
+
13
+ Please note: This tool is not officially supported or endorsed by MongoDB, Inc. The code is released for use "AS IS" without any warranties of any kind, including, but not limited to its installation, use, or performance. Do not run this tool against critical production systems.
14
+
15
+ ## Overview
16
+
17
+ ORiGAMi is a transformer-based Machine Learning model to directly process semi-structured data such as MongoDB documents or JSON files and make predictions from this data.
18
+
19
+ Typically, when working with semi-structured data in a Machine Learning context, the data needs to be flattened
20
+ into a tabular form first. This flattening can be lossy, especially in the presence of arrays and nested objects, and often requires domain expertise to extract meaningful higher-order features from the raw data. This feature extraction step is manual, slow and expensive and doesn't scale well.
21
+
22
+ ORiGAMi is a transformer model and follows the trend of many other deep learning models by operating directly on the raw data and discovering meaningful features itself. Preprocessing is fully automated (apart from some hyper-parameters that can improve the model performance).
23
+
24
+
25
+ ## Installation
26
+
27
+ ORiGAMi requires Python version 3.10 or higher. We recommend using a virtual environment, such as
28
+ Python's native [`venv`](https://docs.python.org/3/library/venv.html).
29
+
30
+ To install ORiGAMi with `pip`, use
31
+
32
+ ```shell
33
+ pip install origami-ml
34
+ ```
35
+
36
+ You can also clone the repository to your local machine and install the dependencies manually:
37
+
38
+ ```shell
39
+ git clone https://github.com/mongodb-labs/origami.git
40
+ cd origami
41
+ pip install -r requirements.txt
42
+ pip install -e .
43
+ ```
44
+
45
+ ## Usage
46
+
47
+ ORiGAMi comes with a command line interface (CLI) and a Python SDK.
48
+
49
+ ### Usage from the Command Line
50
+
51
+ 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.
52
+
53
+ Help for specific commands is available with `origami <command> --help`, where `<command>` is currently one of `train` or `predict`.
54
+
55
+ Detailed documentation for the CLI and available options can be found in [`CLI.md`](CLI.md).
56
+
57
+ ### Usage with Python
58
+
59
+ 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.
60
+
61
+ ## Experiment Reproduction
62
+
63
+ This code is released alongside our paper, which can be found on Arxiv: [ORIGAMI: A generative transformer architecture for predictions from semi-structured data](https://arxiv.org/abs/2412.17348). To reproduce the experiments in the paper, see the instructions in the [`./experiments/`](./experiments/) directory.
File without changes
@@ -0,0 +1 @@
1
+ from .main import main
@@ -0,0 +1,7 @@
1
+ import click
2
+
3
+
4
+ @click.command()
5
+ def generate():
6
+ """Generate synthetic data from a trained ORIGAMI model."""
7
+ pass
@@ -0,0 +1,17 @@
1
+ import click
2
+
3
+ from origami.cli.generate import generate
4
+ from origami.cli.predict import predict
5
+ from origami.cli.train import train
6
+
7
+ CONTEXT_SETTINGS = dict(max_content_width=120)
8
+
9
+
10
+ @click.group(context_settings=CONTEXT_SETTINGS)
11
+ def main():
12
+ pass
13
+
14
+
15
+ main.add_command(train)
16
+ main.add_command(generate)
17
+ main.add_command(predict)
@@ -0,0 +1,118 @@
1
+ import json
2
+ import pathlib
3
+
4
+ import click
5
+ from click_option_group import optgroup
6
+ from omegaconf import OmegaConf
7
+
8
+ from origami.cli.utils import create_projection, load_data
9
+ from origami.inference import Predictor
10
+ from origami.model import ORIGAMI
11
+ from origami.model.vpda import ObjectVPDA
12
+ from origami.preprocessing import DFDataset, TargetFieldPipe
13
+ from origami.utils import Symbol, count_parameters, load_origami_model
14
+ from origami.utils.config import GuardrailsMethod
15
+
16
+
17
+ @click.command()
18
+ @click.argument("source", type=str)
19
+ @click.option(
20
+ "--model-path",
21
+ "-m",
22
+ type=click.Path(dir_okay=False, exists=True, path_type=pathlib.Path, resolve_path=True),
23
+ default="./model.origami",
24
+ show_default=True,
25
+ help="path to trained model",
26
+ )
27
+ @click.option("--target-field", "-t", type=str, required=True, help="target field name to predict")
28
+ @optgroup.group("Source Options")
29
+ @optgroup.option("--source-db", "-d", type=str, help="database name, only used when SOURCE is a MongoDB URI.")
30
+ @optgroup.option("--source-coll", "-c", type=str, help="collection name, only used when SOURCE is a MongoDB URI.")
31
+ @optgroup.option("--include-fields", "-i", type=str, help="comma-separated list of field names to include")
32
+ @optgroup.option("--exclude-fields", "-e", type=str, help="comma-separated list of field names to exclude")
33
+ @optgroup.option("--skip", "-s", type=int, default=0, help="number of documents to skip")
34
+ @optgroup.option("--limit", "-l", type=int, default=0, help="limit the number of documents to load")
35
+ @optgroup.group("Output Options")
36
+ @optgroup.option("--json", "-j", is_flag=True, default=False, help="output full JSON objects including target field")
37
+ @click.option("--verbose", "-v", is_flag=True, default=False)
38
+ def predict(source, **kwargs):
39
+ """Predict target fields with a trained ORIGAMI model."""
40
+
41
+ # load model, config and pipelines
42
+ model_dict = load_origami_model(kwargs.get("model_path"))
43
+ state_dict = model_dict["state_dict"]
44
+ config = model_dict["config"]
45
+ pipelines = model_dict["pipelines"]
46
+ encoder = pipelines["train"]["encoder"].encoder
47
+ schema = pipelines["train"]["schema"].schema
48
+
49
+ # create model and load weights
50
+ match config.model.guardrails:
51
+ case GuardrailsMethod.STRUCTURE_AND_VALUES:
52
+ if not config.pipeline.path_in_field_tokens:
53
+ raise Exception("GuardrailsMethod.STRUCTURE_AND_VALUES requires path_in_field_tokens=True")
54
+ vpda = ObjectVPDA(encoder, schema)
55
+ case GuardrailsMethod.STRUCTURE_ONLY:
56
+ vpda = ObjectVPDA(encoder)
57
+ case GuardrailsMethod.NONE:
58
+ vpda = None
59
+
60
+ model = ORIGAMI(config.model, config.train, vpda=vpda)
61
+ model.load_state_dict(state_dict)
62
+
63
+ # data configs
64
+ config.data.source = source
65
+ config.data.db = kwargs["source_db"]
66
+ config.data.coll = kwargs["source_coll"]
67
+ config.data.projection = create_projection(kwargs["include_fields"], kwargs["exclude_fields"])
68
+ config.data.limit = kwargs["limit"]
69
+ config.data.target_field = kwargs["target_field"]
70
+
71
+ # load data
72
+ df = load_data(source, config.data)
73
+
74
+ # update or create new target pipe with new target_field
75
+ test_pipeline = pipelines["test"]
76
+
77
+ # update pipeline parameters and transform data
78
+ if "target" in test_pipeline.named_steps:
79
+ test_pipeline["target"].target_field = config.data.target_field
80
+ else:
81
+ test_pipeline.steps.insert(0, ["target", TargetFieldPipe(config.data.target_field)])
82
+ test_df = test_pipeline.transform(df)
83
+
84
+ # datasets
85
+ test_dataset = DFDataset(test_df)
86
+
87
+ if kwargs["verbose"]:
88
+ # report number of parameters (note we don't count the decoder parameters in lm_head)
89
+ n_params = count_parameters(model)
90
+ click.echo(f"running on device: {model.device}", err=True)
91
+ click.echo(f"number of parameters: {n_params / 1e6:.2f}M", err=True)
92
+ click.echo(f"config:\n {OmegaConf.to_yaml(config)}", err=True)
93
+
94
+ # predict target field
95
+ predictor = Predictor(model, encoder, config.data.target_field, max_batch_size=config.train.batch_size)
96
+
97
+ predictions = predictor.predict(test_dataset)
98
+
99
+ for i, (pred, doc, target) in enumerate(zip(predictions, test_dataset.df["docs"], test_dataset.df["target"])):
100
+ if kwargs["json"]:
101
+ doc[config.data.target_field] = pred
102
+ line_str = json.dumps(doc)
103
+ else:
104
+ line_str = pred
105
+ if target == Symbol.UNKNOWN:
106
+ click.echo(line_str)
107
+ else:
108
+ if pred == target:
109
+ # replace with green version
110
+ click.echo(f"\033[32m{line_str}\033[0m")
111
+ else:
112
+ # replace with red version
113
+ click.echo(f"\033[31m{line_str}\033[0m")
114
+
115
+ # if any target field is not None, print accuracy
116
+ if any(test_dataset.df["target"] != Symbol.UNKNOWN):
117
+ acc = predictor.accuracy(test_dataset, show_progress=False)
118
+ click.echo(f"\nTest accuracy: {acc:.4f}", err=True)