Juha Jeronen

Results 179 comments of Juha Jeronen

Is there a replacement for `tfa.optimizers.CyclicalLearningRate`? Searching the internet turned up [`bckenstler/CLR`](https://github.com/bckenstler/CLR), which is many years old, and its newer fork [`brianmanderson/Cyclical_Learning_Rate`](https://github.com/brianmanderson/Cyclical_Learning_Rate), which is also two years old, but no...

That error message sounds like the reason this feature is disabled on `--medvram`. :) (How much even is "medium" VRAM? 4GB? 8GB? 16GB?) I'd like to second this request, if...

Thanks for the PR, but this has been fixed in [the development repo](https://github.com/Technologicat/pyan) in a PR by Jan Malek. As it took a couple dozen lines, for the sake of...

Maybe something like this (Works For Me™)? ```python import bibtexparser from bibtexparser.library import Library from bibtexparser.model import Block, Entry class NormalizeFieldNames(bibtexparser.middlewares.middleware.BlockMiddleware): def __init__(self, allow_inplace_modification: bool = True): super().__init__(allow_inplace_modification=allow_inplace_modification, allow_parallel_execution=True) def...

@tdegeus: Sure. @MiWeiss: Good point about conflicting keys. But I'll need a bit more information about the desired way to tackle it. The way this approximately went is, yesterday I...

@csware: Thanks. Yes, that's one possible solution, and probably the simplest one that works. ~Considering alternatives, what about the `DuplicateFieldKeyBlock` mentioned by @MiWeiss?~ **EDIT**: *Nevermind, I think I understood what...

Implemented, using @csware's suggestion of emitting a warning and letting the last value win. Please review.

> (Thanks BTW ;)) (np BTW ;))

Also, noticed that `black` was complaining, so reformatted both `fieldkeys.py` and `test_fieldkeys.py` using it.

4b328ba: Ok, nice shortened comment. Thanks. 6ad724f: Ok. 9eed680: Ok. 71ee1de: Nice shortening of the test unit. Thanks! Regarding this commit, some minor comments: Contrary to the docstring, the function...