Update prediction.py
Browse files- 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:
|