summarization / src /models /predict_model.py
gagan3012's picture
added params
3f8d76d
raw
history blame
460 Bytes
from src.data.make_dataset import make_dataset
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 = pd.load_csv('data/processed/test.csv')['input_text'][0]
pre_summary = predict_model(text)
print(pre_summary)