Spaces:
Sleeping
Sleeping
arjunanand13
commited on
Commit
•
db67ed2
1
Parent(s):
eddd959
Update app.py
Browse files
app.py
CHANGED
@@ -185,6 +185,6 @@ EXAMPLES = ["to create the TDA2x Board for AVM Applications. And TDA2x Board wil
|
|
185 |
"I'm using Code Composer Studio 5.4.0.00091 and enabled FPv4SPD16 floating point support for CortexM4 in TDA2. However, after building the project, the .asm file shows --float_support=vfplib instead of FPv4SPD16. Why is this happening?",
|
186 |
"Master core in TDA2XX is a15 and in TDA3XX it is m4,so we have to shift all modules that are being used by a15 in TDA2XX to m4 in TDA3xx."]
|
187 |
|
188 |
-
demo = gr.Interface(fn=qa_infer, inputs="
|
189 |
demo.launch()
|
190 |
|
|
|
185 |
"I'm using Code Composer Studio 5.4.0.00091 and enabled FPv4SPD16 floating point support for CortexM4 in TDA2. However, after building the project, the .asm file shows --float_support=vfplib instead of FPv4SPD16. Why is this happening?",
|
186 |
"Master core in TDA2XX is a15 and in TDA3XX it is m4,so we have to shift all modules that are being used by a15 in TDA2XX to m4 in TDA3xx."]
|
187 |
|
188 |
+
demo = gr.Interface(fn=qa_infer, inputs=[gr.Textbox(label="QUERY", placeholder ="Enter your query here")], allow_flagging='never', examples=EXAMPLES, cache_examples=False, outputs=[gr.Textbox(label="RELATED QUERIES"), gr.Textbox(label="SOLUTION"), gr.HTML()])#,outputs="text")
|
189 |
demo.launch()
|
190 |
|