Dmitry Nikulin

Results 56 comments of Dmitry Nikulin

Is it possible to make this run on Kubuntu 14.04? I have no option of upgrading, unfortunately.

@tomuta, it seems that there is no newer version in the repository. According to [this page](http://manpages.ubuntu.com/manpages/vivid/man8/sfdisk.8.html), `sfdisk` is in `util-linux` package, however, running ``` $ sudo apt-get install util-linux/trusty-backports ```...

@AshwinJay101 I want to minimize the likelihood of unintentionally using normalization on a tensor with a mask. Since neither `BatchNormalization` nor `LayerNormalization` support general masks, that may introduce subtle and...

@gadagashwini no, that's a different issue. Here I describe a bug somewhere in Functional Model interface. #15451 is just a feature request.

``` $ git --version git version 2.22.0 ``` This syntax is documented in [`git-diff` docs](https://git-scm.com/docs/git-diff): > For a more complete list of ways to spell ``, see "SPECIFYING REVISIONS" section...

Before reporting the problem to [email protected], I would like to ensure that this is indeed a bug. I have created a small repo to reproduce the problem: https://github.com/dniku/git-external-diff-argv Could you...

Submitted [here](https://public-inbox.org/git/CAH53SykX12SN83=gey8KS_x3cGkXH758sfEieskXnnvos8DMcA@mail.gmail.com/T/). Would you like to to file a separate issue for lack of support for `:` in `nbdiff[-web]` to keep track of that problem?

My (somewhat arbitrary) guess is that perhaps it was intended to use `.rev_parse()` instead of `.commit()` in https://github.com/jupyter/nbdime/blob/f96ac65/nbdime/gitfiles.py#L86. ```python In [1]: from git import Repo In [2]: repo = Repo('.')...

For the record, while upstream is deciding what to do with this, I am using the following workaround: ```python #!/usr/bin/env python import sys import subprocess if len(sys.argv) == 10: old_filename,...