Joblib
English
llm
human-feedback
weak supervision
data filtering
Inference Endpoints
Christopher Glaze
Initial commit of model files.
b208d2e
raw
history blame
324 Bytes
from handler import EndpointHandler
# init handler
response_model_handler = EndpointHandler()
# prepare sample payload
payload = {"instruction": "What are some ways to stay energized throughout the day?",
"response": "Drink lots of coffee!"}
# test the handler
pred=response_model_handler(payload)
print(pred)