Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts and experience preferred (super rare at this point).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM rradev/minkowski-engine:latest | |
RUN pip install timm tensorboardx einops pytorch-lightning | |
CMD ["bash"] | |
# the minkowski-engine:latest uses the dockerfile defined here https://gist.github.com/radiradev/7af53500133773948c813d3e133e62c8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM deeplearnphysics/larcv2:ub20.04-cuda11.6-pytorch1.13-larndsim | |
# Install ninja | |
RUN pip install ninja | |
ENV TORCH_CUDA_ARCH_LIST="6.0 7.0 7.5 8.0" | |
# Install MinkowskiEngine with DepthwiseConvolution from GitHub | |
RUN pip install -U --target=/usr/local/lib/python3.8/dist-packages \ |