Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix type-o in log parsing example & small formatting fix #58

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed unused SubwordTokenizer per feedback from Eli
  • Loading branch information
dagardner-nv committed Apr 27, 2022
commit 454f7d21fb5331a9755b8631e8d9fee5f610f74f
2 changes: 0 additions & 2 deletions examples/log_parsing/preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import neo

import cudf
from cudf.core.subword_tokenizer import SubwordTokenizer

import morpheus._lib.stages as neos
from morpheus.config import Config
Expand Down Expand Up @@ -80,7 +79,6 @@ def __init__(self,
self._do_lower_case = do_lower_case
self._add_special_tokens = add_special_tokens

self._tokenizer: SubwordTokenizer = None
BartleyR marked this conversation as resolved.
Show resolved Hide resolved

@property
def name(self) -> str:
Expand Down