You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
The botfinder.bot_classifier.is_bot function takes a DataFrame but (implicitly!) assumes that the DataFrame will only contain 1 observation. This makes it impossible to use the function to predict multiple observations at the same time.
Solution 😃
Slight changes to the is_bot function will allow it to make predictions for multiple observations at the same time.
The function should return an array of objects instead of an object.
The text was updated successfully, but these errors were encountered:
Problem 🤕
The
botfinder.bot_classifier.is_bot
function takes a DataFrame but (implicitly!) assumes that the DataFrame will only contain 1 observation. This makes it impossible to use the function to predict multiple observations at the same time.Solution 😃
Slight changes to the
is_bot
function will allow it to make predictions for multiple observations at the same time.The function should return an array of objects instead of an object.
The text was updated successfully, but these errors were encountered: