-
Updated
Sep 7, 2021 - Python
python-api
Here are 214 public repositories matching this topic...
-
Updated
Nov 20, 2021 - Python
-
Updated
Nov 16, 2021 - Python
-
Updated
Oct 31, 2021 - Python
-
Updated
Dec 16, 2018 - Rust
-
Updated
Nov 26, 2020 - C++
-
Updated
Nov 23, 2021 - C++
-
Updated
Jul 27, 2021 - Python
Right now the macros for banded alignment like CUDAPOA_BANDED_MATRIX_RIGHT_PADDING are not shared between the kernel code and other sources that determine sizes for bands (such as in batch.cu). For now they're hard coded to specific numbers, but this is error prone. This needs to be fixed to the macros are shared between files.
-
Updated
Oct 18, 2021 - C++
-
Updated
Nov 12, 2021 - C++
When running the regression, the resulting logs seem to end up in third_party/tests/$TEST/...
. This of course is not unnoticed by git, so a git status shows a ton of non-added new files added.
To reproduce:
make
make regression
git status # observe all the files
Build or test artifacts should never clutter the rest of the code-base (we should regard them as read-only in
Persian ~
Persian, nonstandardly, uses ~ to separate variants. Fix these upstream, and then rescrape.
-
Updated
Mar 25, 2020 - Python
-
Updated
Oct 25, 2018 - Python
-
Updated
Oct 3, 2018 - Python
-
Updated
Jan 2, 2018 - Python
-
Updated
Sep 29, 2021 - Jupyter Notebook
Add tkinter module.
-
Updated
Aug 20, 2021 - Python
The src/examples/server/pets.py file contains stubs for all the functions corresponding to the the operation IDs as defined in the petstore.yaml specification. However, only find_pets_by_status
has any implementation, while all others
-
Updated
Jul 22, 2021 - Python
-
Updated
Mar 29, 2021 - Python
-
Updated
Sep 25, 2018 - Python
-
Updated
Jan 31, 2021 - Python
-
Updated
Nov 10, 2021 - Python
Improve this page
Add a description, image, and links to the python-api topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the python-api topic, visit your repo's landing page and select "manage topics."
For pandas API compatibility, we can implement Series.autocorr.
autocorr
calculates the Pearson correlation between the Series and itself lagged by N steps. Conceptually, this is a combination ofshift
andcorr
.