Re: [scikit-learn] New member of the triage team: Norbert

2021-06-21 Thread Norbert Preining
Hi everyone, On Mon, 21 Jun 2021, Olivier Grisel wrote: > I am a bit late but I am very happy to see Norbert joining the triage Thanks everyone for the welcome and I am looking forward to our collaboration. Norbert -- PREINING Norbert https://www.preining.info Fujit

Re: [scikit-learn] New member of the triage team: Norbert

2021-06-21 Thread Olivier Grisel
> I have only one question related to scikit-learn. > how to compute topic coherence of lda models in scikit-lean. I don't find > any function that calculate a coherence value. > please, reply me. We don't have such a metric in scikit-learn. I assume you are referring to: http://svn.aksw.org/pap

Re: [scikit-learn] New member of the triage team: Norbert

2021-06-21 Thread Olivier Grisel
I am a bit late but I am very happy to see Norbert joining the triage team! Welcome! ___ scikit-learn mailing list scikit-learn@python.org https://mail.python.org/mailman/listinfo/scikit-learn

Re: [scikit-learn] function transformer

2021-06-21 Thread Manprit Singh
Dear Sir, I have made such a transformer, below given is an example that generates 3 new columns, from existing 2 columns of a numpy array , first column is for element wise addition, second is for element wise multiplication and third is for element wise division . >>> import numpy as np >>> fr