You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:exclamation: Keep in mind that If you change any of the `--config_path`,`--model_store`,`--metrics_location`,`--log_location` options while there is a torchserver already running before starting torch-dashboard they won't come into effect until you stop&start torchserve.
28
+
:exclamation: Keep in mind that If you change any of the `--config_path`,`--model_store`,`--metrics_location`,`--log_location` options while there is a torchserver already running before starting torch-dashboard they won't come into effect until you stop&start torchserve. These options are used instead of their respective environment variables `TS_CONFIG_FILE, METRICS_LOCATION, LOG_LOCATION`.
26
29
27
30
OR
28
31
```bash
@@ -56,6 +59,8 @@ If the server doesn't start for some reason check if your ports are already in u
56
59
57
60
[31-may-2021] Update to v0.4 (Add workflow API) Refactor out streamlit from api.py.
58
61
62
+
[30-nov-2021] Update to v0.5, adding support for [encrypted model serving](https://github.com/pytorch/serve/blob/v0.5.0/docs/management_api.md#encrypted-model-serving) (not tested). Update streamlit to v1+
63
+
59
64
# FAQs
60
65
-**Does torchserver keep running in the background?**
61
66
@@ -65,7 +70,7 @@ If the server doesn't start for some reason check if your ports are already in u
65
70
66
71
These environment variables are passed to the torchserve command:
is_encrypted=st.checkbox("SSE-KMS Encrypted", help="Refer to https://github.com/pytorch/serve/blob/v0.5.0/docs/management_api.md#encrypted-model-serving")
182
190
proceed=st.button("Register")
183
191
ifproceed:
184
192
ifmar_path!=default_key:
@@ -192,13 +200,14 @@ def get_model_store():
192
200
max_batch_delay=max_batch_delay,
193
201
initial_workers=initial_workers,
194
202
response_timeout=response_timeout,
203
+
is_encrypted=is_encrypted,
195
204
)
196
205
last_res()[0] =res
197
206
rerun()
198
207
else:
199
208
st.warning(":octagonal_sign: Fill the required fileds!")
200
209
201
-
withst.beta_expander(label="Remove a model", expanded=False):
210
+
withst.expander(label="Remove a model", expanded=False):
202
211
203
212
st.header("Remove a model")
204
213
model_name=st.selectbox(
@@ -221,7 +230,7 @@ def get_model_store():
221
230
else:
222
231
st.warning(":octagonal_sign: Pick a model & version!")
223
232
224
-
withst.beta_expander(label="Get model details", expanded=False):
233
+
withst.expander(label="Get model details", expanded=False):
0 commit comments