Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
67 views

I am currently trying to set up a Bayesian Neural Net. Hereby, I came across a strange thing. When compiling my model with the metric keras.metrics.RootMeanSquaredError() and then letting model....
Stine's user avatar
  • 21
0 votes
0 answers
104 views

I have a CNN model that classifies waveforms (of the shape (601,3), where 601 is the number of timesteps while 3 is the number of channels) into noise or signal. It is as follows: # imports import ...
Spaceman1911's user avatar
0 votes
1 answer
117 views

I am trying to use Bayesopt for a very simple problem and finding the minimum value of a function fun = @(x) (x - 3)^2 + 5; xvar = optimizableVariable('x',[-10,10]); % Modify the range: xvar.Range = [...
user78333's user avatar
0 votes
1 answer
145 views

i was training a mlp through variational inference for a regression task on a small dataset with 1 feature. The nn works and the training loss goes down but the validation loss has random spikes ...
Alucard's user avatar
  • 197
0 votes
1 answer
2k views

I am trying to learn a multivariate normal covariance matrix (Sigma, ∑) using some observations. The way I went at it is by using pytorch.distributions.MultivariateNormal: import torch from torch....
EyalItskovits's user avatar
0 votes
1 answer
225 views

I'm trying to save the tensorflow model bellow: Model: "sequential_117" _________________________________________________________________ Layer (type) Output Shape ...
maxlamenace's user avatar
1 vote
2 answers
5k views

We are looking for a close pythonian implementation of the r library bsts. To be precise, I'm looking for something that allows me to emulate the functionality of 'add_regressor' from fbprophet. Have ...
kriti's user avatar
  • 21
5 votes
1 answer
2k views

I have a very large dataset (7 million rows, 54 features) that I would like to fit a regression model to using XGBoost. To train the best possible model, I want to use BayesSearchCV from scikit-...
Electronic Ant's user avatar
2 votes
0 answers
498 views

Default Conv2DFlipout layer looks like this tfp.layers.Convolution2DFlipout( filters, kernel_size, strides=(1, 1), padding='valid', data_format='channels_last', dilation_rate=(1, 1), ...
uselessrunner 's user avatar
1 vote
1 answer
193 views

I would like to calculate the gradients on tensorflow_probability layers using tf.GradientTape(). This is rather simple using a normal, e.g., Dense layer inp = tf.random.normal((2,5)) layer = tf.keras....
jlapin's user avatar
  • 11