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
/** | |
* Modified from: | |
SRT subtitle import for AE CS5 | |
By August Bering | |
*/ | |
/* | |
example text file input containing: | |
0:15 |
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
import os | |
import argparse | |
import glob | |
import re | |
import time | |
MIN = -1024 | |
MAX = 3072 | |
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
from tensorflow.keras import layers | |
import tensorflow as tf | |
class MeanOnlyBN(layers.BatchNormalization): | |
def __init__(self, **kwargs): | |
kwargs['scale'] = False | |
kwargs['center'] = False | |
kwargs['fused'] = False | |
super().__init__(**kwargs) |
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
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: pgadmin | |
name: pgadmin | |
spec: | |
ports: | |
- name: pgadmin |
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
import SimpleITK as sitk | |
import numpy as np | |
from imageio import imwrite | |
from argparse import ArgumentParser | |
""" | |
requirements.txt | |
SimpleITK | |
numpy |
OlderNewer