Skip to content

Various additional dfs plugin fixes #6

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

Merged
merged 1 commit into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions docs/daos_tf_docs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DAOS-TensorFlow IO GUIDE

## Table Of Content
## Table Of Contents

- [Features](#features)
- [Prerequisites](#prerequisites)
Expand All @@ -15,7 +15,7 @@

## Prerequisites

* A valid DAOS installation, currently based on [version v1.3.106](https://github.com/daos-stack/daos/releases/tag/v1.3.106-tb)
* A valid DAOS installation, currently based on [version v2.0.2](https://github.com/daos-stack/daos/releases/tag/v2.0.2)
* An installation guide and steps can be accessed from [here](https://docs.daos.io/admin/installation/)

## Environment Setup
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/daos.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
"\n",
"The pool and container id or label are part of the filename uri:\n",
"```\n",
"dfs://<pool_id>/<cont_id>/<path>\n",
"dfs://<pool-label>/cont-label/<path>\n",
"daos://<pool_id>/<cont_id>/<path>\n",
"daos://<pool-label>/cont-label/<path>\n",
"```"
]
},
Expand Down Expand Up @@ -230,7 +230,7 @@
},
"outputs": [],
"source": [
"dfs_url = \"dfs://TEST_POOL/TEST_CONT/\" # This the path you'll be using to load and access the dataset\n",
"dfs_url = \"daos://TEST_POOL/TEST_CONT/\" # This the path you'll be using to load and access the dataset\n",
"pwd = !pwd\n",
"posix_url = pwd[0] + \"/tests/test_dfs/\""
]
Expand Down
Loading