Update handler.py
Browse files- handler.py +1 -0
handler.py
CHANGED
@@ -2,6 +2,7 @@ from typing import Dict, List, Any
|
|
2 |
import pickle
|
3 |
import numpy as np
|
4 |
import pandas as pd
|
|
|
5 |
class EndpointHandler:
|
6 |
def __init__(self, path=""):
|
7 |
model_path = os.path.join(path, "content_based_recommender.pkl")
|
|
|
2 |
import pickle
|
3 |
import numpy as np
|
4 |
import pandas as pd
|
5 |
+
import os
|
6 |
class EndpointHandler:
|
7 |
def __init__(self, path=""):
|
8 |
model_path = os.path.join(path, "content_based_recommender.pkl")
|