Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import tensorflow as tf
|
2 |
+
from tensorflow import keras
|
3 |
+
import numpy as np
|
4 |
+
import matplotlib.pyplot as plt
|
5 |
+
import pandas as pd
|
6 |
+
from sklearn.model_selection import train_test_split
|
7 |
+
from sklearn import preprocessing
|
8 |
+
import seaborn as sns
|
9 |
+
from sklearn.preprocessing import LabelEncoder
|
10 |
+
import streamlit as st
|
11 |
+
|
12 |
+
st.title("Rouge Component Model")
|