Andrea Greco commited on
Commit
23c0e5b
1 Parent(s): 218e215

summarization test

Browse files
Files changed (4) hide show
  1. Dockerfile +0 -0
  2. Makefile +23 -0
  3. app.py +14 -0
  4. requirements.txt +3 -0
Dockerfile ADDED
File without changes
Makefile ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ install:
2
+ pip install --upgrade pip &&\
3
+ pip install -r requirements.txt
4
+
5
+ test:
6
+ python -m pytest -vv test_main.py
7
+
8
+ format:
9
+ black *.py
10
+
11
+ run:
12
+ python app.py
13
+
14
+ run-uvicorn:
15
+ uvicorn main:app --reload
16
+
17
+ killweb:
18
+ sudo killall uvicorn
19
+
20
+ lint:
21
+ pylint --disable=R,C main.py
22
+
23
+ all: install lint
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ model = pipeline("summarization")
5
+
6
+ def predict(prompt):
7
+ summary = model(prompt)[0]["summary_text"]
8
+ return summary
9
+
10
+ with gr.Blocks() as demo:
11
+ textbox = gr.Textbox(placeholder="Enter text block to summarize", lines=4)
12
+ gr.Interface(fn=predict, inputs=textbox, outputs="text")
13
+
14
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ gradio
2
+ transformers
3
+ torch