Addes the inferencia
Browse files
html/0-2 Train_model.html
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pages/{1_Analisis_exploratorio.py → 1_📊Analisis_exploratorio.py}
RENAMED
@@ -3,7 +3,7 @@ import streamlit as st
|
|
3 |
import streamlit.components.v1 as components
|
4 |
|
5 |
def main():
|
6 |
-
st.title("
|
7 |
with open('html/0-1 Pysentimiento.html', 'r', encoding='utf-8') as file:
|
8 |
markdown_text = file.read()
|
9 |
components.html(markdown_text,height=1000,scrolling=True)
|
|
|
3 |
import streamlit.components.v1 as components
|
4 |
|
5 |
def main():
|
6 |
+
st.title("Análisis exploratorio")
|
7 |
with open('html/0-1 Pysentimiento.html', 'r', encoding='utf-8') as file:
|
8 |
markdown_text = file.read()
|
9 |
components.html(markdown_text,height=1000,scrolling=True)
|
pages/2_💡entrenamiento_model.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import streamlit as st
|
3 |
+
import streamlit.components.v1 as components
|
4 |
+
|
5 |
+
def main():
|
6 |
+
st.title("Entretenimiento del modelo")
|
7 |
+
with open('html/0-2 Train_model.html', 'r', encoding='utf-8') as file:
|
8 |
+
markdown_text = file.read()
|
9 |
+
components.html(markdown_text,height=1000,scrolling=True)
|
10 |
+
|
11 |
+
|
12 |
+
main()
|
src/__pycache__/dataset.cpython-310.pyc
ADDED
Binary file (1.88 kB). View file
|
|