I do not know what to put as input for my model after conversion

Hello,

I have converted the “bert-large-cased-finetuned-conll03-english” into .onnx format, and am using onnxruntime to run the model in Java. I am trying to figure out how to pass the correct input into the model so it can run as it does in python using the transformers library.

This is what my code looks like:

Lines 13-20 are where i need to put my input data, but from my knowledge, in python there is an autotokenizer to fix the input for you, which i do not have in java.

For the record, The program complies and gives me this with default values:

I don’t know if this is a “beginner” level problem, but this is my first project with ML so i put it under beginner.

Thanks