Yorwba
Yorwba
> array with shape (166736027,) and data type float64 One `float64` requires 8 bytes to store; that whole array takes up roughly 1.3 GB. And aeneas will allocate multiple similarly-sized...
I had a need for sequence concatenation, too. Here is what I came up with after looking at the existing implementations in `blocks.py`: ```python import tensorflow_fold as td from tensorflow_fold.blocks...
Regarding sub-national items: I wrote a Python script to generate decks for exactly that purpose, and this issue prompted me to open-source it as [`anki-wikidata-geography`](https://github.com/Yorwba/anki-wikidata-geography). I don't include information like...
Also added multiline support to the parser.
The error message refers to this line: ``` lua Comment = P"--" * (V"NoSpaceLuaString" / 0 * Space^-1 + (1 - S"\r\n")^0 * #Stop), ``` And mentions a "bad argument...
Did you see my [WIP PR](https://github.com/ttempe/chinese-support-addon/pull/72) on Anki 2.1 support? I have been using it for the past week, and it essentially works. I didn't notice any breakage related to...
I observed someone running into the same issue with this step. But wouldn't a more general solution be to highlight diffs between actual and expected output so that all kinds...
This solution certainly gets the job done! However, you're hardcoding the error message so it can't be translated. That definitely has to change, e.g. by PHP-interpolating the string into an...
Thank you for the PR! For the dates I would use the [`ago` function from the `DateHelper`](https://github.com/Tatoeba/tatoeba2/blob/746693160c44c100560532631ce8d6478edd7ff1/src/View/Helper/DateHelper.php#L109), which is used in the logs section. ([`getDateLabel`](https://github.com/Tatoeba/tatoeba2/blob/746693160c44c100560532631ce8d6478edd7ff1/src/View/Helper/DateHelper.php#L79) is also an option but...
The status page is hosted separately from the rest of our infrastructure by alwaysdata (status.tatoeba.org is an alias for tatoeba.alwaysdata.net) to ensure independent failures. It looks like they have indeed...