File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 5050 < div id ="sim-container "> </ div >
5151 < div id ="controls-box ">
5252 < div class ="controls-container ">
53- < span > Policy :</ span >
53+ < span > Checkpoint :</ span >
5454 < span id ="checkpoint-name "> default</ span >
5555 < button id ="default-checkpoint-btn "> Default</ button >
5656 </ div >
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ async function load_model(checkpoint){
4545 }
4646 localStorage . setItem ( "checkpoint" , arrayBufferToBase64 ( checkpoint ) )
4747 const model = await rlt . load ( checkpoint )
48- document . getElementById ( "checkpoint-name" ) . textContent = model . checkpoint_name
48+ const checkpoint_span = document . getElementById ( "checkpoint-name" )
49+ checkpoint_span . textContent = model . checkpoint_name
50+ checkpoint_span . title = model . description ( )
4951 document . getElementById ( "observations" ) . value = model . meta . environment . observation
5052 document . getElementById ( "observations" ) . observation = model . meta . environment . observation
5153 return model
You can’t perform that action at this time.
0 commit comments