gpu
Here are 2,336 public repositories matching this topic...
-
Updated
Aug 21, 2021 - Jupyter Notebook
-
Updated
Jun 23, 2021 - Makefile
At this moment relu_layer op doesn't allow threshold configuration, and legacy RELU op allows that.
We should add configuration option to relu_layer.
-
Updated
Jun 9, 2021 - JavaScript
-
Updated
Aug 21, 2021 - Python
-
Updated
Jun 14, 2021 - Python
New Metric Request
It would be great to have FBeta, F2, or F0.5 metrics to be implemented without the need for a custom metric class defined by user.
catboost version: 0.26
-
Updated
Aug 20, 2021 - C++
-
Updated
Jun 10, 2021 - Python
-
Updated
Aug 21, 2021 - Jupyter Notebook
Hi ,
I have tried out both loss.backward() and model_engine.backward(loss) for my code. There are several subtle differences that I have observed , for one retain_graph = True does not work for model_engine.backward(loss) . This is creating a problem since buffers are not being retained every time I run the code for some reason.
Please look into this if you could.
-
Updated
Aug 3, 2021 - Python
I think we should drop the many references to ancient John or Jumbo versions, and simply describe the current Jumbo version.
The depth configuration defined on this line:
is not compatible with the RealSense L515 camera. The following exception is raised:
Traceback (most recent call last):
File "./examples/python/reconstruction_system/sensors/realsense_recorder.py", line 126, in <m
I want to preemptively start this thread to survey for suggestions. A cursory search lead me to this promising repository https://github.com/enigo-rs/enigo
Since closing the window is a common point of failure, that will be the focus for the first pass of testing as I learn how to use the library.
Components for testing:
- bridge
- editor
- renderer
- settings
- wind
-
Updated
Aug 21, 2021 - C++
-
Updated
Apr 24, 2020 - Jsonnet
Describe the bug
Clipping a DataFrame or Series using ints causes a cudf Failure because it won't handle the different dtypes (int and float)
Steps/Code to reproduce bug
data = cudf.Series([-0.43, 0.1234, 1.5, -1.31])
data.clip(0, 1)
...
File "cudf/_lib/replace.pyx", line 216, in cudf._lib.replace.clip
File "cudf/_lib/replace.pyx", line 198, in cudf._lib.replace.clamp
-
Updated
Jun 13, 2020 - HTML
Describe the Problem
plot_model
currently has the save
argument which can be used to save the plots. It does not provide the functionality to decide where to save the plot and with what name. Right now it saves the plot with predefined names in the current working directory.
Describe the solution you'd like
We can have another argument save_path
which is used whenever the `
Current implementation of join can be improved by performing the operation in a single call to the backend kernel instead of multiple calls.
This is a fairly easy kernel and may be a good issue for someone getting to know CUDA/ArrayFire internals. Ping me if you want additional info.
-
Updated
Jul 15, 2021 - CMake
-
Updated
Aug 20, 2021 - C++
Improve this page
Add a description, image, and links to the gpu topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gpu topic, visit your repo's landing page and select "manage topics."
Teach torch.Tensor.scatter_ to handle
index.size(d) > src.size(d)
.Motivation
Currently,
torch.Tensor.scatter_
requiresindex.size(d) <= src.size(d)
for all dimensionsd
, unlesssrc
is float-valued. This constraint seems artificial.