jeffaudi commited on
Commit
2adb233
1 Parent(s): 5f3c1c1

Update to the footer

Browse files
Files changed (2) hide show
  1. .gitignore +2 -1
  2. app.py +7 -9
.gitignore CHANGED
@@ -1,2 +1,3 @@
1
  **/.DS_Store
2
- gradio_cached_examples
 
 
1
  **/.DS_Store
2
+ gradio_cached_examples
3
+ __pycache__
app.py CHANGED
@@ -12,7 +12,7 @@ import json
12
  DL4EO_API_URL = "https://dl4eo--ship-predict.modal.run"
13
 
14
  # Auth Token to access API
15
- DL4EO_API_KEY = os.environ['DL4EO_API_KEY']
16
 
17
  # width of the boxes on image
18
  LINE_WIDTH = 2
@@ -128,14 +128,12 @@ with demo:
128
 
129
  gr.Markdown("""
130
  <p>This demo is provided by <a href='https://www.linkedin.com/in/faudi/'>Jeff Faudi</a> and <a href='https://www.dl4eo.com/'>DL4EO</a>.
131
- This model is based on the <a href='https://github.com/open-mmlab/mmrotate'>MMRotate framework</a> which provides oriented bounding boxes.
132
- We believe that oriented bouding boxes are better suited for detection in satellite images. This model has been trained on the
133
- <a href='https://captain-whu.github.io/DOTA/dataset.html'>DOTA dataset</a> which contains 15 classes: plane, ship, storage tank,
134
- baseball diamond, tennis court, basketball court, ground track field, harbor, bridge, large vehicle, small vehicle, helicopter,
135
- roundabout, soccer ball field and swimming pool. </p><p>The associated licenses are
136
- <a href='https://about.google/brand-resource-center/products-and-services/geo-guidelines/#google-earth-web-and-apps'>GoogleEarth fair use</a>
137
- and <a href='https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en'>CC-BY-SA-NC</a>. This demonstration CANNOT be used for commercial puposes.
138
- Please contact <a href='mailto:jeff@dl4eo.com'>me</a> for more information on how you could get access to a commercial grade model or API. </p>
139
  """)
140
 
141
  demo.launch(
 
12
  DL4EO_API_URL = "https://dl4eo--ship-predict.modal.run"
13
 
14
  # Auth Token to access API
15
+ DL4EO_API_KEY = 'dprY8HYkE9iXeCS4JnGjch5B' #os.environ['DL4EO_API_KEY']
16
 
17
  # width of the boxes on image
18
  LINE_WIDTH = 2
 
128
 
129
  gr.Markdown("""
130
  <p>This demo is provided by <a href='https://www.linkedin.com/in/faudi/'>Jeff Faudi</a> and <a href='https://www.dl4eo.com/'>DL4EO</a>.
131
+ This model is based on the <a href='https://www.ultralytics.com/yolo'>Ultralytics YOLOv8-OBB</a> framework which provides oriented bounding boxes.
132
+ We believe that oriented bouding boxes are better suited for detection of ships in satellite images. This model has been trained on the
133
+ <a href='https://www.kaggle.com/c/airbus-ship-detection/data'>Airbus Ship Detection dataset</a> available on Kaggle which provide SPOT extracts at 1.5 m.
134
+ provided by Airbus DS. The associated license is <a href='https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en'>CC-BY-SA-NC</a>.</p>
135
+ <p>This demonstration CANNOT be used for commercial puposes. Please contact <a href='mailto:jeff@dl4eo.com'>me</a> for more information on
136
+ how you could get access to a commercial grade model or API. </p>
 
 
137
  """)
138
 
139
  demo.launch(