parallel
Here are 1,471 public repositories matching this topic...
Summary
mypy shows some issues in LightGBM's Python package.
mypy \
--exclude='python-package/compile/|python-package/build' \
--ignore-missing-imports \
python-package/18 errors in 4 files (click me)
python-package/lightgbm/compat.py:12: error: Name 'Series' already defined (possibly by an import)
python-package
-
Updated
Nov 13, 2021 - JavaScript
-
Updated
Oct 30, 2018 - C++
I believe this is undocumented behaviour.
import numba as nb
@nb.njit
def f1():
for i in nb.prange(1):
print(type(i)) # >>> int64
@nb.njit(parallel=True)
def f2():
for i in nb.prange(1):
print(type(i)) # >>> uint64
f1()
f2()
This caused a nasty bug in my own code that was hard to debug as the problem did not exist without `parallel=Tr
-
Updated
Nov 3, 2021 - C++
Motivation
Since lightgbm v3.3.0, train/cv's arguments have been deprecated as described in optuna/optuna#3013. It would be great to replace such deprecated arguments with recommended way by lightgbm.
Description
Replace the deprecated arguments with callback-ish way. The ta
-
Updated
Oct 24, 2021 - JavaScript
-
Updated
Nov 6, 2021 - JavaScript
-
Updated
Nov 8, 2021 - TypeScript
-
Updated
Nov 9, 2021 - Jupyter Notebook
-
Updated
Apr 24, 2020 - JavaScript
-
Updated
Dec 21, 2020 - JavaScript
Version of Singularity:
3.0.3
Expected behavior
Some progress or update information during the creation of the SIF file.
Actual behavior
During "Creating SIF file..." step, the console does not produce any visible output for the user - but does create the resulting file eventually.
Steps to reproduce behavior
I was executing a few “larger” builds through the bui
-
Updated
Nov 4, 2021 - JavaScript
-
Updated
Oct 24, 2021 - Rust
Link run to CI build
- I have searched issues for similar feature requests
What is this feature about (1 sentence)
Expose link to CI build for a run
Why is it needed? What is the value? For whom do we build it?
Be able to access the build on CI from the run
High-level feature overview
Add a link that points to CI build. The data is in run.meta.ci.
- The rf204_extrangefit.py should be translated also to C++
- The rf204b_extendedLikelihood_rangedFit.C tutorial should also be translated to C++
- The [rf204b_extendedLikelihood_rangedFit.C](https://root.cern.ch/doc/master/rf204b__extendedLikelihood_
-
Updated
Nov 8, 2021 - Python
-
Updated
Aug 4, 2020 - Java
-
Updated
Dec 4, 2017 - Rust
-
Updated
Nov 10, 2021 - C++
-
Updated
Nov 12, 2021 - C++
Improve this page
Add a description, image, and links to the parallel topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the parallel topic, visit your repo's landing page and select "manage topics."


When users starts Serve cluster with a set of options (http options, checkpoint path) and then connects to it with a different set of options, we should either update it, or error out.