Skip to content

Commit

Permalink
Update abp_nvsmi_detection example README (#2138)
Browse files Browse the repository at this point in the history
- Update reference to output file to match name used in command
- Change `0` and `1` to `false` and `true` in example results to match what was seen after running example

## By Submitting this PR I confirm:
- I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- When the PR is ready for review, new or existing tests cover these changes.
- When the PR is ready for review, the documentation is up to date with these changes.

Authors:
  - Eli Fajardo (https://github.com/efajardo-nv)

Approvers:
  - David Gardner (https://github.com/dagardner-nv)

URL: #2138
  • Loading branch information
efajardo-nv authored Jan 28, 2025
1 parent 868ff46 commit 6e2d715
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions examples/abp_nvsmi_detection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,22 +225,22 @@ Inference Rate[Complete]: 1242inf [00:00, 1863.04inf/s]
====Pipeline Complete====
```

The output file `.tmp/output/detections.jsonlines` will contain a single boolean value for each input line. At some point the values will switch from `0` to `1`:
The output file `.tmp/output/abp_nvsmi_detections.jsonlines` will contain a single boolean value for each input line. At some point the values will switch from `false` to `true`:

```
...
{"mining": 0}
{"mining": 0}
{"mining": 0}
{"mining": 0}
{"mining": 1}
{"mining": 1}
{"mining": 1}
{"mining": 1}
{"mining": 1}
{"mining": 1}
{"mining": 1}
{"mining": 1}
{"mining": false}
{"mining": false}
{"mining": false}
{"mining": false}
{"mining": true}
{"mining": true}
{"mining": true}
{"mining": true}
{"mining": true}
{"mining": true}
{"mining": true}
{"mining": true}
...
```

Expand Down

0 comments on commit 6e2d715

Please sign in to comment.