T5-Summarization / src /models /predict_model.py
Gagan Bhatia
Update predict_model.py
9f87b83
raw
history blame
415 Bytes
import yaml
from .model import Summarization
import pandas as pd
def predict_model(text):
"""
Predict the summary of the given text.
"""
model = Summarization()
model.load_model()
pre_summary = model.predict(text)
return pre_summary
if __name__ == '__main__':
text = make_dataset(split="test")['input_text'][0]
pre_summary = predict_model(text)
print(pre_summary)