Tivadar Danka

Results 77 comments of Tivadar Danka

Hi! Unfortunately, I have zero experience with Dash and I haven't thought about JSON serialization of modAL objects. Serialization is possible in my opinion. What kind of machine learning model...

After thinking about this a while, another soultion, and I believe this is the proper one, is not to serialize the model and pass it around, but set up a...

Thanks, you are completely right! I have added `dtype=None` arguments for all check_X_y calls, will add a test soon to ensure that working with custom data types won't break in...

Hi! I am glad that you have found modAL useful! :) You raise a valid point. During the development, this was a deliberate design decision I have made. To elaborate,...

Hi! The `.score` method is just an interface for the `.score` method of the classifier, so I am not sure what is the problem. Which estimator do you use?

Hi! The problem is going to be the first `Linear` layer. You have to calculate by the shape of `self.convs(x)`, then multiply these together and use them in the definition...

If I remember correctly, this exact network was used in the original Keras MNIST example, so I used it here for simplicity.

@talolard Hi! I am really sorry, but I forgot to review the PR :( In the last month I was working crazy hard to launch a new startup and a...

Hi! As far as I know, ranked batch-mode learning officially doesn't support regression, but after taking a quick look at how it is done, it should work with regression as...

Thanks for the report, I am investigating this!