Interface ModelsOrchestrer
-
- All Known Implementing Classes:
ModelsOrchestrerImpl
public interface ModelsOrchestrerThis class, as it's name indicates, will take care of the orchestration between the different models It creates all the instances and calls the methods in the correct orders.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CategorizerImpl.CategoryResult>getCategories(String[] input)this method will get all the categories from the user inputs.String[]toSentences(String input)this method will prepare the list of sentences based on the user's input
-
-
-
Method Detail
-
getCategories
List<CategorizerImpl.CategoryResult> getCategories(String[] input)
this method will get all the categories from the user inputs.- Parameters:
input- an array of Strings representing the sentences entered by the user- Returns:
- array of Category Result representing the list of unique categories.
-
-