Spaces:
Runtime error
Runtime error
File size: 569 Bytes
515949b ec2a2c2 3f8d76d 9bbcc22 d1aa7b9 c015c4c d5a6d18 515949b c015c4c c6e4955 c015c4c 0ee5810 d1aa7b9 c6e4955 0ee5810 d1aa7b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import yaml
from src.models.model import Summarization
import pandas as pd
def predict_model(text):
"""
Predict the summary of the given text.
"""
with open("model_params.yml") as f:
params = yaml.safe_load(f)
model = Summarization()
model.load_model(model_type=params["model_type"], model_dir=params["model_dir"])
pre_summary = model.predict(text)
return pre_summary
if __name__ == "__main__":
text = pd.load_csv("data/processed/test.csv")["input_text"][0]
pre_summary = predict_model(text)
print(pre_summary)
|