Skip to content

Instantly share code, notes, and snippets.

name: detectron2
channels:
- torch
- default
- conda-forge
dependencies:
- python=3.7
- cython
- pycocotools
- pytorch::pytorch
@martinsotir
martinsotir / uncertainty_viz_v2.svg
Last active March 8, 2020 15:51
Prediction uncertainty visualisation experiments
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@martinsotir
martinsotir / pre-commit
Created February 3, 2020 02:09
Git pre-commit hook checking python code style with autopep8. Displays a colored diff on errors. Hook disabled when rebasing.
#!/bin/bash
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
@martinsotir
martinsotir / turbo_palette_google_earth_engine.js
Last active December 6, 2019 14:46
Turbo color color palette for use in Google Earth Engine (modified from: https://gist.github.com/FedeMiorelli/640bbc66b2038a14802729e609abfe89 )
var turbo_palette = ['30123b', '321543', '33184a', '341b51', '351e58', '36215f', '372466', '38276d', '392a73', '3a2d79',
'3b2f80', '3c3286', '3d358b', '3e3891', '3f3b97', '3f3e9c', '4040a2', '4143a7', '4146ac', '4249b1',
'424bb5', '434eba', '4451bf', '4454c3', '4456c7', '4559cb', '455ccf', '455ed3', '4661d6', '4664da',
'4666dd', '4669e0', '466be3', '476ee6', '4771e9', '4773eb', '4776ee', '4778f0', '477bf2', '467df4',
'4680f6', '4682f8', '4685fa', '4687fb', '458afc', '458cfd', '448ffe', '4391fe', '4294ff', '4196ff',
'4099ff', '3e9bfe', '3d9efe', '3ba0fd', '3aa3fc', '38a5fb', '37a8fa', '35abf8', '33adf7', '31aff5',
'2fb2f4', '2eb4f2', '2cb7f0', '2ab9ee', '28bceb', '27bee9', '25c0e7', '23c3e4', '22c5e2', '20c7df',
'1fc9dd', '1ecbda', '1ccdd8', '1bd0d5', '1ad2d2', '1ad4d0', '19d5cd', '18d7ca', '18d9c8', '18dbc5',

Using SLURM cluster GPU's on Google Colab

This document describe how to start a jupyter session on a SLURM cluster GPU node and, optionnaly, using it from Google Collab.

Using google Collab is optional and can pose serious security risks, please carrefully read the Google local runtime documentation and ask your system administrator for permission before connecting Google Colab to a local server.

1. First time setup

@martinsotir
martinsotir / css-color-picker.js
Created July 1, 2019 22:54
Color picker for CSS custom properties. Value synced with local storage.
/**
* Color picker for CSS custom properties.
*
* Allows editing the a root element CSS color property and save it to the local storage.
* Restore saved color when loaded.
*
* How to use it:
*
* 1. Define a CSS custom color property :
*
@martinsotir
martinsotir / mlflow_git_username.py
Created June 28, 2019 19:28
Using git username as mlflow run ID
import subprocess
from mlflow.utils.mlflow_tags import MLFLOW_USER
def get_username_from_git() -> str:
"""Retrieve a (sanitized) username from git config. Raise a runtime error if the git command fails."""
try:
cmd = subprocess.run(['git', 'config', 'user.name'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if len(cmd.stderr.strip()) > 0:
raise ValueError(cmd.stderr.decode('utf-8').strip())
raw_name = cmd.stdout.decode('utf-8')

Disk I/O benchmarking

Required packages:

sudo apt install fio ioping smartmontools

List volume and partitions:

# WIP
# Inspired from Keras and https://towardsdatascience.com/how-to-visualize-convolutional-features-in-40-lines-of-code-70b7d87b0030
from pathlib import Path
import torch
import torchvision.utils as vutils
import matplotlib.pyplot as plt
from torchvision.utils import make_grid
import cv2
import numpy as np