(unused?: any, returnString = true)
| 719 | */ |
| 720 | // tslint:disable-next-line:no-any |
| 721 | toJSON(unused?: any, returnString = true): string|PyJsonDict { |
| 722 | const modelConfig = convertTsToPythonic(this.updatedConfig()) as PyJsonDict; |
| 723 | return returnString ? JSON.stringify(modelConfig) : modelConfig; |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * Call the model on new inputs. |
nothing calls this directly
no test coverage detected
searching dependent graphs…