Bjarne Thorsted

Results 38 comments of Bjarne Thorsted

Not sure if this is relevant, but adding support for exporting parcoords to vector graphics would also be greatly appreciated.

My parameter dictionary is: ```python p = { "sigma_noise": [0, 0.01], "nb_filters_0": [16, 32, 64], "loss_func": ["cat_CE", "tversky_loss", "cat_FL"], "arch": ["U-Net"], "act": [Swish, ReLU], } ``` And I'm running a...

UPDATE: I did a "quick" test, where I ran each model for only 50 epochs and I got a `ResourceExhaustedError` again in round 4 during the 5th epoch, and I...

Of course! See below. I also added the output leading up, because I think it gives some idea of how the exception occurs. ![oom-crash](https://user-images.githubusercontent.com/885853/79864656-16644280-83da-11ea-8289-da780a77ca7a.png) ```python --------------------------------------------------------------------------- ResourceExhaustedError Traceback (most recent...

I just check out your link and it does not appear to describe the issue I am having, though at first it did look similar. I am running with an...

I would love to, but that option crashes my python kernel, so it's not really possible. This is a long-standing Keras bug, I believe.

Sure! I use custom `keras.utils.Sequence` data generators, so I have two dummy variables for my scan command as shown below: ```python dummy_x = np.empty((1, BATCH_SIZE, 208, 208)) dummy_y = np.empty((1,...

So running talos 1.0 had the same outcome, but with a slightly different error message at the end: ```python 14% |█▌ | 5/36 [1:52:10

Do you mean a simple loop like this: ```python model = create_model(*args, **kwargs) for _ in range(6): model.compile(**kwargs) model.fit(train_generator, epochs=10) ``` Or should I try to add some sort of...

Is the above code example simple enough or can it be even simpler? EDIT: BTW, can you maybe elaborate a bit on what was changed in talos 1.0? I tried...