meet244 commited on
Commit
be78dc0
·
1 Parent(s): 8f501b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -74,10 +74,8 @@ def build_gui():
74
 
75
  article = """
76
  <p style='text-align: center'>
77
- RAM and Tag2Text are trained on open-source datasets, and we are persisting in refining and iterating upon it.<br/>
78
- <a href='https://recognize-anything.github.io/' target='_blank'>Recognize Anything: A Strong Image Tagging Model</a>
79
- |
80
- <a href='https://tag2text.github.io/' target='_blank'>Tag2Text: Guiding Language-Image Model via Image Tagging</a>
81
  </p>
82
  """ # noqa
83
  with gr.Blocks(title="Legal Up Model") as demo:
@@ -97,4 +95,5 @@ def build_gui():
97
  gr.HTML(article)
98
  return demo
99
 
100
- build_gui().launch()
 
 
74
 
75
  article = """
76
  <p style='text-align: center'>
77
+ Case and Client are trained on private datasets, and we are persisting in refining and iterating upon it.<br/>
78
+ <a href='https://github.com/meet244/Legal-Up' target='_blank'>Legal Up: Lawyer Recommendation System</a>
 
 
79
  </p>
80
  """ # noqa
81
  with gr.Blocks(title="Legal Up Model") as demo:
 
95
  gr.HTML(article)
96
  return demo
97
 
98
+ if __name__ == "__main__":
99
+ build_gui().launch()