parallel
Here are 1,520 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
Jan 22, 2022 - JavaScript
-
Updated
Oct 30, 2018 - C++
I see comments suggesting adding this to understand how loops are being handled by numba, and in the their own FAQ (https://numba.pydata.org/numba-doc/latest/user/faq.html)
from llvmlite import binding as llvm
llvm.set_option('','--debug-only=loop-vectorize')
You would then create your njit function and run it, and I believe the idea is that it prints debug information about whether
-
Updated
Jan 25, 2022 - 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
Dec 17, 2021 - JavaScript
-
Updated
Nov 16, 2021 - TypeScript
-
Updated
Jan 4, 2022 - 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
Jan 23, 2022 - JavaScript
-
Updated
Nov 29, 2021 - Rust
- I have searched issues for similar feature requests
What is this feature about (1 sentence)
Base path should be runtime configurable via the env variable.
Why is it needed? What is the value? For whom do we build it?
If one wants to expose the dashboard not on the domain root but let's say at my-domain.com/sorry-cypress/dashboard the dashboard will try to load the r
When trying to define an operator in the cling cli repl, the "function definition is not allowed here" error is generated. "cling -version" reports "0.8". Here's a copy/paste of a session to demonstrate the issue:
****************** CLING ****************** * Type C++ code and press enter to run it * * Type .q to exit * *****************************************
-
Updated
Dec 4, 2021 - Python
-
Updated
Aug 4, 2020 - Java
-
Updated
Jan 23, 2022 - C++
-
Updated
Dec 4, 2017 - Rust
-
Updated
Nov 16, 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."
Problem: Currently
JsonLoggerCallback.handle_resultwill load in the entirety of the existing results, append the new result, and then rewrite the entire file. This may not scale when running long-running jobs or jobs with large results.https://github.com/ray-project/ray/blob/4e8f90aca20aa7bb87a4e84039889444824382ca/python/ray/train/callbacks/logging.py#L138-L142
Potential Fix: