Skip to content

Commit

Permalink
MAINT remove my email address
Browse files Browse the repository at this point in the history
I'm getting too many individual support requests. People should
use the mailing list.
  • Loading branch information
larsmans committed Mar 4, 2016
1 parent 94e2768 commit 2e4aafd
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 32 deletions.
2 changes: 1 addition & 1 deletion examples/applications/topics_extraction_with_nmf_lda.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

# Author: Olivier Grisel <olivier.grisel@ensta.org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Chyi-Kwei Yau <chyikwei.yau@gmail.com>
# License: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion examples/text/document_classification_20newsgroups.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Author: Peter Prettenhofer <peter.prettenhofer@gmail.com>
# Olivier Grisel <olivier.grisel@ensta.org>
# Mathieu Blondel <mathieu@mblondel.org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# License: BSD 3 clause

from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion examples/text/document_clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"""

# Author: Peter Prettenhofer <peter.prettenhofer@gmail.com>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# License: BSD 3 clause

from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion examples/text/hashing_vs_dict_vectorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
for FeatureHasher is to be expected due to hash collisions.
"""

# Author: Lars Buitinck <L.J.Buitinck@uva.nl>
# Author: Lars Buitinck
# License: BSD 3 clause

from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion sklearn/cluster/_k_means.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Author: Peter Prettenhofer <peter.prettenhofer@gmail.com>
# Olivier Grisel <olivier.grisel@ensta.org>
# Lars Buitinck <larsmans@gmail.com>
# Lars Buitinck
#
# Licence: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/_svmlight_format.pyx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Optimized inner loop of load_svmlight_file.
#
# Authors: Mathieu Blondel <mathieu@mblondel.org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Olivier Grisel <olivier.grisel@ensta.org>
# License: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/covtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Courtesy of Jock A. Blackard and Colorado State University.
"""

# Author: Lars Buitinck <L.J.Buitinck@uva.nl>
# Author: Lars Buitinck
# Peter Prettenhofer <peter.prettenhofer@gmail.com>
# License: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion sklearn/datasets/svmlight_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""

# Authors: Mathieu Blondel <mathieu@mblondel.org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Olivier Grisel <olivier.grisel@ensta.org>
# License: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion sklearn/decomposition/nmf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Non-negative matrix factorization
"""
# Author: Vlad Niculae
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Mathieu Blondel <mathieu@mblondel.org>
# Tom Dupre la Tour
# Author: Chih-Jen Lin, National Taiwan University (original projected gradient
Expand Down
2 changes: 1 addition & 1 deletion sklearn/decomposition/truncated_svd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Truncated SVD for sparse matrices, aka latent semantic analysis (LSA).
"""

# Author: Lars Buitinck <L.J.Buitinck@uva.nl>
# Author: Lars Buitinck
# Olivier Grisel <olivier.grisel@ensta.org>
# Michael Becker <mike@beckerfuffle.com>
# License: 3-clause BSD.
Expand Down
2 changes: 1 addition & 1 deletion sklearn/externals/joblib/disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Authors: Gael Varoquaux <gael dot varoquaux at normalesup dot org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Copyright (c) 2010 Gael Varoquaux
# License: BSD Style, 3 clauses.

Expand Down
2 changes: 1 addition & 1 deletion sklearn/feature_extraction/_hashing.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Author: Lars Buitinck <L.J.Buitinck@uva.nl>
# Author: Lars Buitinck
# License: BSD 3 clause

import array
Expand Down
2 changes: 1 addition & 1 deletion sklearn/feature_extraction/hashing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Author: Lars Buitinck <L.J.Buitinck@uva.nl>
# Author: Lars Buitinck
# License: BSD 3 clause

import numbers
Expand Down
2 changes: 1 addition & 1 deletion sklearn/feature_extraction/tests/test_dict_vectorizer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Authors: Lars Buitinck <L.J.Buitinck@uva.nl>
# Authors: Lars Buitinck
# Dan Blanchard <dblanchard@ets.org>
# License: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion sklearn/feature_extraction/text.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Authors: Olivier Grisel <olivier.grisel@ensta.org>
# Mathieu Blondel <mathieu@mblondel.org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Robert Layton <robertlayton@gmail.com>
# Jochen Wersdörfer <jochen@wersdoerfer.de>
# Roman Sinayev <roman.sinayev@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion sklearn/feature_selection/variance_threshold.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Author: Lars Buitinck <L.J.Buitinck@uva.nl>
# Author: Lars Buitinck
# License: 3-clause BSD

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion sklearn/linear_model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Vincent Michel <vincent.michel@inria.fr>
# Peter Prettenhofer <peter.prettenhofer@gmail.com>
# Mathieu Blondel <mathieu@mblondel.org>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Maryan Morel <maryan.morel@polytechnique.edu>
# Giorgio Patrini <giorgio.patrini@anu.edu.au>
# License: BSD 3 clause
Expand Down
2 changes: 1 addition & 1 deletion sklearn/metrics/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Olivier Grisel <olivier.grisel@ensta.org>
# Arnaud Joly <a.joly@ulg.ac.be>
# Jochen Wersdorfer <jochen@wersdoerfer.de>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Joel Nothman <joel.nothman@gmail.com>
# Noel Dawe <noel@dawe.me>
# License: BSD 3 clause
Expand Down
2 changes: 1 addition & 1 deletion sklearn/metrics/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Olivier Grisel <olivier.grisel@ensta.org>
# Arnaud Joly <a.joly@ulg.ac.be>
# Jochen Wersdorfer <jochen@wersdoerfer.de>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Joel Nothman <joel.nothman@gmail.com>
# Noel Dawe <noel@dawe.me>
# Jatin Shah <jatindshah@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion sklearn/metrics/pairwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Robert Layton <robertlayton@gmail.com>
# Andreas Mueller <amueller@ais.uni-bonn.de>
# Philippe Gervais <philippe.gervais@inria.fr>
# Lars Buitinck <larsmans@gmail.com>
# Lars Buitinck
# Joel Nothman <joel.nothman@gmail.com>
# License: BSD 3 clause

Expand Down
2 changes: 1 addition & 1 deletion sklearn/metrics/ranking.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Olivier Grisel <olivier.grisel@ensta.org>
# Arnaud Joly <a.joly@ulg.ac.be>
# Jochen Wersdorfer <jochen@wersdoerfer.de>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Joel Nothman <joel.nothman@gmail.com>
# Noel Dawe <noel@dawe.me>
# License: BSD 3 clause
Expand Down
2 changes: 1 addition & 1 deletion sklearn/metrics/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Olivier Grisel <olivier.grisel@ensta.org>
# Arnaud Joly <a.joly@ulg.ac.be>
# Jochen Wersdorfer <jochen@wersdoerfer.de>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Joel Nothman <joel.nothman@gmail.com>
# Noel Dawe <noel@dawe.me>
# Manoj Kumar <manojkumarsivaraj334@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion sklearn/metrics/scorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""

# Authors: Andreas Mueller <amueller@ais.uni-bonn.de>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Arnaud Joly <arnaud.v.joly@gmail.com>
# License: Simplified BSD

Expand Down
2 changes: 1 addition & 1 deletion sklearn/naive_bayes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Minor fixes by Fabian Pedregosa
# Amit Aides <amitibo@tx.technion.ac.il>
# Yehuda Finkelstein <yehudaf@tx.technion.ac.il>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Jan Hendrik Metzen <jhm@informatik.uni-bremen.de>
# (parts based on earlier work by Mathieu Blondel)
#
Expand Down
2 changes: 1 addition & 1 deletion sklearn/neighbors/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Authors: Jake Vanderplas <vanderplas@astro.washington.edu>
# Fabian Pedregosa <fabian.pedregosa@inria.fr>
# Alexandre Gramfort <alexandre.gramfort@inria.fr>
# Sparseness support by Lars Buitinck <L.J.Buitinck@uva.nl>
# Sparseness support by Lars Buitinck
# Multi-output support by Arnaud Joly <a.joly@ulg.ac.be>
#
# License: BSD 3 clause (C) INRIA, University of Amsterdam
Expand Down
2 changes: 1 addition & 1 deletion sklearn/neighbors/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Authors: Jake Vanderplas <vanderplas@astro.washington.edu>
# Fabian Pedregosa <fabian.pedregosa@inria.fr>
# Alexandre Gramfort <alexandre.gramfort@inria.fr>
# Sparseness support by Lars Buitinck <L.J.Buitinck@uva.nl>
# Sparseness support by Lars Buitinck
# Multi-output support by Arnaud Joly <a.joly@ulg.ac.be>
#
# License: BSD 3 clause (C) INRIA, University of Amsterdam
Expand Down
2 changes: 1 addition & 1 deletion sklearn/neighbors/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Authors: Jake Vanderplas <vanderplas@astro.washington.edu>
# Fabian Pedregosa <fabian.pedregosa@inria.fr>
# Alexandre Gramfort <alexandre.gramfort@inria.fr>
# Sparseness support by Lars Buitinck <L.J.Buitinck@uva.nl>
# Sparseness support by Lars Buitinck
# Multi-output support by Arnaud Joly <a.joly@ulg.ac.be>
#
# License: BSD 3 clause (C) INRIA, University of Amsterdam
Expand Down
3 changes: 1 addition & 2 deletions sklearn/tree/_criterion.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Brian Holt <bdholt1@gmail.com>
# Noel Dawe <noel@dawe.me>
# Satrajit Gosh <satrajit.ghosh@gmail.com>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Arnaud Joly <arnaud.v.joly@gmail.com>
# Joel Nothman <joel.nothman@gmail.com>
# Fares Hedayati <fares.hedayati@gmail.com>
Expand Down Expand Up @@ -1021,4 +1021,3 @@ cdef class FriedmanMSE(MSE):

return (diff * diff / (self.weighted_n_left * self.weighted_n_right *
self.weighted_n_node_samples))

2 changes: 1 addition & 1 deletion sklearn/tree/_splitter.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Brian Holt <bdholt1@gmail.com>
# Noel Dawe <noel@dawe.me>
# Satrajit Gosh <satrajit.ghosh@gmail.com>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Arnaud Joly <arnaud.v.joly@gmail.com>
# Joel Nothman <joel.nothman@gmail.com>
# Fares Hedayati <fares.hedayati@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion sklearn/tree/_tree.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Brian Holt <bdholt1@gmail.com>
# Noel Dawe <noel@dawe.me>
# Satrajit Gosh <satrajit.ghosh@gmail.com>
# Lars Buitinck <L.J.Buitinck@uva.nl>
# Lars Buitinck
# Arnaud Joly <arnaud.v.joly@gmail.com>
# Joel Nothman <joel.nothman@gmail.com>
# Fares Hedayati <fares.hedayati@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion sklearn/utils/weight_vector.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# cython: wraparound=False
#
# Author: Peter Prettenhofer <peter.prettenhofer@gmail.com>
# Lars Buitinck <larsmans@gmail.com>
# Lars Buitinck
# Danny Sullivan <dsullivan7@hotmail.com>
#
# Licence: BSD 3 clause
Expand Down

0 comments on commit 2e4aafd

Please sign in to comment.