Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import subprocess
|
2 |
+
import streamlit as st
|
3 |
+
import os
|
4 |
+
import numpy as np
|
5 |
+
import torchaudio
|
6 |
+
import tensorflow as tf
|
7 |
+
from tensorflow.keras.models import load_model
|
8 |
+
import tensorflow_hub as hub
|
9 |
+
import time
|
10 |
+
import tempfile
|
11 |
+
import streamlit.components.v1 as components
|
12 |
+
st.markdown('<span style="color:black; font-size: 48px; font-weight: bold;">Neu</span> <span style="color:black; font-size: 48px; font-weight: bold;">RO:</span> <span style="color:black; font-size: 48px; font-weight: bold;">An Application for Code-Switched Autism Detection in Children</span>', unsafe_allow_html=True)
|
13 |
+
|