Error in graded assignment of module 3

In the graded assignment of Module 3, Hint 3 says:

Define the reranker as reranker = Reranker(appropriate_parameters)

This is wrong as it should be defined as reranker = Rerank(appropriate_parameters)

1 Like

Thank you @billyboe for informing this.

@lucas.coutinho the hint 3 need to be updated according to the Rerank object mentioned in Hint 2

Regards

DP

Hint 3 in my ipynb still says “reranker=Reranker(appropriate_parameters)“? And the weviate api requires “limit=top_k“ but sometimes “query=query“(but not in the example for this exercise). Using Rerank instead of Reranker and query= and rerank= I get “TypeError: BaseModel._init_() takes 1 positional argument but 3 were given“.