File size: 345 Bytes
9856e13
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from handler import EndpointHandler

# init handler
my_handler = EndpointHandler(path=".")

# prepare sample payload
non_holiday_payload = {"inputs": "I am quite excited how this will turn out", "date": "2022-08-08"}

# test the handler
non_holiday_pred=my_handler(non_holiday_payload)

# show results
print("non_holiday_pred", non_holiday_pred)