File size: 1,747 Bytes
cc7374e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9183d8e
 
cc7374e
 
 
 
 
 
 
 
 
 
 
a90f1c4
cc7374e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2427a02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from gradio_client import Client
import threading

def generate_textrank_summary(research_paper_text):
    client = Client("raannakasturi/TextRankSummarizer")
    summary = client.predict(
        text_corpus=research_paper_text,
        api_name="/textrank_summarizer"
    )
    return summary

def generate_luhn_summary(research_paper_text):
    client = Client("raannakasturi/LuhnSummarizer")
    summary = client.predict(
        text_corpus=research_paper_text,
        api_name="/luhn_summarizer"
    )
    return summary

def sanitize_text(input_string):
    try:
        encoded_bytes = input_string.encode("utf-8")
        decoded_string = encoded_bytes.decode("utf-8")
        return decoded_string
    except UnicodeEncodeError as e:
        print(f"Encoding error: {e}")
        raise
    except UnicodeDecodeError as e:
        print(f"Decoding error: {e}")
        raise

def generate_math_summary(research_paper_text):
    sanitized_text = sanitize_text(research_paper_text)
    try:
        textrank_summary = luhn_summary = None
        def run_textrank():
            nonlocal textrank_summary
            textrank_summary = generate_textrank_summary(sanitized_text)
        def run_luhn():
            nonlocal luhn_summary
            luhn_summary = generate_luhn_summary(sanitized_text)
        threads = []
        threads.append(threading.Thread(target=run_textrank))
        threads.append(threading.Thread(target=run_luhn))
        for thread in threads:
            thread.start()
        for thread in threads:
            thread.join()
        math_summary = textrank_summary.replace("\n", "") + luhn_summary.replace("\n", "")
        return math_summary
    except Exception as e:
        print(e)
        return False