Computer vision
Computer vision is an interdisciplinary field that deals with how computers can be made to gain high-level understanding of digital images and videos.
Here are 12,105 public repositories matching this topic...
-
Updated
Jan 27, 2021 - C++
-
Updated
Jan 16, 2021
-
Updated
Jan 30, 2021 - Python
-
Updated
Jan 29, 2021 - C
-
Updated
Dec 19, 2020 - Python
-
Updated
Jan 31, 2021 - Jupyter Notebook
Change tensor.data
to tensor.detach()
due to
pytorch/pytorch#6990 (comment)
tensor.detach()
is more robust than tensor.data
.
-
Updated
Dec 16, 2020 - Python
-
Updated
Jan 4, 2021
-
Updated
Jan 31, 2021 - C++
When run
bazel run --define MEDIAPIPE_DISABLE_GPU=1 mediapipe/examples/desktop/hello_world:hello_world
Downloading org_tensorflow will time out.
I want use the pre-downloaded org_tensorflow by putting the tar.gz file in the .cache corresponding directory, but it didn't work.How should I operate it correctly?
-
Updated
Aug 3, 2020 - Lua
-
Updated
Feb 1, 2021 - C++
-
Updated
Dec 16, 2020 - Go
-
Updated
Feb 1, 2021
-
Updated
Nov 29, 2020 - Python
Current pytorch implementation ignores the argument split_f
in the function train_batch_ch13
as shown below.
def train_batch_ch13(net, X, y, loss, trainer, devices):
if isinstance(X, list):
# Required for BERT Fine-tuning (to be covered later)
X = [x.to(devices[0]) for x in X]
else:
X = X.to(devices[0])
...
Todo: Define the argument `
The operators in functional_tensor.py perform casting in two ways:
- Using the
tensor.to(dtype=dtype)
PyTorch method - Using the
convert_image_dtype()
Transformation method
The first method does direct casting from one type to the other. The latter method has mo
-
Updated
Aug 5, 2020 - Lua
-
Updated
Jan 31, 2021 - C++
-
Updated
Feb 1, 2021 - Python
-
Updated
Jan 21, 2021 - Jupyter Notebook
-
Updated
Feb 1, 2021 - Python
-
Updated
Aug 26, 2020 - C#
-
Updated
Feb 1, 2021
-
Updated
Oct 11, 2019
-
Updated
Jan 29, 2021 - Python
-
Updated
Oct 31, 2018 - Python
I think that there is missing if for "the H parameter computation. If R = G = B the H should be 0.
Regards