wenjun99 commited on
Commit
5e9dfa6
·
verified ·
1 Parent(s): 1206377

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -385,7 +385,7 @@ with tab5:
385
  st.header("Decode Binary Labels to String")
386
 
387
  # ========== 32-BIT DECODING ==========
388
- st.subheader("🔘 Option 1: 32-bit Binary per Row")
389
  st.write("Upload CSV with 32 columns (0 or 1), no headers, from EF Binary format.")
390
  binary32_file = st.file_uploader("Upload 32-bit Binary CSV", type=["csv"], key="binary_32")
391
 
@@ -416,7 +416,7 @@ with tab5:
416
  st.markdown("---")
417
 
418
  # ========== 31-BIT DECODING ==========
419
- st.subheader("🔘 Option 2: 31-bit Binary Grouped per Row")
420
  st.write("Upload CSV with 31 columns (no headers), each row = one 6-bit ASCII character group.")
421
 
422
  binary31_file = st.file_uploader("Upload 31-bit Group CSV", type=["csv"], key="binary_31")
 
385
  st.header("Decode Binary Labels to String")
386
 
387
  # ========== 32-BIT DECODING ==========
388
+ st.subheader("32-bit Binary per Row")
389
  st.write("Upload CSV with 32 columns (0 or 1), no headers, from EF Binary format.")
390
  binary32_file = st.file_uploader("Upload 32-bit Binary CSV", type=["csv"], key="binary_32")
391
 
 
416
  st.markdown("---")
417
 
418
  # ========== 31-BIT DECODING ==========
419
+ st.subheader("31-bit Binary Grouped per Row")
420
  st.write("Upload CSV with 31 columns (no headers), each row = one 6-bit ASCII character group.")
421
 
422
  binary31_file = st.file_uploader("Upload 31-bit Group CSV", type=["csv"], key="binary_31")