File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 283283 " You can access TensorBoard locally at http://localhost:6006"
284284 ]
285285 },
286+ {
287+ "cell_type" : " markdown" ,
288+ "metadata" : {},
289+ "source" : [
290+ " ### Analyze the experiments"
291+ ]
292+ },
293+ {
294+ "cell_type" : " code" ,
295+ "execution_count" : null ,
296+ "metadata" : {},
297+ "outputs" : [],
298+ "source" : [
299+ " search_expression = {\n " ,
300+ " \" Filters\" :[\n " ,
301+ " {\n " ,
302+ " \" Name\" : \" DisplayName\" ,\n " ,
303+ " \" Operator\" : \" Equals\" ,\n " ,
304+ " \" Value\" : \" Training\" ,\n " ,
305+ " }\n " ,
306+ " ],\n " ,
307+ " }"
308+ ]
309+ },
310+ {
311+ "cell_type" : " code" ,
312+ "execution_count" : null ,
313+ "metadata" : {},
314+ "outputs" : [],
315+ "source" : [
316+ " from sagemaker.analytics import ExperimentAnalytics\n " ,
317+ " trial_component_analytics = ExperimentAnalytics(\n " ,
318+ " sagemaker_session=sagemaker_session, \n " ,
319+ " experiment_name=cifar10_experiment.experiment_name,\n " ,
320+ " search_expression=search_expression\n " ,
321+ " )\n " ,
322+ " \n " ,
323+ " table = trial_component_analytics.dataframe(force_refresh=True)\n " ,
324+ " display(table)"
325+ ]
326+ },
286327 {
287328 "cell_type" : " markdown" ,
288329 "metadata" : {},
You can’t perform that action at this time.
0 commit comments