Thomas
Thomas
I´ve tried to re-package the arbor tween and graphics js into but encountered a number of issues... First, the web worker held me up and the overall packaging of the...
It seems the popular german date format of {dd}.{mm}.{yy} causing inconsistent results. Validated with Chrome on the Sugar.js date demo homepage in the console. Replicate by typing this into the...
Is there a good way to get the month names of the current locale? I´ve been using this in version 2.0.0: ```coffeescript CalendarDefaults.monthNames = (m.capitalize() for m in Date.getLocale().months[0...12]) ```...
The following code throws an "Cannot compare with undefined" error ```coffeescript test = ['', 'AAAA', 'hello world', 'b'] test.max('length') ``` This works, the issue is with the empty string: ```coffeescript...
Not sure if it´s intentional or not, but zip does hide some values when applied to a matrix. Underscore seems to include them. ```coffeescript testMatrix = [ ['a', 'b', 'c'],...
```coffeescript d1 = Date.create('01.01.1833') d1.get('Sunday') #>>> Sun Dec 30 1832 00:00:00 GMT+0100 (CET) d1.get('December') #>>>Sun Dec 01 1833 00:00:00 GMT+0100 (CET) d1.get('December', {past: true}) #>>>Sun Dec 01 1833 00:00:00 GMT+0100...
When testing with hourly data instead of the daily on the example app (ms/ml) and calling the summary, I get the following error: ``` Traceback (most recent call last): File...
A piece of code that used to work seems to have broken. Maybe it´s just a tempoary issue with the API though. `python orders = degiro.orders(datetime.now() - timedelta(days=10), datetime.now()) `...
After passing 2 Epochs, I am getting this error: pytorch_lightning.utilities.exceptions.MisconfigurationException: No `test_dataloader()` method defined to run `Trainer.test`. Here is some more context: ``` Epoch 0, global step 499: val/loss_simple_ema was...
I´ve got the issue that the model trains, but the embedding files are all just 5kb - It does not seem to save them correctly. Is anyone else getting that...