Spaces:
Sleeping
Sleeping
File size: 1,838 Bytes
01a0fbf cca1391 01a0fbf adb33e8 01a0fbf adb33e8 cca1391 adb33e8 c1cac25 adb33e8 01a0fbf 23bc4d5 |
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 30 31 32 |
import streamlit as st
st.set_page_config("Home")
## logo
with st.sidebar:
st.markdown("""<div style='text-align: left; margin-top:-200px;margin-left:-40px;'>
<img src="https://affine.ai/wp-content/uploads/2023/05/Affine-Logo.svg" alt="logo" width="300" height="60">
</div>""", unsafe_allow_html=True)
st.title("IntelliForecast")
st.header("Description")
st.write("Affine Time Series Toolbox is a powerful and versatile tool designed to handle multiple time series data. It excels in forecasting demand with a high level of granularity, allowing for precise predictions at the store and product level. By leveraging this tool, businesses can minimize the need for constant model maintenance and reduce resource demands, all while ensuring accurate and reliable demand forecasts. Its wide-ranging capabilities make it suitable for application in various domains, from e-commerce to the energy sector.")
st.header("Features")
st.write("1. Efficient and Scalable Demand Forecasting")
st.write("2. Reducing Model Maintenance Efforts and Resource Requirements for Granular-Level Forecasting")
st.write("3. The unique aspect of this tool lies in its pre-trained models, eliminating the need to train individual models for each store and product. Instead, the models are trained on groups of stores and products, streamlining the process and saving valuable time and resources.")
st.markdown("""<div style='text-align: center; margin-bottom:-50px'>
<img src="https://acis.affineanalytics.co.in/assets/images/logo.svg" alt="logo" width="600" height="100 ">
</div>""", unsafe_allow_html=True)
hide_streamlit_style = """
<style>
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
</style>
"""
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|