Erfan11 commited on
Commit
646df74
1 Parent(s): e9d4fff

Update model_loading.py

Browse files
Files changed (1) hide show
  1. model_loading.py +7 -3
model_loading.py CHANGED
@@ -1,9 +1,13 @@
1
  import os
2
- import tensorflow as tf
3
  from dotenv import load_dotenv
4
 
5
  load_dotenv()
 
6
  model_path = os.getenv('MODEL_PATH')
7
 
8
- def load_model():
9
- return tf.keras.models.load_model(model_path)
 
 
 
 
1
  import os
2
+ import requests
3
  from dotenv import load_dotenv
4
 
5
  load_dotenv()
6
+ api_key = os.getenv('HF_API_KEY')
7
  model_path = os.getenv('MODEL_PATH')
8
 
9
+ def get_model_predictions(text):
10
+ headers = {"Authorization": f"Bearer {api_key}"}
11
+ payload = {"inputs": text}
12
+ response = requests.post(f"https://api.huggingface.co/models/{model_path}", headers=headers, json=payload)
13
+ return response.json()