Skip to content

Instantly share code, notes, and snippets.

@HeinrichAD
HeinrichAD / colab_git_project.ipynb
Last active November 23, 2020 18:04
Little collaboration between Google Colab, Drive (cloud) and GitHub.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@HeinrichAD
HeinrichAD / ProcessorUnit.py
Last active November 27, 2020 21:46
Google Colab Processor Unit / Runtime Type Detector.
from enum import Enum
from os import environ
class PU(Enum):
"""
Google Colab Processor Unit / Runtime Type Detector.
"""
CPU = 1
GPU = 2
TPU = 3
@HeinrichAD
HeinrichAD / matplotlib_label_positions.ipynb
Last active August 26, 2022 06:54
Label Positions in Matplotlib
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@HeinrichAD
HeinrichAD / matplotlib_colorbars.ipynb
Last active August 26, 2022 06:53
Color bars in Matplotlib
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.