vickybelario commited on
Commit
5abedd0
·
verified ·
1 Parent(s): e2801ae

Update prediction.py

Browse files
Files changed (1) hide show
  1. prediction.py +2 -2
prediction.py CHANGED
@@ -95,11 +95,11 @@ def run():
95
  col14, col15, col16 = st.columns(3)
96
 
97
  with col14:
98
- ram_options = [1, 2, 4, 6, 8, 12, 16, 24, 32, 64]
99
  ram = st.selectbox('RAM (GB)', ram_options, index=ram_options.index(0))
100
 
101
  with col15:
102
- primary_storage_options = [8, 16, 32, 64, 128, 256, 500, 512, 1024, 2048, 4096]
103
  primary_storage = st.selectbox('Primary Storage (GB)', primary_storage_options, index=primary_storage_options.index(0))
104
 
105
  with col16:
 
95
  col14, col15, col16 = st.columns(3)
96
 
97
  with col14:
98
+ ram_options = [0,1, 2, 4, 6, 8, 12, 16, 24, 32, 64]
99
  ram = st.selectbox('RAM (GB)', ram_options, index=ram_options.index(0))
100
 
101
  with col15:
102
+ primary_storage_options = [0,8, 16, 32, 64, 128, 256, 500, 512, 1024, 2048, 4096]
103
  primary_storage = st.selectbox('Primary Storage (GB)', primary_storage_options, index=primary_storage_options.index(0))
104
 
105
  with col16: