Hi, for calling the model with the tokens tensor, why do you pass **tokens not only tokens
tokens = tokenizer(sequences, padding=True, truncation=True, return_tensors=“tf”)
output = model(**tokens)
Hi, for calling the model with the tokens tensor, why do you pass **tokens not only tokens
tokens = tokenizer(sequences, padding=True, truncation=True, return_tensors=“tf”)
output = model(**tokens)