financIA / pages /2_💡entrenamiento_model.py
Frorozcol's picture
Addes the inferencia
773ed41
raw history blame
No virus
316 Bytes
import os
import streamlit as st
import streamlit.components.v1 as components
def main():
st.title("Entretenimiento del modelo")
with open('html/0-2 Train_model.html', 'r', encoding='utf-8') as file:
markdown_text = file.read()
components.html(markdown_text,height=1000,scrolling=True)
main()