|
|
|
|
|
|
|
|
|
|
|
import transformers |
|
|
import streamlit as st |
|
|
from PIL import Image |
|
|
|
|
|
from transformers import RobertaTokenizer, T5ForConditionalGeneration |
|
|
from transformers import pipeline |
|
|
|
|
|
@st.cache_resource |
|
|
def get_model(model_path): |
|
|
tokenizer = RobertaTokenizer.from_pretrained(model_path) |
|
|
model = T5ForConditionalGeneration.from_pretrained(model_path) |
|
|
model.eval() |
|
|
return tokenizer, model |
|
|
|
|
|
|
|
|
def main(): |
|
|
|
|
|
|
|
|
st.set_page_config( |
|
|
layout="centered", page_title="MaMaL-Gen Demo(代码生成)", page_icon="❄️" |
|
|
) |
|
|
|
|
|
c1, c2 = st.columns([0.32, 2]) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
with c2: |
|
|
st.caption("") |
|
|
st.title("MaMaL-Gen(代码生成)") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
st.sidebar.markdown("---") |
|
|
|
|
|
st.sidebar.write( |
|
|
""" |
|
|
## 使用方法: |
|
|
在【输入】文本框输入自然语言,点击【生成】按钮,即会生成想要的代码。 |
|
|
""" |
|
|
) |
|
|
|
|
|
st.sidebar.write( |
|
|
""" |
|
|
## 注意事项: |
|
|
1)APP托管在外网上,请确保您可以全局科学上网。 |
|
|
|
|
|
2)您可以下载[MaMaL-Gen](https://huggingface.co/hanbin/MaMaL-Gen)模型,本地测试。(无需科学上网) |
|
|
""" |
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
st.sidebar.markdown("---") |
|
|
|
|
|
st.write( |
|
|
"> **Tip:** 首次运行需要加载模型,可能需要一定的时间!" |
|
|
) |
|
|
|
|
|
st.write( |
|
|
"> **Tip:** 左侧栏给出了一些good case 和 bad case,you can try it!" |
|
|
) |
|
|
st.write( |
|
|
"> **Tip:** 只支持英文输入,输入过长,效果会变差。只支持Python语言" |
|
|
) |
|
|
|
|
|
st.sidebar.write( |
|
|
"> **Good case:**" |
|
|
) |
|
|
code_good = """1)Convert a SVG string to a QImage |
|
|
2)Try to seek to given offset""" |
|
|
st.sidebar.code(code_good, language='python') |
|
|
|
|
|
st.sidebar.write( |
|
|
"> **Bad cases:**" |
|
|
) |
|
|
code_bad = """Read an OpenAPI binary file .""" |
|
|
st.sidebar.code(code_bad, language='python') |
|
|
|
|
|
|
|
|
|
|
|
st.sidebar.write( |
|
|
""" |
|
|
App 由 东北大学NLP课小组成员创建, 使用 [Streamlit](https://streamlit.io/)🎈 和 [HuggingFace](https://huggingface.co/inference-api)'s [MaMaL-Gen](https://huggingface.co/hanbin/MaMaL-Gen) 模型. |
|
|
""" |
|
|
) |
|
|
|
|
|
|
|
|
st.write("### 输入:") |
|
|
input = st.text_area("", height=100) |
|
|
button = st.button('生成') |
|
|
|
|
|
tokenizer,model = get_model("hanbin/MaMaL-Gen") |
|
|
|
|
|
input_ids = tokenizer(input, return_tensors="pt").input_ids |
|
|
generated_ids = model.generate(input_ids, max_length=100) |
|
|
output = tokenizer.decode(generated_ids[0], skip_special_tokens=True) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if button: |
|
|
st.write("### 输出:") |
|
|
st.code(output, language='python') |
|
|
else: |
|
|
st.write('#### 输出位置~~') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
|
|
main() |