diff --git a/sklearn/decomposition/online_lda.py b/sklearn/decomposition/online_lda.py index 2e22935c47106..2342415695cbe 100644 --- a/sklearn/decomposition/online_lda.py +++ b/sklearn/decomposition/online_lda.py @@ -5,7 +5,7 @@ ============================================================= This implementation is modified from Matthew D. Hoffman's onlineldavb code -Link: http://matthewdhoffman.com/code/onlineldavb.tar +Link: https://github.com/blei-lab/onlineldavb """ # Author: Chyi-Kwei Yau @@ -257,7 +257,7 @@ class LatentDirichletAllocation(BaseEstimator, TransformerMixin): Chong Wang, John Paisley, 2013 [3] Matthew D. Hoffman's onlineldavb code. Link: - http://matthewdhoffman.com//code/onlineldavb.tar + https://github.com/blei-lab/onlineldavb """