Tobias Windisch
Results
2
issues of
Tobias Windisch
The following code ``` from keras.layers import ( Input, Dense, ) from keras.models import Model from ann_visualizer.visualize import ann_viz layer_in = Input(shape=(10, )) layer_out = Dense(2, activation="linear")(layer_in) model = Model(inputs=layer_in,...
What's the preferred way to model structural zeros in a `Formula`? Assume the following toy example: I have a $3\times 2$ contingency table that looks like this | | e...
enhancement
question