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
| """ | |
| Video loading utilities using decord. | |
| Provides efficient video decoding with configurable sampling strategies | |
| and preprocessing for the video encoder. | |
| """ | |
| from enum import Enum | |
| from typing import List, Literal |
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
| # /// script | |
| # requires-python = "==3.12.12" | |
| # dependencies = [ | |
| # "torch==2.2.1", | |
| # "numpy==1.26.4", | |
| # "lightning==2.6.0", | |
| # "torchvision==0.17.1", | |
| # ] | |
| # /// |
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
| """ | |
| Test pytorch multi gpu runs | |
| Usage (from repo root, with uv): | |
| uv run scripts/ddp_sanity_check.py --devices 0 1 | |
| This will: | |
| - spawn one process per device | |
| - run a few training steps on random data |
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
| https://ournh.northernhealth.ca/oursites/projects/PACSSysUpg/OurNH%20Documents/Agfa%20EI%20PowerChart%20(XERO)%20Quick%20Tips.pdf |
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
| # #!/bin/sh | |
| # | |
| # # Alot of these configs have been taken from the various places | |
| # # on the web, most from here | |
| # # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # # Set the colours you can use | |
| # black='\033[0;30m' | |
| # white='\033[0;37m' | |
| # red='\033[0;31m' |
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
| .DS_Store |