From f91ce0b8035a8cd153fcd1883efd7469e554cbd6 Mon Sep 17 00:00:00 2001 From: Bharat Raghunathan Date: Sat, 9 Mar 2019 20:05:39 +0530 Subject: [PATCH] Make the hyperlink of NVIDIA Apex clickable --- pytorch_pretrained_bert/modeling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_pretrained_bert/modeling.py b/pytorch_pretrained_bert/modeling.py index ece1dddacc..9347d74c75 100644 --- a/pytorch_pretrained_bert/modeling.py +++ b/pytorch_pretrained_bert/modeling.py @@ -217,7 +217,7 @@ class BertConfig(object): try: from apex.normalization.fused_layer_norm import FusedLayerNorm as BertLayerNorm except ImportError: - logger.info("Better speed can be achieved with apex installed from https://www.github.com/nvidia/apex.") + logger.info("Better speed can be achieved with apex installed from https://www.github.com/nvidia/apex .") class BertLayerNorm(nn.Module): def __init__(self, hidden_size, eps=1e-12): """Construct a layernorm module in the TF style (epsilon inside the square root).