SysCV / sam-pt

SAM-PT: Extending SAM to zero-shot video segmentation with point-based tracking.
https://arxiv.org/abs/2307.01197
Apache License 2.0
950 stars 60 forks source link

Confused about the key to enter when running demo or test #19

Closed frank6200db closed 3 months ago

frank6200db commented 11 months ago

Hi, thanks for your efforts and novel ideas. However, as I am running demo or experiments, I was asked to either enter API or API key not found. (3 options) Would you kindly provide more detailed tutorial video or instructions? Thanks again for your time.

m43 commented 11 months ago

Thank you for your interest in our project. Based on your description, it seems you're being prompted for the W&B (Weights & Biases) API key. W&B is a tool we've integrated for convenient logging, storing logs in the cloud, and accessing them via the browser.

To address this:

  1. Sign up for W&B if you haven't already.
  2. Once signed up, you can follow these steps to log in via the command line:
# Activate your conda environment
conda activate sam-pt

# Install wandb if it isn't already
pip install wandb

# This will prompt you to log in to wandb
wandb login

For context, our use of W&B in the demo is here and here.