Skip to content
#

gpu

Here are 2,554 public repositories matching this topic...

nitaifingerhut
nitaifingerhut commented Oct 27, 2021

🚀 Feature

alias to generate tensor with random uniform distribution.

Motivation

uniform distribution is one of the most commonly used distributions by users. currently generating tensor distributed uniformly can be done using tensor initializer (torch.FloatTensor(*size).uniform_(low, high)), or by definition:
(high - low) * torch.rand(*size) + low.

Pitch

Adding the alias

ailzhang
ailzhang commented Nov 22, 2021

These APIs are deprecated a while ago, we'll want to get rid of them.

 λ ~/github/taichi master rg "@deprecated" python
python/taichi/lang/matrix.py
516:    @deprecated('ti.Matrix.transposed(a)', 'a.transpose()')
520:    @deprecated('a.T()', 'a.transpose()')
902:    @deprecated('ti.Matrix.var', 'ti.Matrix.field')
915:    @deprecated('ti.Vector.var', 'ti.Vector.field')
1142:    @depr
ayulockin
ayulockin commented Dec 1, 2021

I am working on creating a WandbCallback for Weights and Biases. I am glad that CatBoost has a callback system in place but it would be great if we can extend the interface.

The current callback only supports after_iteration that takes info. Taking inspiration from XGBoost callback system it would be great if we can have before iteration that takes info, before_training, and `after

rsn870
rsn870 commented Aug 21, 2020

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.

H2O is an Open Source, Distributed, Fast & Scalable Machine Learning Platform: Deep Learning, Gradient Boosting (GBM) & XGBoost, Random Forest, Generalized Linear Modeling (GLM with Elastic Net), K-Means, PCA, Generalized Additive Models (GAM), RuleFit, Support Vector Machine (SVM), Stacked Ensembles, Automatic Machine Learning (AutoML), etc.

  • Updated Dec 4, 2021
  • Jupyter Notebook
solardiz
solardiz commented Jul 19, 2019

Our users are often confused by the output from programs such as zip2john sometimes being very large (multi-gigabyte). Maybe we should identify and enhance these programs to output a message to stderr to explain to users that it's normal for the output to be very large - maybe always or maybe only when the output size is above a threshold (e.g., 1 million bytes?)

Improve this page

Add a description, image, and links to the gpu topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the gpu topic, visit your repo's landing page and select "manage topics."

Learn more