{% extends "page.html" %} {% block stylesheet %} {% endblock %} {% block site %} <div id="jupyter-main-app" class="container"> <img src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="Hugging Face Logo" style="height: 96px; vertical-align: bottom;"><span style="font-size: 52px;">×</span><img src="https://upload.wikimedia.org/wikipedia/commons/f/f3/Apache_Spark_logo.svg" alt="Apache Spark Logo" style="height: 96px; vertical-align: bottom;"> <h4>You must duplicate this Space to use it.</h4> <br> <a class="duplicate-button" style="display:inline-block" target="_blank" href="https://huggingface.co/spaces/lhoestq/Spark-on-HF-JupyterLab?duplicate=true"> <img style="margin: 0" src="https://img.shields.io/badge/-Duplicate%20Space-blue?labelColor=white&style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAP5JREFUOE+lk7FqAkEURY+ltunEgFXS2sZGIbXfEPdLlnxJyDdYB62sbbUKpLbVNhyYFzbrrA74YJlh9r079973psed0cvUD4A+4HoCjsA85X0Dfn/RBLBgBDxnQPfAEJgBY+A9gALA4tcbamSzS4xq4FOQAJgCDwV2CPKV8tZAJcAjMMkUe1vX+U+SMhfAJEHasQIWmXNN3abzDwHUrgcRGmYcgKe0bxrblHEB4E/pndMazNpSZGcsZdBlYJcEL9Afo75molJyM2FxmPgmgPqlWNLGfwZGG6UiyEvLzHYDmoPkDDiNm9JR9uboiONcBXrpY1qmgs21x1QwyZcpvxt9NS09PlsPAAAAAElFTkSuQmCC&logoWidth=14" alt="Duplicate Space"></a> <br> <br> <h4>The default token is <span style="color:orange;">huggingface</span></h4> <h4>Duplicate the Space to run your own instance</h4> {% if login_available %} {# login_available means password-login is allowed. Show the form. #} <div class="row"> <div class="navbar col-sm-8"> <div class="navbar-inner"> <div class="container"> <div class="center-nav"> <form action="{{base_url}}login?next={{next}}" method="post" class="navbar-form pull-left"> {{ xsrf_form_html() | safe }} {% if token_available %} <label for="password_input"><strong>{% trans %}Token:{% endtrans %}</strong></label> {% else %} <label for="password_input"><strong>{% trans %}Password:{% endtrans %}</strong></label> {% endif %} <input type="password" name="password" id="password_input" class="form-control"> <button type="submit" class="btn btn-default" id="login_submit">{% trans %}Log in{% endtrans %}</button> </form> </div> </div> </div> </div> </div> {% else %} <p>{% trans %}No login available, you shouldn't be seeing this page.{% endtrans %}</p> {% endif %} <img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/spark-ex-min.png" alt="Spark on Hugging Face example Python code" style="width: 100%; margin-bottom: 40px; border-radius: 5px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; border: 1rem solid white;"> <p>This template was created by <a href="https://twitter.com/camenduru" target="_blank" >camenduru</a> and <a href="https://huggingface.co/nateraw" target="_blank" >nateraw</a>, with contributions of <a href="https://huggingface.co/osanseviero" target="_blank" >osanseviero</a>, <a href="https://huggingface.co/azzr" target="_blank" >azzr</a> and <a href="https://huggingface.co/lhoestq" target="_blank">lhoestq</a></p> {% if message %} <div class="row"> {% for key in message %} <div class="message {{key}}"> {{message[key]}} </div> {% endfor %} </div> {% endif %} {% if token_available %} {% block token_message %} {% endblock token_message %} {% endif %} </div> {% endblock %} {% block script %} {% endblock %}