iamsubrata commited on
Commit
5e52bf6
·
1 Parent(s): 3431058

LLAMA2 app

Browse files
Files changed (1) hide show
  1. LLAMA2.py +38 -0
LLAMA2.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
+
4
+ st.set_page_config(
5
+ page_title="LLAMA2",
6
+ page_icon="🦙",
7
+ layout="centered",
8
+ initial_sidebar_state="expanded"
9
+ )
10
+
11
+ st.markdown(
12
+ body = "# <center>FINE-TUNED LLAMA2 7B CHAT HF</center>",
13
+ unsafe_allow_html = True
14
+ )
15
+ text="""4Bit QLoRA Fine-Tuned LLM on English Quotes Dataset."""
16
+
17
+ st.caption(text)
18
+
19
+ text_input = st.text_area(
20
+ label = "Prompt...",
21
+ value = "Tell me a joke."
22
+ )
23
+
24
+ model_id = "iamsubrata/Llama-2-7b-chat-hf-sharded-bf16-fine-tuned"
25
+
26
+ LLM = pipeline(
27
+ task = "text-generation",
28
+ model = model_id
29
+ )
30
+
31
+ if text_input:
32
+ prompt = st.button(
33
+ label = "Generate",
34
+ key = "generate"
35
+ )
36
+
37
+ if prompt:
38
+ st.write(LLM(str(prompt)))