Giter Club home page Giter Club logo

psg-biased-annotation's People

Contributors

lili0415 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

jiuxuanth

psg-biased-annotation's Issues

Usage tips for users with RTX 3090

When I was attempting to replicate the work in this paper, I encountered many compatibility issues with CUDA on the RTX 3090 server. After some adjustments, I finally managed to replicate the test code. Therefore, I will showcase the process below.

  1. for the environment.yml, you should modify the version of the dependencies to enable your cuda(RTX3090 needs at least cuda $>=$ 11.0). Here is my environment.yml:
name: openpsg
channels:
  - pytorch
  - conda-forge
dependencies:
  - python=3.7
  - pytorch=1.7.0
  - torchvision=0.8.0
  - torchaudio==0.7.0
  - cudatoolkit=11.0
  - pip
  - pip:
    - openmim
    - pre-commit
  1. for the install methods, you should consider the exact version based on your cuda version(11.0 for example).
conda env create -f environment.yml
conda activate openpsg

# Install mmcv. Here you should notice that this link is based on cu110
pip install mmcv-full==1.4.3 -f https://download.openmmlab.com/mmcv/dist/cu110/torch1.7.0/index.html

# Install mmdet
pip install openmim
pip install mmdet==2.22.0
# Here when I use mim install, it cannot stop. I don't know the reason. Anyway, pip install works.
# mim install mmdet==2.20.0

# Install coco panopticapi
# When you cannot install based on pip install, I recommend you to git clone this git and install it by hand.
git clone [email protected]:cocodataset/panopticapi.git
cd panopticapi
pip install -v -e .
cd ../


# For visualization
conda install -c conda-forge pycocotools
# here for the same reason, you should find the package based on cuda11.0
pip install detectron2==0.5 -f \
  https://dl.fbaipublicfiles.com/detectron2/wheels/cu110/torch1.7/index.html

# If you're using wandb for logging
pip install wandb
wandb login

# If you develop and run openpsg directly, install it from source:
pip install -v -e .

# finally, here is one dataclasses that terminal shows the error to me. I don't know the effect, but I recommend you to install it.
pip install dataclasses 

Based on these two method, I hope you can replicate this code :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.