Andreas Kirsch
Andreas Kirsch
The fix for SubsetDatasetBuilder that simply forwarded the info field actually breaks get_num_examples: it returns the total number of examples in the original dataset and not the subset. This should...
``` import 'dart:async'; void main() { new Timer.periodic(const Duration(), (timer) { print("hello"); }); new Timer.periodic(const Duration(), (timer) { print("hello2"); }); } ``` gets annoying after a while :)
This greatly improves debugging of angular.dart apps because it makes it much easier to find the expression that triggered an exception in the actual source code. [](https://reviewable.io/reviews/angular/angular.dart/1721)
The current implementation is broken. Track by expressions are actually parsed and processed in https://github.com/angular/angular.dart/blob/master/lib/directive/ng_repeat.dart#L107 but the resulting `_generateId` is never used. Please either: 1. remove the dead code and...
If the snippet contains nodes that have a transcluding directive, rootElement and rootElements will point to the wrong instance of those nodes (pre-transcluded). `` will point to the unexpanded instance...
Based on #3
Right now it is not possible to early out of any of the wrappers. For more advanced algorithms, this might be a requirement though.
idea would be to add a helper to stacktrace.py that takes removes all frames from the caller up to the provided callback (and if the callback is not there, it...
The current stub breaks TorchScript/`to_torchscript` with: ``` otSupportedError: Compiled functions can't take variable number of arguments or use keyword-only arguments with defaults: File "/opt/conda/envs/image-gen/lib/python3.11/site-packages/pytorch_lightning/core/module.py", line 657 def forward(self, *args: Any,...