No project description provided
Project description
Wandb fsspec implementation
Wandb is a machine learning tool which allows you to tracks your experiments. While the experiment is running, it tracks its metrics and helps you visualize the progress. You can also upload files such as configuration files, models, datasets (some files are uploaded automatically). After the experiment is finished, you can access the experiment's files (only read-only). This implementation allows researchers who use wandb to access the finished experiment's files using the fsspec interface.
Getting started
Install the package by running:
pip install wandbfs
Then, you can open any file from your wandb runs as follows:
import fsspec
f = fsspec.open('wandb://{entity}/{project}/{run_name_or_run_id}/{path}')
You can also list the files and subdirectories by using the ls
command.
import fsspec
fs = fsspec.filesystem('wandb')
files = fs.ls('{entity}/{project}/{run_name_or_run_id}/{path}')
Alternatively, you can list projects or runs:
import fsspec
fs = fsspec.filesystem('wandb')
projects = fs.ls('{entity}')
runs = fs.ls('{entity}/{project}')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wandbfs-0.0.2.tar.gz
.
File metadata
- Download URL: wandbfs-0.0.2.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b99d2f8b9ea9c067591ab2f746275eecd9a300fc8eac266f9794ce7cae8e9d65 |
|
MD5 | 2a7a62d1ba3b354667fb677769d56733 |
|
BLAKE2b-256 | f0175dd26dabf600daa5df956b248673998a0fc7d3d82ac7deb85883cf511a69 |
File details
Details for the file wandbfs-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: wandbfs-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2f6ab8440337a534aaec172801bd22f7e406b565bdfdfed31a8a0da0fa94fec |
|
MD5 | d6242c863cb0671f036eb03580706daf |
|
BLAKE2b-256 | ec5f1a3279d5c8c75aeb533158a0fc418504d65b50cc056807b98863d7398797 |