View keras_mnist_cnn.py
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 keras | |
from keras.datasets import mnist | |
from keras.models import Sequential | |
from keras.layers import Dense, Dropout, Flatten | |
from keras.layers import Conv2D, MaxPooling2D | |
from keras import backend as K | |
import tensorflow as tf | |
import horovod.tensorflow as hvd |
View test_nccl.c
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
// Code from http://docs.nvidia.com/deeplearning/sdk/nccl-developer-guide/index.html#onedevprothrd | |
#define _BSD_SOURCE | |
#include <stdio.h> | |
#include "cuda_runtime.h" | |
#include "nccl.h" | |
#include "mpi.h" | |
#include <stdint.h> | |
#include <stdlib.h> |
View mask_rcnn_benchmark.py
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
import requests | |
from io import BytesIO | |
from PIL import Image | |
import numpy as np | |
import timeit | |
import torch | |
from maskrcnn_benchmark.config import cfg | |
from predictor import COCODemo, to_image_list |
View Tangent DL.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View pytorch_imagenet_resnet50_1late.py
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 argparse | |
import torch.backends.cudnn as cudnn | |
import torch.nn.functional as F | |
import torch.optim as optim | |
import torch.utils.data.distributed | |
from torchvision import datasets, transforms, models | |
import horovod.torch as hvd | |
import tensorboardX |
View numba_test.py
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
import numba | |
import numba.cuda | |
import numpy as np | |
@numba.jitclass([ | |
("x", numba.types.int32) | |
]) | |
class XYZ: | |
def __init__(self, x): |
View receptive_fields_keras.py
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
import graphviz | |
import numpy as np | |
import keras | |
def gather_layer_stats(layer_dict, layer, r, s): | |
lr, ls = None, None | |
if hasattr(layer, 'kernel_size'): | |
assert layer.kernel_size[0] == layer.kernel_size[1] | |
assert layer.strides[0] == layer.strides[1] |
View hyperas_keras_example.py
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 | |
from hyperopt import Trials, STATUS_OK, tpe | |
from hyperas import optim | |
from hyperas.distributions import choice, uniform, conditional | |
import keras | |
import tensorflow as tf | |
import horovod.keras as hvd | |
import keras.backend as K | |
import math |
View pbtxt_to_pb.py
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 os | |
import sys | |
import tensorflow as tf | |
from google.protobuf import text_format | |
from tensorflow.python.framework import graph_io | |
if len(sys.argv) < 2: | |
print('Usage: %s <filename prefix>' % sys.argv[0]) |
View pytorch_synthetic_benchmark_apex.py
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 argparse | |
import torch.backends.cudnn as cudnn | |
import torch.nn.functional as F | |
import torch.optim as optim | |
import torch.utils.data.distributed | |
from torchvision import models | |
import horovod.torch as hvd | |
import timeit |
OlderNewer