Spaces:
Running
Running
Sathwikchowdary
commited on
Commit
•
4688a58
1
Parent(s):
8c93fbb
Update pages/info_of_CSV.py
Browse files- pages/info_of_CSV.py +60 -7
pages/info_of_CSV.py
CHANGED
@@ -50,21 +50,74 @@ st.markdown("4. Large File Size")
|
|
50 |
|
51 |
st.markdown("<h2 style='text-align: left; color: Black;'>📈How to overcome these errors/issues.</h2>", unsafe_allow_html=True)
|
52 |
st.markdown("<h3 style='text-align: left; color: Black;'>📈Parse error</h3>", unsafe_allow_html=True)
|
53 |
-
i
|
54 |
-
|
55 |
-
# Add Jupyter Notebook link at the end
|
56 |
st.markdown(
|
57 |
-
"<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
unsafe_allow_html=True
|
59 |
)
|
|
|
60 |
st.markdown(
|
61 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
62 |
-
"
|
63 |
"</p>",
|
64 |
unsafe_allow_html=True
|
65 |
)
|
66 |
-
|
67 |
st.markdown(
|
68 |
-
"<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
unsafe_allow_html=True
|
70 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
st.markdown("<h2 style='text-align: left; color: Black;'>📈How to overcome these errors/issues.</h2>", unsafe_allow_html=True)
|
52 |
st.markdown("<h3 style='text-align: left; color: Black;'>📈Parse error</h3>", unsafe_allow_html=True)
|
|
|
|
|
|
|
53 |
st.markdown(
|
54 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
55 |
+
"This occurs when a program fails to interpret or process data correctly, often due to syntax issues or incompatible file formats."
|
56 |
+
"</p>",
|
57 |
+
unsafe_allow_html=True
|
58 |
+
)
|
59 |
+
st.markdown("Common Causes:")
|
60 |
+
st.markdown(
|
61 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
62 |
+
"Invalid or incorrect syntax in the input data."
|
63 |
+
"Missing or unexpected tokens in code or configuration files."
|
64 |
+
"File format mismatch."
|
65 |
+
"</p>",
|
66 |
unsafe_allow_html=True
|
67 |
)
|
68 |
+
st.markdown("<h3 style='text-align: left; color: Black;'>📈Unicode Decode error</h3>", unsafe_allow_html=True)
|
69 |
st.markdown(
|
70 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
71 |
+
"This occurs when a program fails to interpret a sequence of bytes as valid Unicode text."
|
72 |
"</p>",
|
73 |
unsafe_allow_html=True
|
74 |
)
|
75 |
+
st.markdown("Common Causes:")
|
76 |
st.markdown(
|
77 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
78 |
+
"Trying to decode a file or string with the wrong encoding (e.g., reading UTF-8 data as ASCII)."
|
79 |
+
"Non-UTF-8 characters in the input data."
|
80 |
+
"Corrupted or binary files being read as text."
|
81 |
+
"</p>",
|
82 |
+
unsafe_allow_html=True
|
83 |
+
)
|
84 |
+
st.markdown("<h3 style='text-align: left; color: Black;'>📈 Out of Memory error</h3>", unsafe_allow_html=True)
|
85 |
+
st.markdown(
|
86 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
87 |
+
"This occurs when a program tries to allocate more memory than is available."
|
88 |
+
"</p>",
|
89 |
unsafe_allow_html=True
|
90 |
)
|
91 |
+
st.markdown("Common Causes:")
|
92 |
+
st.markdown(
|
93 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
94 |
+
"Processing large datasets or files without sufficient memory."
|
95 |
+
"Infinite loops or memory leaks."
|
96 |
+
"Excessive recursive function calls."
|
97 |
+
"</p>",
|
98 |
+
unsafe_allow_html=True
|
99 |
+
)
|
100 |
+
st.markdown("<h3 style='text-align: left; color: Black;'>📈 Large File Size error</h3>", unsafe_allow_html=True)
|
101 |
+
st.markdown(
|
102 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
103 |
+
"Handling or processing large files can cause performance or storage issues."
|
104 |
+
"</p>",
|
105 |
+
unsafe_allow_html=True
|
106 |
+
)
|
107 |
+
st.markdown("Common Causes:")
|
108 |
+
st.markdown(
|
109 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
110 |
+
"Slow read/write operations."
|
111 |
+
"Difficulty loading the file into memory."
|
112 |
+
"Limited storage space for saving files."
|
113 |
+
"</p>",
|
114 |
+
unsafe_allow_html=True
|
115 |
+
)
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
+
|
121 |
+
|
122 |
+
|
123 |
+
|