Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -110,7 +110,7 @@ interface_original = gr.Interface(fn=create_response,
|
|
110 |
title="original",
|
111 |
description="original language model, no fine tuning",
|
112 |
examples=examples,
|
113 |
-
inputs=input_component_list
|
114 |
outputs=common_output_component_list
|
115 |
)
|
116 |
examples = copy.deepcopy(common_examples)
|
@@ -125,7 +125,7 @@ interface_untethered_model = gr.Interface(fn=create_response,
|
|
125 |
title="untethered model",
|
126 |
description="language model fine tuned with'The Untethered Soul' chapter 17",
|
127 |
examples=examples,
|
128 |
-
inputs=input_component_list
|
129 |
outputs=common_output_component_list
|
130 |
)
|
131 |
|
@@ -138,7 +138,7 @@ interface_untethered_model = gr.Interface(fn=create_response,
|
|
138 |
title="untethered paraphrased_model",
|
139 |
description="language model fine tuned with'The Untethered Soul' chapter 17 paraphrased",
|
140 |
examples=examples,
|
141 |
-
inputs=input_component_list
|
142 |
outputs=common_output_component_list
|
143 |
)
|
144 |
|
|
|
110 |
title="original",
|
111 |
description="original language model, no fine tuning",
|
112 |
examples=examples,
|
113 |
+
inputs=input_component_list,
|
114 |
outputs=common_output_component_list
|
115 |
)
|
116 |
examples = copy.deepcopy(common_examples)
|
|
|
125 |
title="untethered model",
|
126 |
description="language model fine tuned with'The Untethered Soul' chapter 17",
|
127 |
examples=examples,
|
128 |
+
inputs=input_component_list,
|
129 |
outputs=common_output_component_list
|
130 |
)
|
131 |
|
|
|
138 |
title="untethered paraphrased_model",
|
139 |
description="language model fine tuned with'The Untethered Soul' chapter 17 paraphrased",
|
140 |
examples=examples,
|
141 |
+
inputs=input_component_list,
|
142 |
outputs=common_output_component_list
|
143 |
)
|
144 |
|