Skip to content

Commit 7fc0692

Browse files
committed
update fasternet
1 parent a3e66b1 commit 7fc0692

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

timm/models/fasternet.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
"""FasterNet
2+
Run, Don't Walk: Chasing Higher FLOPS for Faster Neural Networks
3+
- paper: https://arxiv.org/abs/2303.03667
4+
- code: https://github.com/JierunChen/FasterNet
5+
6+
@article{chen2023run,
7+
title={Run, Don't Walk: Chasing Higher FLOPS for Faster Neural Networks},
8+
author={Chen, Jierun and Kao, Shiu-hong and He, Hao and Zhuo, Weipeng and Wen, Song and Lee, Chul-Ho and Chan, S-H Gary},
9+
journal={arXiv preprint arXiv:2303.03667},
10+
year={2023}
11+
}
12+
13+
Modifications by / Copyright 2025 Ryan Hou & Ross Wightman, original copyrights below
14+
"""
15+
# Copyright (c) Microsoft Corporation.
16+
# Licensed under the MIT License.
17+
118
from functools import partial
2-
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
19+
from typing import Any, Dict, List, Optional, Tuple, Union
320

421
import torch
522
import torch.nn as nn

0 commit comments

Comments
 (0)