Spaces:
Runtime error
Runtime error
File size: 1,137 Bytes
5b5b64e f50a8e5 5b5b64e f50a8e5 5b5b64e f50a8e5 5b5b64e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
def real_estate_app():
return """
<h3 style='text-align: center;'>Introduction</h3>
<p>This app allows you to upload an image and test the detections aswell as download the configured executable script</p>
<h4>Information:</h4>
<ul>
<li><b>Test Detection Algorithm:</b> In this demo you can easily test the accuracy of the detection algorithm by uploading photos with cars and humans </li>
<li><b>Customize and Download Script:</b> You can download the personlized executable script directly from here.</li>
</ul>
</div>
"""
def real_estate_app_hf():
return """
<div style='text-align: left;'>
<h3 style='text-align: center;'>About this Demo</h3>
<br>
<h4>How to use:</h4>
<ul>
<li><b>Testing:</b> Simply upload any image with humans and cars, click apply and predict button</li>
<li><b>Downloading the Script:</b> You can set the destination folder, source folder and other settings to your choice via the GUI and click donwload button to download the finished executable python script.</li>
</ul>
<br>
</div>
"""
|