Skip to content

Latest commit

 

History

History
152 lines (103 loc) · 4.14 KB

visualization.md

File metadata and controls

152 lines (103 loc) · 4.14 KB

Visualization

EasyCV supports the visualization of parameters and images of Wandb and tensorboard. Please refer to the following guidance for usage.

Tensorboard

TensorBoard is a tool for providing the measurements and visualizations needed during the machine learning workflow. It enables tracking experiment metrics like loss and accuracy, visualizing the model graph, projecting embeddings to a lower dimensional space, and much more.

EasyCV show:

img

Please refer to the following usage instructions.

Giudes

For more usages and details, please refer to : https://www.tensorflow.org/tensorboard/get_started .

  1. Prepare environment

    $ pip install tensorboard
  2. Add Tensorboard config

    Add tensorboard config to your config file as follows:

    log_config = dict(
        interval=10,
        hooks=[
            dict(type='TensorboardLoggerHookV2'),
        ])

    Params:

    • interval: log intervel to save visualized parameters
  3. Edit image visualization configuration (Optional)

    The interval of image visualization is equal to the interval of evaluation, and at present we only do image visualization in validation mode. Add or edit image visualization configuration as follows:

    # evaluation
    eval_config = dict(
        interval=1,
        visualization_config=dict(
            vis_num=20,
            score_thr=0.5,
        )
    )

    Params:

    • interval: intervel of evaluate and save visualized images
    • visualization_config
      • vis_num: number of visualized samples
      • score_thr: the threshold to filter box, boxes with scores greater than score_thr will be kept

Wandb

Weights & Biases is the machine learning platform for developers to build better models faster. Use W&B's lightweight, interoperable tools to quickly track experiments, version and iterate on datasets, evaluate model performance, reproduce models, visualize results and spot regressions, and share findings with colleagues.

EasyCV show:

img

Please refer to the following usage instructions.

Giudes

For more usages and details, please refer to : https://docs.wandb.ai/guides .

register wandb count

Register an account on wandb website and obtain the API key of the account.

  1. Prepare environment

    $ pip install wandb

    Run the following command to log in and enter API key.

    $ wandb login

    If you're running a script in an automated environment, you can control wandb with environment variables set before the script runs or within the script.

    # This is secret and shouldn't be checked into version control
    WANDB_API_KEY=$YOUR_API_KEY
    # Name and notes optional
    WANDB_NAME="My first run"
    WANDB_NOTES="Smaller learning rate, more regularization."
    # Only needed if you don't checkin the wandb/settings file
    WANDB_ENTITY=$username
    WANDB_PROJECT=$project
    # If you don't want your script to sync to the cloud
    os.environ['WANDB_MODE'] = 'offline'
  2. add Wandb config

    Add Wandb config to your config file as follows:

    log_config = dict(
        interval=10,
        hooks=[
            dict(type='WandbLoggerHookV2'),
        ])

    Params:

    • interval: log intervel to save visualized parameters
  3. image visualization configuration (Optional)

Add or edit image visualization configuration as follows:

# evaluation
eval_config = dict(
    interval=10,
    visualization_config=dict(
        vis_num=10,
        score_thr=0.5,
    )
)

Params:

  • interval: intervel of evaluate and save visualized images
  • visualization_config
    • vis_num: number of visualized samples
    • score_thr: the threshold to filter box, boxes with scores greater than score_thr will be kept