1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// This file is autogenerated, DO NOT EDIT
// ml/trained-models/apis/infer-trained-model.asciidoc:1150
[source, python]
----
resp = client.ml.infer_trained_model(
model_id="cross-encoder__ms-marco-tinybert-l-2-v2",
docs=[
{
"text_field": "Berlin has a population of 3,520,031 registered inhabitants in an area of 891.82 square kilometers."
},
{
"text_field": "New York City is famous for the Metropolitan Museum of Art."
}
],
inference_config={
"text_similarity": {
"text": "How many people live in Berlin?"
}
},
)
print(resp)
----
|