cyberbeat

Results 67 comments of cyberbeat

The problem is in the following framework7 code: ``` app.formFromData = function (form, formData) { form = $(form); if (form.length !== 1) return false; // Skip input types var skipTypes...

I have made a codepen example, but its pretty useless, because you have to inspect, that the button name-value pair will not be submitted: https://codepen.io/anon/pen/aWzYKr On a normal form (without...

This problem is still in v2. A fix should be simple I think: - if the form is submitted with a submit-button-click, then, if the button has a "name" attribute,...

Thanks for your detailled answer. I now already tried adding some features of previous node to the current one. But it is difficult, which information from how many adjacent data...

How would you use list-wise transformations, for example for some feature like "font-size"? Would you suggest something like max-pooling? For the fasttext I now tried with 3 times more training-examples...

WRT FastText I now gained some training speedup by pre-learning and serializing a list of DAGs with the fasttext-layers only. So I can experiment in the later chain more easily....

I succeeded in running the training without exception by adding the required file "nd4j-op-def.pbtxt" to the classpath (is this a dl4j bug?). But when trying to deserialize and do evaluation:...

1. But the NNLSTMLayer does not have these nice Aggregated methods (input().concatenated()...) like fromCategoricalValues, fromNumbers,.. (this is one of the strong points of dagli) how could I feed such an...

I have a simple test here, did I do something wrong? ``` @Struct("Test") abstract class TestStruct { double _number = 0; boolean _label; } List examples = Arrays.asList(1, 2, 3,...

Another test I don't understand: ``` List examples = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9).stream().map(x -> new Test().withNumber(x)).collect(Collectors.toList()); Test.Placeholder p = new Test.Placeholder(); List list = new...