Timothy Wolodzko

Results 10 issues of Timothy Wolodzko

The imports were imprecise.

This PR implements function decorator described in #583.

p3-enhancement 🔥
submodule ⊂

The fact that Python's `hash` function is used as a default hashing function in `hashing_trick` and `one_hot` is confusing (see [#9500](https://github.com/keras-team/keras/issues/9500) issue in Keras) and was discussed before (see [#9635](https://github.com/keras-team/keras/pull/9635)...

For a reproducibility: I'm using zq Version: v1.0.0 and this data: https://gist.github.com/fyyying/4aa5b471860321d7b47fd881898162b7 If you run the code with the following query ``` fork ( => tot:=count() by Pclass => cnt:=count()...

community

The [classic SCIP handbook](https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book-Z-H-12.html#%_sec_1.3.3) has this example: ```scheme (define tolerance 0.00001) (define (fixed-point f first-guess) (define (close-enough? v1 v2) (< (abs (- v1 v2)) tolerance)) (define (try guess) (let ((next...

Unit tests are needed to guard the code from bugs.

Actually linux also has [several similar functions](https://askubuntu.com/questions/501910/how-to-text-to-speech-output-using-command-line) so this can be easily adapted to work on linux as well.

Imagine that melody had predefined patterns like * `` matching a valid date, * `` matching a valid date and time, * `` matches a floating-point number, supporting scientific notation,...

enhancement

It would be great to have assertions, so it would be possible to do ``` 2 + 2 == 4 # returns TRUE 2 + 2 == 5 # returns...

enhancement

`pbnbinom` and `pgpois` (and potentially `bbbinom`) are slow for some combinations of parameters. This is caused by the fact that they are computed as `F(x) = sum(f(1:x))` and it is...

help wanted
improvement