Skip to content

Commit

Permalink
Disable profiling (Pydantic BUG)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamaziz authored Jul 17, 2023
1 parent 7d0af5b commit e79d6ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pandas as pd # TODO: import modin.pandas as pd
import streamlit as st
from annoy import AnnoyIndex
from pandas_profiling import ProfileReport
#from pandas_profiling import ProfileReport
from pandasql import sqldf
from pydataset import data
from pyvis.network import Network
Expand Down Expand Up @@ -304,8 +304,8 @@ def __init__(self, data: pd.DataFrame) -> None:
Helper.tensorflow_projector_frame()
if st2.checkbox("UPLOAD PREVIOUS RESULTS"):
SimilaritySearch(df_=df, external_files=True, st_key="upload")
with st.expander("DATA PROFILING REPORT"):
DataProfiler(df)
#with st.expander("DATA PROFILING REPORT"):
# DataProfiler(df)


class NetworkGraphizer:
Expand Down

0 comments on commit e79d6ec

Please sign in to comment.