Xie Jingyi
Xie Jingyi
Hi. I have seen this sentence in doc-string of class `VectorQuantizer2` ([link](https://github.com/CompVis/taming-transformers/blob/master/taming/modules/vqvae/quantize.py#L215)): > Mostly avoids costly matrix multiplications and allows for post-hoc remapping of indices. But I do not quite...
**lambdex** is planning to add a native compiler written in Rust/C++, in order to further reduce the overhead.
**lambdex** is planning to support the match statement added in Python 3.10.0a6 in the upcoming versions.
This PR adds preview and help text when "Go to line" is triggered by `:,` command pattern. Fixes #186143 Screenshot: https://github.com/microsoft/vscode/assets/4702188/f25e45c2-27b8-4fe5-a83f-36c37de74417
This PR should fix #113175, fix #187111. Previously VSCode adopts a formula like `clientX = Math.floor(pageX * zoom)` to calculate the coordiate on screen for showing up the context menu....
Fix #179967. This adds Ctrl+UpArrow and Ctrl+DownArrow navigation to - ExtensionsViewPaneContainer - KeybindingsEditor - CommentsPanel - MarkersView - Repl The two keybindings are uniformly controlled by two new commands `inputResults.focusResults`...
- Rust version : 1.76.0 - nom version : 7.1.3 - nom compilation features used: std Example test case: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=38ea81309c5b6c70c5ded853cbb30a34 ```rust use nom::character::complete::anychar; use nom::Parser; fn main() { anychar.flat_map(|_| anychar).parse("ab").unwrap();...
Hi, thanks for the great work! I am now going to test the model by myself, but wondering where should I download the DFDC dataset from? Should it be from...
My eyes hurt every time reading the monochromic list of code. Do you think it's a good idea to add syntax highlighting to the editor? If so, I would file...
This PR adds support to load model from `&'static [u8]`, as discussed in https://www.reddit.com/r/rust/comments/1exjz7w/comment/lj7v5so/