Pinned Loading
-
pytorch/pytorch
pytorch/pytorch PublicTensors and Dynamic neural networks in Python with strong GPU acceleration
-
facebookincubator/AITemplate
facebookincubator/AITemplate PublicAITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.
-
Weiszfeld's Algorithm to numerically...
Weiszfeld's Algorithm to numerically approximate the geometric median for a list of ML model weights. 1def average(models, eps=1e-5, tol=1e-6):
2"""
3Computes geometric median of the model weights using Weiszfeld's Algorithm
4"""
5models = [model.get_weights() for model in models]
-
Very simple Python interpreter writt...
Very simple Python interpreter written in Python 1# ref: https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html
2from typing import NamedTuple, Optional, Union, List
3from collections import deque
4from dataclasses import dataclass
5
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.