Confusion the code

What’s the inputs there in the model()??

1 Like

The variable name ‘inputs’ is a commonly used variable name for the dict-type variable returned by Hugging Face’s Tokenizer, and the name doesn’t have to be ‘inputs’. It contains things like ‘input_ids’ and ‘input_embeds’. The idiom is to expand and pass these. For example, the following will work in many cases.

outputs = model(input_ids=inputs["input_ids"])

If you’ve ever seen the term ‘kwargs’, it’s the same thing.