Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • Dreaming in Cubes | Towards Data Science
    • Onda tiny house flips layout to fit three bedrooms and two bathrooms
    • Best Meta Glasses (2026): Ray-Ban, Oakley, AR
    • At the Beijing half-marathon, several humanoid robots beat human winners by 10+ minutes; a robot made by Honor beat the human world record held by Jacob Kiplimo (Reuters)
    • 1000xResist Studio’s Next Indie Game Asks: Can You Convince an AI It Isn’t Human?
    • Efficient hybrid minivan delivers MPG
    • How Can Astronauts Tell How Fast They’re Going?
    • A look at the AI nonprofit METR, whose time-horizon metrics are used by AI researchers and Wall Street investors to track the rapid development of AI systems (Kevin Roose/New York Times)
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Sunday, April 19
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»Showcasing Your Work on HuggingFace Spaces
    Artificial Intelligence

    Showcasing Your Work on HuggingFace Spaces

    Editor Times FeaturedBy Editor Times FeaturedSeptember 5, 2025No Comments9 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    , it’s solely pure to wish to share it. Some may keep in mind when Heroku’s free tier made it attainable to deploy apps immediately with virtually no effort. That period is lengthy gone, and the choices for showcasing easy ML apps have grow to be rather more restricted.

    Why trouble showcasing an app within the first place? The explanations are lots. Placing your work on the market means that you can collect actual suggestions from individuals who truly strive it, which is way extra worthwhile than maintaining it to your self. It additionally offers you the prospect to construct a portfolio that speaks louder than any CV. Sharing your app additionally opens doorways for collaboration, helps you check whether or not your concepts resolve actual issues, and even creates alternatives you wouldn’t anticipate. Showcasing your work is about studying, bettering, and constructing credibility.

    Should you’re trying to put your work on-line or construct a small undertaking portfolio, Hugging Face Areas is likely one of the greatest locations to start out. It’s free, easy to make use of, and allows you to deploy machine studying apps. You’ll be able to spin up any type of demo you need and share it with others in minutes.

    There’s already an enormous assortment of apps working on Areas, protecting every part from textual content and picture fashions to full interactive instruments. Looking via them at huggingface.co/spaces offers you a way of what’s attainable and loads of inspiration in your personal tasks.

    HuggingFace Areas of the Week – Picture by Writer

    On this weblog publish, I’ll stroll you thru a brief tutorial on methods to deploy your personal Hugging Face Area. The aim is to point out simply how easy it may be to take a undertaking out of your native machine and make it accessible to anybody on-line.


    Creating your Account

    First, it’s essential create an account on Hugging Face:

    Profile on HuggingFace – Picture by Writer

    Alright, now let’s head over to Hugging Face Areas. That is the place every part occurs and also you’ll arrange your setting, select the framework you wish to work with, and begin constructing the app you wish to share.

    Head over to Areas on the menu:

    Hugging Face Menu – Picture by Writer

    Right here you may discover numerous apps constructed by different customers – and that is additionally the place our personal app will seem as soon as it’s deployed. For now, although, we’ll step away from Hugging Face, since we nonetheless have to construct the app we plan to deploy.


    Creating the app Domestically

    On my pc, I’ll begin by organising a neighborhood model of a easy Streamlit app that visualizes monetary information for any inventory. To maintain issues easy, your entire app will reside in a single file known as app.py.

    This minimal setup makes it straightforward to observe alongside and deal with the necessities earlier than we transfer on to deploying it.

    import streamlit as st
    import yfinance as yf
    import plotly.specific as px
    import pandas as pd
    
    st.set_page_config(page_title="Firm Financials", format="large")
    st.title("Firm Monetary Dashboard")
    
    ticker_input = st.text_input("Enter Inventory Ticker")
    
    # Selecting monetary report sort
    report_type = st.selectbox("Choose Monetary Report", 
                               ["Balance Sheet", "Income Statement", "Cash Flow"])
    
    if ticker_input:
        strive:
            ticker = yf.Ticker(ticker_input)
    
            if report_type == "Steadiness Sheet":
                df = ticker.balance_sheet
            elif report_type == "Earnings Assertion":
                df = ticker.financials
            else:
                df = ticker.cashflow
    
            if df.empty:
                st.warning("No monetary information obtainable for this choice.")
            else:
                st.subheader(f"{report_type} for {ticker_input.higher()}")
                st.dataframe(df, use_container_width=True)
    
                df_plot = pd.DataFrame(
                    df.T,
                    pd.to_datetime(df.T.index)
                )
                metric = st.selectbox("Choose Metric to Visualize",
                                      df_plot.columns)
    
                if metric:
                    fig = px.line(
                        df_plot,
                        x=df_plot.index,
                        y=metric,
                        title=f"{metric}",
                        markers=True,
                        labels={metric: metric, "index": "Date"}
                    )
                    st.plotly_chart(fig, use_container_width=True)
    
        besides Exception as e:
            st.error(f"Error: {e}")

    Let’s see this streamlit app regionally:

    Firm Monetary Dashboard App – Picture by Writer

    With the app working, I can sort within the title or ticker of any inventory and immediately pull up its financials. For instance, if I enter Amazon’s ticker image, AMZN, the app will show the corporate’s financials in an easy-to-read format.

    This makes it easy to discover key figures with out digging via lengthy monetary experiences or leaping between completely different web sites.

    Amazon Earnings Assertion within the App – Picture by Writer

    I’ve additionally ready the app to attract a line plot for any metric I select. Should you scroll a bit down, you’ll see the next:

    EBITDA Plot of Amazon Financials – Picture by Writer

    You may be pondering, “This appears fascinating – I’d prefer to strive it out myself. Can I?” The reply, for now, is not any.

    The app is just working on my pc, which implies you’d want entry to my PC to make use of it. That’s why the tackle exhibits up as localhost seen solely to me:

    App working on my pc – Picture by Writer

    And that is the place Hugging Face will assist us!


    Creating the HuggingFace Area

    Now let’s go to huggingface.co/spaces and click on on “New Area” to get began.

    Areas Listing – Picture by Writer

    After clicking the “New Area” button, we are able to start organising the setting that may host our app.

    Area Configuration – Picture by Writer

    Right here, I’ll title the undertaking financialexplore, add a brief description, and select a license (on this case, Apache 2.0):

    Area Configuration – Picture by Writer

    Lastly, because the app is constructed with Streamlit, I have to ensure that’s configured correctly. Within the setup display, I’ll chooseDocker as the bottom after which select Streamlit because the framework. This step tells Hugging Face methods to run the app so every part works easily as soon as it’s deployed.

    Selecting Streamlit app within the Area – Picture by Writer

    Should you’re utilizing a distinct framework (like Shiny), you’ll want to choose it right here. That means, the Docker picture created in your Area will embrace the correct packages and libraries in your app to run accurately.
    With regards to computing, I’ll select the essential model. Needless to say that is the one free {hardware} in huggingface areas, in case you want extra computing energy chances are you’ll incur some prices.

    Configuring {Hardware} and Visibility – Picture by Writer

    I’ll preserve my Area public so I can share it right here on this weblog publish. With all of the settings in place, I simply hit “Create Area”.

    Hugging Face then takes over and begins constructing the setting, getting every part prepared for the app to run.

    Constructing the HuggingFace Area – Picture by Writer

    As soon as my Hugging Face Area is created, I can open it and see the default Streamlit template working. This template is an easy place to begin, however it’s helpful as a result of it exhibits that the setting is working as anticipated.

    Default Streamlit App – Picture by Writer

    With the Area prepared, it’s now time to deploy our app to it.


    Deploying our App on the Area

    I can add the information manually, however that might rapidly get cumbersome and error susceptible. A greater choice is to deal with the Area like a Git repository, which implies I can clone it straight to my pc with a single command:

    git clone https://huggingface.co/areas/ivopbernardo/financialexplore

    By cloning the Area regionally, I get all of the information on my machine and might work with them identical to every other undertaking. From there, I merely drop in my app.py and every other information I would like.

    Repo cloned on my Native Atmosphere – Picture by Writer

    Now it’s time to deliver every part collectively and get the app able to deploy. First, we have to replace a few information:

    – necessities.txt: right here I’ll add the additional libraries my app wants, like plotly and yfinance.
    – streamlit_app.py: that is the principle entry level. To maintain issues easy, I’ll simply copy the code from my app.py into src/streamlit_app.py. (Should you’d somewhat preserve your personal app.py, you’d want to regulate the Docker config accordingly to launch this file).

    With these modifications in place, we’re prepared! I’ll commit on to the most important department, however you may arrange your personal versioning workflow in case you want.

    There’s one catch, although: your pc received’t but have permission to push code to Hugging Face Areas. To repair this, you’ll want an entry token. Simply head over to huggingface.co/settings/tokens, click on “New Token,” and create one. That token will permit you to authenticate and push your code to the Area.

    I’ll name the token personalpc and provides learn/write permissions to all my repos on my huggingface account:

    Creating Entry Token – Picture by Writer

    When you create the token, you’ll see it listed in your account. Mine’s hidden beneath for safety causes. Ensure to repeat it straight away and retailer it someplace protected. I like to recommend you employ a password supervisor corresponding to 1Password, however any safe password supervisor will do. You’ll want this information later to attach your native setup to Hugging Face.

    Entry Token – Picture by Writer

    While you push your modifications to the repo, Git Credential Supervisor will immediate you for a username and password.

    Notice: This immediate solely seems if Git is put in in your machine itself, not simply via the Visible Studio Code extension.

    Git Credential Supervisor – Picture by Writer

    Enter your GitHub username, and for the password, paste the token you simply created.

    Voilá! After committing, the modifications at the moment are reside in your repo. From this level on, you may work with it identical to you’d with every other Git repository.


    Viewing our app reside

    As proven beneath, our code has simply been up to date:

    Code Up to date with our Commit – Picture by Writer

    However even higher, let’s head over to the App menu:

    App Menu – Picture by Writer

    And identical to that, the app is reside, working on-line precisely because it did on my pc.

    Streamlit app is reside! – Picture by Writer

    Observe this link to see it live.

    If you wish to showcase your work or share your concepts, Hugging Face Areas is likely one of the best and best methods to do it. You can begin small with a single file, or construct one thing extra bold. The platform takes care of the internet hosting, so you may deal with constructing and sharing.

    Don’t be afraid to experiment and mess around. Even a easy demo can grow to be the beginning of your personal undertaking portfolio. Be at liberty to share your apps within the feedback of this publish!



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    Dreaming in Cubes | Towards Data Science

    April 19, 2026

    AI Agents Need Their Own Desk, and Git Worktrees Give Them One

    April 18, 2026

    Your RAG System Retrieves the Right Data — But Still Produces Wrong Answers. Here’s Why (and How to Fix It).

    April 18, 2026

    Europe Warns of a Next-Gen Cyber Threat

    April 18, 2026

    How to Learn Python for Data Science Fast in 2026 (Without Wasting Time)

    April 18, 2026

    A Practical Guide to Memory for Autonomous LLM Agents

    April 17, 2026

    Comments are closed.

    Editors Picks

    Dreaming in Cubes | Towards Data Science

    April 19, 2026

    Onda tiny house flips layout to fit three bedrooms and two bathrooms

    April 19, 2026

    Best Meta Glasses (2026): Ray-Ban, Oakley, AR

    April 19, 2026

    At the Beijing half-marathon, several humanoid robots beat human winners by 10+ minutes; a robot made by Honor beat the human world record held by Jacob Kiplimo (Reuters)

    April 19, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    Meta investigated over AI having ‘sensual’ chats with children

    August 18, 2025

    Can smelling a game make it more immersive?

    February 1, 2025

    Battery-free drone Soars on solar alone

    November 9, 2025
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.