()
| 189 | } |
| 190 | |
| 191 | export function disableTrainButton() { |
| 192 | document.getElementById('train-model-using-fit-dataset') |
| 193 | .setAttribute('disabled', true); |
| 194 | } |
| 195 | |
| 196 | export function enableStopButton() { |
| 197 | document.getElementById('stop-training').removeAttribute('disabled'); |
nothing calls this directly
no outgoing calls
no test coverage detected