Skip to main content

A Toolkit for a series of Young projects

Project description

YoungToolkit

A Toolkit for a series of Young projects, these modules are very practical, basic, simple and easy to use, so you can import this package wherever you need to use it.

Usage

from yoolkit.some_module import *

See Full Documentation for more details.

Table of Contents

visualizing

This module is a encapsulation of the client side of visdom, note that the visdom server API adheres to the Plotly convention of data and layout objects.

Visualizing Server

If you have not host a server of the visdom for yourself, please follow the instructions below.

export VISDOM_USERNAME="Jason"
export VISDOM_PASSWORD="123456"
export VISDOM_COOKIE="Guest_Visdom_Cookie"

function start_visdom {
    VISDOM_USE_ENV_CREDENTIALS=1 visdom -port 6789 -enable_login -force_new_cookie;
}

export -f start_visdom

nohup bash -c start_visdom > visdom.log 2>&1 &

or you can download the start and stop scripts for convenience.

Visualizing Client
  1. Setup visualizing client for the server you host (assume your host ip is 127.0.0.1):
from yoolkit.visualizing import setup_visualizer
visualizer = setup_visualizer(
    'Demo',
    server='127.0.0.1',
    port=6789,
    username="Jason",
    password="123456",
    logging_path="demo.log",
    offline=False,
    overwrite=True
)
  1. Open connection:
visualizer.open()
  1. Draw! Your paintings can be found at http://127.0.0.1:6789.
import numpy
heat = numpy.arange(25).reshape((5,5))
visualizer.visualize(
    'heatmap',
    'demo_heatmap_5_5',
    'Demo 5*5 matrix heatmap',
    X=heat,
    opts={
        'colormap': 'Viridis',
    }
)

In method visualizer.visualize(), No.1 argument visualize_type is one of a methods of visdom like line, heatmap, mesh, etc., No.2 and No.3 arugment is visualize_name and visualize_title, all other keyword arguments is determined by visualize_type (refer to visdom for more detailed usage documentation).

  1. Close connection:
visualizer.close()

After you close the connection between client and server, the server will remove the paintings that you have drawn. Don't worry about that, all the paintings are saved in the logging file demo.log which is defined in step 1.

  1. Replay a logging file:
visualizer.replay_log('some_other.log')

Installation

Three different installation methods are shown bellow:

  1. Install YoungToolkit or youngtoolkit from PyPI:
pip install YoungToolkit

or

pip install youngtoolkit
  1. Install YoungToolkit from sources:
git clone https://github.com/Jason-Young-AI/YoungToolkit.git
cd YoungToolkit
python setup.py install
  1. Develop YoungToolkit locally:
git clone https://github.com/Jason-Young-AI/YoungToolkit.git
cd YoungToolkit
python setup.py build develop

Installation with NVIDIA related functions supports

Support IO for PyTorch Tensors

Append [nv-io] to the package name YoungToolkit durning the installation, like:

pip install YoungToolkit[nv-io]

Support Tracking of the GPU memory (PyTorch)

Append [nv-track] to the package name YoungToolkit durning the installation.

pip install YoungToolkit[nv-track]

NOTE: I refer to project(Oldpan/Pytorch-Memory-Utils) to implement this part yoolkit.tracker

Support all features

Append [full] to the package name YoungToolkit durning the installation.

pip install YoungToolkit[full]

NOTATION : If you are using zsh as your shell environment, please escape the square brackets or quote the argument like pip install 'YoungToolkit[xxx]'. (Here is a more detailed explanation)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

YoungToolkit-0.1.3.1.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

YoungToolkit-0.1.3.1-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file YoungToolkit-0.1.3.1.tar.gz.

File metadata

  • Download URL: YoungToolkit-0.1.3.1.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for YoungToolkit-0.1.3.1.tar.gz
Algorithm Hash digest
SHA256 e7992ef3fc7bc98b2641282a2e8d9b77915c862b5a69142392ec68d9a15e54e4
MD5 b6145d09ecd27208eac4f25f1d45dbc3
BLAKE2b-256 f57a62b026f28f3e0eac82a35ab7cbd8e8b1df4e954ae950f73f39fd51bf333a

See more details on using hashes here.

File details

Details for the file YoungToolkit-0.1.3.1-py3-none-any.whl.

File metadata

  • Download URL: YoungToolkit-0.1.3.1-py3-none-any.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for YoungToolkit-0.1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 313fe1a7d652f4e06c8f12d43bf6c1f7990245e5a46037fa5534e84f364abebe
MD5 ca887df4958d9a8f60ac5aa144eea7c7
BLAKE2b-256 66eb66d8d017ddefc217b516cdd3b21c6e3474bbde67a6100fd16fa4d2272a2a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page