We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 858b6f4 commit 4cb6848Copy full SHA for 4cb6848
text_sum/text_summarizer.py
@@ -8,4 +8,10 @@ def extract_sentences(text):
8
return ["Sentence 1 (placeholder)", "Sentence 2 (placeholder)"]
9
10
if __name__ == "__main__":
11
- main()
+ main()
12
+
13
+ # text_summarizer.py (continued)
14
+def score_sentences(sentences):
15
+ print("Scoring sentences (placeholder)")
16
+ scores = {s: 1 for s in sentences}
17
+ return scores
0 commit comments