summaryrefslogtreecommitdiff
path: root/candle-transformers/src/models/repvgg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'candle-transformers/src/models/repvgg.rs')
-rw-r--r--candle-transformers/src/models/repvgg.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/candle-transformers/src/models/repvgg.rs b/candle-transformers/src/models/repvgg.rs
index a6ffce0d..6e45c2d6 100644
--- a/candle-transformers/src/models/repvgg.rs
+++ b/candle-transformers/src/models/repvgg.rs
@@ -1,8 +1,5 @@
//! RepVGG inference implementation
//!
-//! See "RepVGG: Making VGG-style ConvNets Great Again" Ding et al. 2021
-//! https://arxiv.org/abs/2101.03697
-//!
//! Key characteristics:
//! - Efficient inference architecture through structural reparameterization
//! - Single 3x3 conv layer after fusing 3x3 branch, 1x1 branch and identity branch
@@ -10,7 +7,7 @@
//! - High accuracy with VGG-like plain architecture and training
//!
//! References:
-//! - [RepVGG Paper](https://arxiv.org/abs/2101.03697)
+//! - [RepVGG Paper](https://arxiv.org/abs/2101.03697). RepVGG: Making VGG-style ConvNets Great Again
//! - [Official Implementation](https://github.com/DingXiaoH/RepVGG)
//!