python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
make_pipeline()f TypeError: All intermediate steps should be transformers and implement fit and transform or be the string 'passthrough'
I am trying to make a stacked classifier that uses count vectorization, gradient boosting and then Naive baised. However, I get a type error for my make_pipeline function.
from sklearn.pipeline import...
Kaustubh Kaushal
Votes: 0
Answers: 1
Efficiently compute cosine similarity
I have a bank of about 100k strings and when I get a new string, I want to match it to the most similar string.
My thoughts were to use tf-idf (makes sense as keywords are quite important), then match...
user112633
Votes: 0
Answers: 1
Indexing/search algorithm stability between versions
I'm migrating from Elasticsearch 1.5 to 7.10 there are multiple required changes, the most relevant one is the removal of the document type concept in version 6, to deal with it I introduced a new fie...
Alvaro Denis Acosta
Votes: 0
Answers: 1