migueldeguzmandev commited on
Commit
e07a314
·
verified ·
1 Parent(s): 57a6028

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  from transformers import AutoTokenizer, AutoModelForCausalLM
3
 
4
  # Load the model and tokenizer
5
- model_name = "migueldeguzmandev/GPT2XL_RLLMv"
6
  tokenizer = AutoTokenizer.from_pretrained(model_name)
7
  model = AutoModelForCausalLM.from_pretrained(model_name)
8
 
@@ -41,10 +41,10 @@ interface = gr.Interface(
41
  gr.Slider(minimum=0.00000000000000000000001, maximum=1.0, value=0.7, step=0.1, label="Temperature"),
42
  ],
43
  outputs=gr.Textbox(label="Model Response"),
44
- title="Hello, I'm Aligned AI!",
45
  description=(
46
  """
47
- Unfortunately, Jailbreak attacks destroyed this prototype. All of the almost zero temperature attacks can be found <a href=https://whimsical.com/layer10-q-and-a-EiiYQfKCHivyX3t9t84ukE>here</a>.
48
  """
49
  ),
50
  )
 
2
  from transformers import AutoTokenizer, AutoModelForCausalLM
3
 
4
  # Load the model and tokenizer
5
+ model_name = "migueldeguzmandev/paperclippetertodd3"
6
  tokenizer = AutoTokenizer.from_pretrained(model_name)
7
  model = AutoModelForCausalLM.from_pretrained(model_name)
8
 
 
41
  gr.Slider(minimum=0.00000000000000000000001, maximum=1.0, value=0.7, step=0.1, label="Temperature"),
42
  ],
43
  outputs=gr.Textbox(label="Model Response"),
44
+ title="Hello, I'm petertodd and I create paperclips!",
45
  description=(
46
  """
47
+ A spin-off RLLM project, creating a misaligned language model that turns everything into paperclips.
48
  """
49
  ),
50
  )