Skip to content

Instantly share code, notes, and snippets.

View fzliu's full-sized avatar

Frank Liu fzliu

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fzliu
fzliu / state_of_the_union.txt
Created November 5, 2023 22:15
President Biden's address to the country on March 1, 2022
Madam Speaker, Madam Vice President, our First Lady and Second Gentleman. Members of Congress and the Cabinet. Justices of the Supreme Court. My fellow Americans.
Last year COVID-19 kept us apart. This year we are finally together again.
Tonight, we meet as Democrats Republicans and Independents. But most importantly as Americans.
With a duty to one another to the American people to the Constitution.
And with an unwavering resolve that freedom will always triumph over tyranny.
@fzliu
fzliu / gresnet.py
Created March 25, 2024 12:42
GResNet model definition.
"""
gresnet.py: (Good/Great/Godlike/Gangster ResNet)
Implementation adapted from torchvision ResNet50 v1.4.
"""
import math
from typing import Any, Callable, Optional, Type, Tuple, Union
from torch import Tensor
import torch