Spaces:
Runtime error
Runtime error
EmicoBinsfinder
commited on
Commit
•
8617865
1
Parent(s):
7d3344b
Update app.py
Browse files
app.py
CHANGED
@@ -409,12 +409,14 @@ with gr.Blocks(title='Claimed', theme=theme) as demo:
|
|
409 |
|
410 |
gr.Markdown("""
|
411 |
# CLAIMED - A GENERATIVE TOOLKIT FOR PATENT ATTORNEYS AND INVENTORS
|
412 |
-
The patenting process can be complex, time-consuming and expensive. We believe that AI will one day
|
413 |
|
414 |
As a proof of concept, we've trained Meta's Llama on over 200k entries, with a focus on tasks related to the intellectual property domain.
|
415 |
|
416 |
We are currently running this demo on a less powerful version of our model due to computational limitations. If you would like to see our most powerful model in action, please contact us at this email: [email protected]
|
417 |
|
|
|
|
|
418 |
Please note that this is for research purposes and shouldn't be used commercially.
|
419 |
|
420 |
None of the outputs of this model, taken in part or in its entirety, constitutes legal advice. If you are seeking protection for you intellectual property, consult a registered patent/trademark attorney.
|
@@ -481,7 +483,7 @@ with gr.Blocks(title='Claimed', theme=theme) as demo:
|
|
481 |
|
482 |
with gr.Tab("Prosecution Beta"):
|
483 |
gr.Markdown("""
|
484 |
-
Use this tool to generate ideas for how to overcome objections to novelty and inventive step. For now, this tool only works on relatively short inputs, so maybe try
|
485 |
""")
|
486 |
with gr.Row(scale=1, min_width=600):
|
487 |
with gr.Column():
|
@@ -567,10 +569,8 @@ with gr.Blocks(title='Claimed', theme=theme) as demo:
|
|
567 |
In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
|
568 |
|
569 |
If you are interested in using a more powerful model that we have trained, or if you have any suggestions of features you would like to see us add, please get in touch!
|
570 |
-
|
571 |
-
As far as data is concerned, you have nothing to worry about! We don't store any of your inputs to use for further training!
|
572 |
-
|
573 |
""")
|
574 |
-
demo.queue(max_size=
|
575 |
demo.launch()
|
576 |
|
|
|
409 |
|
410 |
gr.Markdown("""
|
411 |
# CLAIMED - A GENERATIVE TOOLKIT FOR PATENT ATTORNEYS AND INVENTORS
|
412 |
+
The patenting process can be complex, time-consuming and expensive. We believe that AI will one day alleviate these problems.
|
413 |
|
414 |
As a proof of concept, we've trained Meta's Llama on over 200k entries, with a focus on tasks related to the intellectual property domain.
|
415 |
|
416 |
We are currently running this demo on a less powerful version of our model due to computational limitations. If you would like to see our most powerful model in action, please contact us at this email: [email protected]
|
417 |
|
418 |
+
We know that confidentiality is probably the number one concern for attorneys when considering using such tools. We don't store any of your inputs to use for further training and we don't use the OpenAI API (ChatGPT) as our backend, meaning that confidentiality is not comprimised!
|
419 |
+
|
420 |
Please note that this is for research purposes and shouldn't be used commercially.
|
421 |
|
422 |
None of the outputs of this model, taken in part or in its entirety, constitutes legal advice. If you are seeking protection for you intellectual property, consult a registered patent/trademark attorney.
|
|
|
483 |
|
484 |
with gr.Tab("Prosecution Beta"):
|
485 |
gr.Markdown("""
|
486 |
+
Use this tool to generate ideas for how to overcome objections to novelty and inventive step. For now, this tool only works on relatively short inputs, so maybe try very simple inventions or short paragraphs.
|
487 |
""")
|
488 |
with gr.Row(scale=1, min_width=600):
|
489 |
with gr.Column():
|
|
|
569 |
In the future, we are looking to expand our model's capabilities further to assist in a range of IP related tasks.
|
570 |
|
571 |
If you are interested in using a more powerful model that we have trained, or if you have any suggestions of features you would like to see us add, please get in touch!
|
572 |
+
|
|
|
|
|
573 |
""")
|
574 |
+
demo.queue(max_size=20)
|
575 |
demo.launch()
|
576 |
|