-
Notifications
You must be signed in to change notification settings - Fork 38
Adds compatibility with NVIDIA AI Workbench #5
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
Open
nv-edwli
wants to merge
6
commits into
NVIDIA-BioNeMo-blueprints:main
Choose a base branch
from
nv-edwli:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d443930
NVIDIA AI Workbench compatibility
nv-edwli 91baa9f
Update docker-compose.yaml
nv-edwli 1bb895e
Update docker-compose.yaml
nv-edwli 850c366
Modified 2 files
nv-edwli d461287
Changed env w/ pip. Modified 6 files
nv-edwli af9180d
Modified src/README.md
nv-edwli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| models/** filter=lfs diff=lfs merge=lfs -text | ||
| data/** filter=lfs diff=lfs merge=lfs -text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| # Ignore generated or temporary files managed by the Workbench | ||
| .project/* | ||
| !.project/spec.yaml | ||
| !.project/configpacks | ||
|
|
||
| # General ignores | ||
| .DS_Store | ||
|
|
||
| # Byte-compiled / optimized / DLL files | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
|
|
||
| # Temp directories, notebooks created by jupyterlab | ||
| .ipynb_checkpoints | ||
| .Trash-*/ | ||
| .jupyter/ | ||
| .local/ | ||
|
|
||
| # Python distribution / packaging | ||
| .Python | ||
| build/ | ||
| develop-eggs/ | ||
| dist/ | ||
| downloads/ | ||
| eggs/ | ||
| .eggs/ | ||
| lib/ | ||
| lib64/ | ||
| parts/ | ||
| sdist/ | ||
| var/ | ||
| wheels/ | ||
| share/python-wheels/ | ||
| *.egg-info/ | ||
| .installed.cfg | ||
| *.egg | ||
| MANIFEST | ||
|
|
||
| # Unit test / coverage reports | ||
| htmlcov/ | ||
| .tox/ | ||
| .nox/ | ||
| .coverage | ||
| .coverage.* | ||
| .cache | ||
| nosetests.xml | ||
| coverage.xml | ||
| *.cover | ||
| *.py,cover | ||
| .hypothesis/ | ||
| .pytest_cache/ | ||
| cover/ | ||
|
|
||
| # Workbench Project Layout | ||
| data/scratch/* | ||
| !data/scratch/.gitkeep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| *defaults.ContainerUser | ||
| *bash.PreBuild | ||
| *defaults.EnvVars | ||
| *defaults.Readme | ||
| *defaults.Entrypoint | ||
| *apt.PackageManager | ||
| *bash.PreLanguage | ||
| *python.PipPackageManager | ||
| *bash.PostBuild | ||
| *jupyterlab.JupyterLab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,101 @@ | ||
| specVersion: v2 | ||
| specMinorVersion: 2 | ||
| meta: | ||
| name: generative-virtual-screening | ||
| image: generative-virtual-screening | ||
| description: "" | ||
| labels: [] | ||
| createdOn: "2024-10-06T16:45:44Z" | ||
| defaultBranch: main | ||
| layout: | ||
| - path: src/ | ||
| type: code | ||
| storage: git | ||
| - path: deploy/ | ||
| type: code | ||
| storage: git | ||
| environment: | ||
| base: | ||
| registry: nvcr.io | ||
| image: nvidia/ai-workbench/python-basic:1.0.2 | ||
| build_timestamp: "20231114175838" | ||
| name: Python Basic | ||
| supported_architectures: [] | ||
| cuda_version: "" | ||
| description: A Python Base with Jupyterlab | ||
| entrypoint_script: "" | ||
| labels: | ||
| - ubuntu | ||
| - python3 | ||
| - jupyterlab | ||
| apps: | ||
| - name: jupyterlab | ||
| type: jupyterlab | ||
| class: webapp | ||
| start_command: jupyter lab --allow-root --port 8888 --ip 0.0.0.0 --no-browser | ||
| --NotebookApp.base_url=\$PROXY_PREFIX --NotebookApp.default_url=/lab --NotebookApp.allow_origin='*' | ||
| health_check_command: '[ \$(echo url=\$(jupyter lab list | head -n 2 | tail | ||
| -n 1 | cut -f1 -d'' '' | grep -v ''Currently'' | sed "s@/?@/lab?@g") | curl | ||
| -o /dev/null -s -w ''%{http_code}'' --config -) == ''200'' ]' | ||
| stop_command: jupyter lab stop 8888 | ||
| user_msg: "" | ||
| logfile_path: "" | ||
| timeout_seconds: 60 | ||
| icon_url: "" | ||
| webapp_options: | ||
| autolaunch: true | ||
| port: "8888" | ||
| proxy: | ||
| trim_prefix: false | ||
| url_command: jupyter lab list | head -n 2 | tail -n 1 | cut -f1 -d' ' | grep | ||
| -v 'Currently' | ||
| programming_languages: | ||
| - python3 | ||
| icon_url: "" | ||
| image_version: 1.0.2 | ||
| os: linux | ||
| os_distro: ubuntu | ||
| os_distro_release: "22.04" | ||
| schema_version: v2 | ||
| user_info: | ||
| uid: "" | ||
| gid: "" | ||
| username: "" | ||
| package_managers: | ||
| - name: apt | ||
| binary_path: /usr/bin/apt | ||
| installed_packages: | ||
| - curl | ||
| - git | ||
| - git-lfs | ||
| - python3 | ||
| - gcc | ||
| - python3-dev | ||
| - python3-pip | ||
| - vim | ||
| - name: pip | ||
| binary_path: /usr/local/bin/pip | ||
| installed_packages: | ||
| - jupyterlab==4.0.7 | ||
| - requests==2.31.0 | ||
| package_manager_environment: | ||
| name: "" | ||
| target: "" | ||
| execution: | ||
| apps: [] | ||
| resources: | ||
| gpu: | ||
| requested: 0 | ||
| sharedMemoryMB: 0 | ||
| secrets: | ||
| - variable: NGC_CLI_API_KEY | ||
| description: "" | ||
| mounts: | ||
| - type: project | ||
| target: /project/ | ||
| description: Project directory | ||
| options: rw | ||
| - type: volume | ||
| target: /nvwb-shared-volume/ | ||
| description: "" | ||
| options: volumeName=nvwb-shared-volume | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| jupyterlab>3.0 | ||
| requests==2.31.0 |
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.