Lingvisa

- Total activity 131
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 47
-
Lingvisa created a post, AnsweredWhy doesn't my Pycharm highlight missing symbols in my python files?
For example, if 'span' is missing from your project, my PyCharm doesn't highlight it in red. It only reports missing errors when you actually run the program. This is annoying. How to fix it? imp... -
Lingvisa created a post, How can I prevent PyCharm run pytest?
Sometimes PyCharm run pytest on my application which I don't want. For example, I have two methods: def train(): ... @torch.no_grad()def test(model, x, y): Then In my main function, even if I on... -
Lingvisa commented, -
-
Lingvisa created a post, My debugger pane got displaced accidentally
I clicked somewhere in PyCharm and suddenly the debugger pane went out of the original place, meaning that it is not placed in the lower section of window any more, but was placed in a separate wi... -
-
-
Lingvisa created a post, Why doesn't debugger stop at breakpoints inside certain functions?
For example: def tokenize_pairs(pt, en): ### I set a break point here but it doesn't stop! pt = tokenizers.pt.tokenize(pt) pt = pt.to_tensor() en = tokenizers.en.tokenize(en) en = ... -
Lingvisa created a post, AnsweredHow to automatically get output file from remote machine to local machine?
I set up a remote interpreter on an ubuntu machine and work on my local Mac. My code needs to generate an output file every time I run the program. However, it generates the output file on the remo... -
Lingvisa created a post, AnsweredHow to get old behavior when using git 'show diff'?
I just upgraded to Pycharm 2021.2 and found an annoying change: In 'local changes', if I click 'show diff' on a file, it used to pop up a window with two split panels to show the diffs with a muc...