File size: 316 Bytes
8931efc e544a6c 8931efc e544a6c 773ed41 8931efc e544a6c 8931efc |
1 2 3 4 5 6 7 8 9 10 11 12 |
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() |