wzkariampuzha commited on
Commit
98ac1da
1 Parent(s): 0ea6b8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -4,7 +4,7 @@ nltk.download('punkt')
4
  import pandas as pd
5
  import classify_abs
6
  import extract_abs
7
- pd.set_option('display.max_colwidth', None)
8
  import streamlit as st
9
  st.set_page_config(layout="wide")
10
  import spacy
@@ -14,8 +14,7 @@ import plotly.graph_objects as go
14
 
15
  #### LOGO ####
16
  st.markdown('''<img src="https://huggingface.co/spaces/ncats/EpiPipeline4GARD/raw/main/ncats.svg" alt="National Center for Advancing Translational Sciences Logo" width=800>''',unsafe_allow_html=True)
17
- #st.markdown('''<img src="https://huggingface.co/spaces/ncats/EpiPipeline4GARD/resolve/main/NCATS_logo.png" alt="National Center for Advancing Translational Sciences Logo" width=800>''',unsafe_allow_html=True)
18
- #st.markdown('''<img src="https://huggingface.co/spaces/ncats/EpiPipeline4GARD/raw/main/NCATS_logo.svg" alt="National Center for Advancing Translational Sciences Logo" width="800" height="300">''',unsafe_allow_html=True)
19
  st.markdown('''<img src="https://huggingface.co/spaces/ncats/EpiPipeline4GARD/resolve/main/Logo_GARD_fullres.png" alt="NIH Genetic and Rare Diseases Information Center Logo" width=800>''',unsafe_allow_html=True)
20
  #st.markdown("![National Center for Advancing Translational Sciences (NCATS) Logo](https://huggingface.co/spaces/ncats/EpiPipeline4GARD/resolve/main/NCATS_logo.png)")
21
 
 
4
  import pandas as pd
5
  import classify_abs
6
  import extract_abs
7
+ #pd.set_option('display.max_colwidth', None)
8
  import streamlit as st
9
  st.set_page_config(layout="wide")
10
  import spacy
 
14
 
15
  #### LOGO ####
16
  st.markdown('''<img src="https://huggingface.co/spaces/ncats/EpiPipeline4GARD/raw/main/ncats.svg" alt="National Center for Advancing Translational Sciences Logo" width=800>''',unsafe_allow_html=True)
17
+ st.markdown("")
 
18
  st.markdown('''<img src="https://huggingface.co/spaces/ncats/EpiPipeline4GARD/resolve/main/Logo_GARD_fullres.png" alt="NIH Genetic and Rare Diseases Information Center Logo" width=800>''',unsafe_allow_html=True)
19
  #st.markdown("![National Center for Advancing Translational Sciences (NCATS) Logo](https://huggingface.co/spaces/ncats/EpiPipeline4GARD/resolve/main/NCATS_logo.png)")
20