This file contains 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
""" | |
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 |
This file contains 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
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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
web: | |
image: 'gitlab/gitlab-ee:latest' | |
restart: always | |
hostname: 'gitlab.example.com' | |
environment: | |
GITLAB_OMNIBUS_CONFIG: | | |
external_url 'https://gitlab.example.com' | |
# Add any other gitlab.rb configuration here, each on its own line | |
puma['worker_processes'] = 0 | |
sidekiq['max_concurrency'] = 10 |
This file contains 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 __future__ import print_function | |
import math | |
from multiprocessing import Pool | |
import sys | |
def divs_and_mults(num, maxval): |
This file contains 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
seqs = []; | |
for n = 0:62 | |
ks = comm.KasamiSequence('Index', n, ... | |
'Polynomial', [12 6 4 1 0], ... | |
'InitialConditions', [zeros(1, 11) 1], ... | |
'SamplesPerFrame',4095); | |
seq = step(ks); | |
seq = 2 * (seq - 0.5); | |
seqs = [seqs seq]; |
This file contains 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
""" | |
download_pixels.py: A handy utility function for downloading images from URLs. | |
""" | |
import os | |
import shutil | |
import requests | |
This file contains 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
""" | |
make_cifar10.py: Create training data from raw CIFAR-10 batches. | |
""" | |
import pickle | |
import glob | |
import os | |
import numpy as np | |
from skimage.io import imsave |
This file contains 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
# Display full path in terminal | |
export PS1="\u@\H:\w$ " | |
# Set architecture flags | |
export ARCHFLAGS="-arch x86_64" | |
# Ensure user-installed binaries take precedence | |
export PATH=/usr/local/bin:$PATH | |
# Load .bashrc if it exists |
NewerOlder