Skip to content

Commit 7a942b3

Browse files
authored
Update nlp_si_detection example README.md to reflect that boolean values are used in the output (#2293)
## 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: - David Gardner (https://github.com/dagardner-nv) Approvers: - Will Killian (https://github.com/willkill07) URL: #2293
1 parent 69784b8 commit 7a942b3

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

examples/nlp_si_detection/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ The output file `.tmp/output/nlp_si_detections.jsonlines` will contain the origi
208208
* `secret_keys`
209209
* `user`
210210

211-
The value for these fields will be a `1` indicating a detection or a `0` indicating no detection. An example row with a detection is:
211+
The value for these fields will be a `true` indicating a detection or `false` indicating no detection. An example row with a detection is:
212212
```json
213213
{
214214
"timestamp": 1616381019580,
@@ -224,15 +224,15 @@ The value for these fields will be a `1` indicating a detection or a `0` indicat
224224
"dest_port": "80",
225225
"flags": "24",
226226
"is_pii": false,
227-
"address": 0,
228-
"bank_acct": 0,
229-
"credit_card": 0,
230-
"email": 0,
231-
"govt_id": 0,
232-
"name": 0,
233-
"password": 0,
234-
"phone_num": 0,
235-
"secret_keys": 1,
236-
"user": 0
227+
"address": false,
228+
"bank_acct": false,
229+
"credit_card": false,
230+
"email": false,
231+
"govt_id": false,
232+
"name": false,
233+
"password": false,
234+
"phone_num": false,
235+
"secret_keys": true,
236+
"user": false
237237
}
238238
```

0 commit comments

Comments
 (0)