Skip to content

Commit

Permalink
Update location of morpheus setup and data files in VS settings (#1843)
Browse files Browse the repository at this point in the history
Closes 

## 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:
  - Anuradha Karuppiah (https://github.com/AnuradhaKaruppiah)

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

URL: #1843
  • Loading branch information
AnuradhaKaruppiah authored Aug 19, 2024
1 parent 5fdbcb9 commit cc0bca9
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions morpheus.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
// "from-kafka",
"deserialize",
"preprocess",
"--vocab_hash_file=./morpheus/data/bert-base-uncased-hash.txt",
"--vocab_hash_file=./python/morpheus/morpheus/data/bert-base-uncased-hash.txt",
"--truncation=True",
"--do_lower_case=True",
"--add_special_tokens=False",
Expand Down Expand Up @@ -79,7 +79,7 @@
"cwd": "${workspaceFolder}",
"justMyCode": false,
"name": "Python: Run Pipeline (NLP)",
"program": "${workspaceFolder}/morpheus/cli/run.py",
"program": "${workspaceFolder}/python/morpheus/morpheus/cli/run.py",
"request": "launch",
"subProcess": true,
"type": "debugpy"
Expand Down Expand Up @@ -135,7 +135,7 @@
"cwd": "${workspaceFolder}",
"justMyCode": false,
"name": "Python: Run Pipeline (FIL)",
"program": "${workspaceFolder}/morpheus/cli/run.py",
"program": "${workspaceFolder}/python/morpheus/morpheus/cli/run.py",
"request": "launch",
"subProcess": true,
"type": "debugpy"
Expand All @@ -149,7 +149,7 @@
"--model_max_batch_size=1024",
"--use_cpp=False",
"pipeline-ae",
"--columns_file=morpheus/data/columns_ae_cloudtrail.txt",
"--columns_file=python/morpheus/morpheus/data/columns_ae_cloudtrail.txt",
"--userid_column_name=userIdentitysessionContextsessionIssueruserName",
"--userid_filter=user123",
"--timestamp_column_name=event_dt",
Expand Down Expand Up @@ -197,7 +197,7 @@
"cwd": "${workspaceFolder}",
"justMyCode": false,
"name": "Python: Run Pipeline (AE)",
"program": "${workspaceFolder}/morpheus/cli/run.py",
"program": "${workspaceFolder}/python/morpheus/morpheus/cli/run.py",
"request": "launch",
"subProcess": true,
"type": "debugpy"
Expand All @@ -212,7 +212,7 @@
"--model_max_batch_size=32",
// "--use_cpp=False",
"pipeline-nlp",
"--labels_file=morpheus/data/labels_phishing.txt",
"--labels_file=python/morpheus/morpheus/data/labels_phishing.txt",
"--model_seq_length=128",
"from-file",
"--filename=models/datasets/validation-data/phishing-email-validation-data.jsonlines",
Expand All @@ -221,7 +221,7 @@
// "from-kafka",
"deserialize",
"preprocess",
"--vocab_hash_file=./morpheus/data/bert-base-uncased-hash.txt",
"--vocab_hash_file=./python/morpheus/morpheus/data/bert-base-uncased-hash.txt",
"--truncation=True",
// "--stride=",
"--do_lower_case=True",
Expand Down Expand Up @@ -262,7 +262,7 @@
"cwd": "${workspaceFolder}",
"justMyCode": false,
"name": "Python: Run Pipeline (NLP-Phishing)",
"program": "${workspaceFolder}/morpheus/cli/run.py",
"program": "${workspaceFolder}/python/morpheus/morpheus/cli/run.py",
"request": "launch",
"subProcess": true,
"type": "debugpy"
Expand Down Expand Up @@ -307,7 +307,7 @@
{
"MIMode": "gdb",
"args": [
"./morpheus/cli.py",
"./python/morpheus/morpheus/cli.py",
"--log_level=DEBUG",
"run",
"--num_threads=2",
Expand All @@ -325,7 +325,7 @@
// "from-kafka",
"deserialize",
"preprocess",
"--vocab_hash_file=./morpheus/data/bert-base-uncased-hash.txt",
"--vocab_hash_file=./python/morpheus/morpheus/data/bert-base-uncased-hash.txt",
"--truncation=True",
"--do_lower_case=True",
"--add_special_tokens=False",
Expand Down Expand Up @@ -403,7 +403,7 @@
{
"MIMode": "gdb",
"args": [
"./morpheus/cli.py",
"./python/morpheus/morpheus/cli.py",
"--log_level=DEBUG",
// "--debug",
"run",
Expand Down Expand Up @@ -496,7 +496,7 @@
{
"MIMode": "gdb",
"args": [
"./morpheus/cli.py",
"./python/morpheus/morpheus/cli.py",
"--log_level=DEBUG",
"run",
"--num_threads=1",
Expand Down Expand Up @@ -600,7 +600,7 @@
"externalConsole": false,
"miDebuggerPath": "gdb",
"name": "Debug LLM C++ Tests",
"program": "${workspaceFolder}/build/morpheus/_lib/tests/test_llm.x",
"program": "${workspaceFolder}/build/python/morpheus/morpheus/_lib/tests/test_llm.x",
"request": "launch",
"setupCommands": [
{
Expand Down Expand Up @@ -679,7 +679,7 @@
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"flake8.args": [
"--style=${workspaceFolder}/setup.cfg"
"--style=${workspaceFolder}/python/morpheus/setup.cfg"
],
"pylint.args": [
"--rcfile=${workspaceFolder}/pyproject.toml",
Expand Down Expand Up @@ -730,7 +730,7 @@
}
],
"yapf.args": [
"--style=${workspaceFolder}/setup.cfg"
"--style=${workspaceFolder}/python/morpheus/setup.cfg"
]
}
}

0 comments on commit cc0bca9

Please sign in to comment.