From 29b7a973421222e52d182c24564c611955dcdfe4 Mon Sep 17 00:00:00 2001 From: Sarthak Yadav Date: Thu, 14 Dec 2023 16:28:00 +0100 Subject: [PATCH] updated header --- cifar/resnet.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cifar/resnet.py b/cifar/resnet.py index 6eeadda6..22b8a31a 100644 --- a/cifar/resnet.py +++ b/cifar/resnet.py @@ -3,9 +3,6 @@ Implementation of ResNets for CIFAR-10 as per the original paper [https://arxiv. Configurations include ResNet-20, ResNet-32, ResNet-44, ResNet-56, ResNet-110, ResNet-1202. There's no BatchNorm is mlx==0.0.4, using LayerNorm instead. - -Authors: - Sarthak Yadav, 2023 """ from typing import Any