...
Tip |
---|
You can deploy it on your render farm to use it in a post-render process for labeling of elements. |
Table of Contents |
---|
How To
Simple usage
Code Block |
---|
classifier {file} |
Code Block | ||
---|---|---|
| ||
classifier /path/to/file.#.exr # result: {"/path/to/file.#.exr": [{"label": "fire", "description": "rapid oxidation of a material", "value": "Q3196"}]} |
...
You can pass multiple file paths to the software.
Code Block |
---|
classifier {file1} {file2} {file3} |
Code Block | ||
---|---|---|
| ||
classifier /path/to/files.#.exr /path/to/another/file.mov # result: {"/path/to/files.#.exr": [{"label": "fire", "description": "rapid oxidation of a material", "value": "Q3196"}], "/path/to/another/file.mov": [{"label": "torch", "description": "stick with a flaming end used as a source of light", "value": "Q327954"}]} |
...
Info |
---|
The result is in JSON format. The default string format is Unicode. File path gets returned as PosixPath with forwards slash, even for Windows. |
Code Block | ||
---|---|---|
| ||
{'/path/to/file.mov': [{ 'value': 'Q327954', 'label': 'torch', 'description': 'stick with a flaming end used as a source of light' }]} |
...
flag | description | ||
---|---|---|---|
| Shows information the software. | ||
| Get the top X predictions of labels.
| ||
| File path to another model file (.wit) | ||
| Set the number of frames of a filmstrip for a sequence of images or movie file.
| ||
| debugging mode |
Troubleshooting
...