| 515 | } |
| 516 | |
| 517 | void _InspectorWindow::processNeuronContent(NeuronDescription& neuron) |
| 518 | { |
| 519 | if (ImGui::TreeNodeEx("Neural network", TreeNodeFlags)) { |
| 520 | AlienImGui::NeuronSelection( |
| 521 | AlienImGui::NeuronSelectionParameters().rightMargin(0), neuron.weights, neuron.biases, neuron.activationFunctions); |
| 522 | ImGui::TreePop(); |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | void _InspectorWindow::processConstructorContent(ConstructorDescription& constructor) |
| 527 | { |
nothing calls this directly
no test coverage detected