title
stringlengths
2
169
diff
stringlengths
235
19.5k
body
stringlengths
0
30.5k
url
stringlengths
48
84
created_at
stringlengths
20
20
closed_at
stringlengths
20
20
merged_at
stringlengths
20
20
updated_at
stringlengths
20
20
diff_len
float64
101
3.99k
repo_name
stringclasses
83 values
__index_level_0__
int64
15
52.7k
DOC add example of DataFrame.index
diff --git a/ci/code_checks.sh b/ci/code_checks.sh index c046d55d80b49..55618590071b5 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -532,7 +532,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then pandas.api.extensions.ExtensionArray.ndim \ pandas.api.extensions.ExtensionArray.shape...
DOC add example of DataFrame.index - [ ] closes #xxxx (Replace xxxx with the GitHub issue number) - [ ] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) if fixing a bug or adding a new feature - [ ] All [code checks passed](https://pandas.pyda...
https://api.github.com/repos/pandas-dev/pandas/pulls/52835
2023-04-21T18:41:54Z
2023-04-23T19:13:44Z
2023-04-23T19:13:44Z
2023-04-24T13:41:58Z
721
pandas-dev/pandas
45,545
Control filter list
diff --git a/tests-ui/tests/widgetInputs.test.js b/tests-ui/tests/widgetInputs.test.js index 022e549266..e1873105ac 100644 --- a/tests-ui/tests/widgetInputs.test.js +++ b/tests-ui/tests/widgetInputs.test.js @@ -14,10 +14,10 @@ const lg = require("../utils/litegraph"); * @param { InstanceType<Ez["EzGraph"]> } graph ...
Allows filtering of the items in a COMBO primitive (e.g. LoadImage images list) when using control_after_generate. You can also use regex to filter the items by wrapping the expression in `/`s e.g. `/(sdxl|sd15)/` Maintains existing behavior of `addValueControlWidget` for extensions currently using it, adding `add...
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2009
2023-11-20T21:48:41Z
2023-11-22T17:52:20Z
2023-11-22T17:52:20Z
2023-11-23T08:37:52Z
2,804
comfyanonymous/ComfyUI
17,901
C.40: Fixed a couple of typos.
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 0a4a6c410..bf1bf47b7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3905,7 +3905,7 @@ That's what constructors are for. int d, m, y; }; -It is often a good idea to express the invariant as an `Ensure` on the constructor. +I...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/471
2015-12-18T16:36:52Z
2015-12-18T16:51:25Z
2015-12-18T16:51:25Z
2015-12-19T03:20:50Z
251
isocpp/CppCoreGuidelines
15,485
[3.8] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173)
diff --git a/Python/ast.c b/Python/ast.c index 0a999fcca43a8e..5efb690c299cac 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -4898,7 +4898,7 @@ fstring_compile_expr(const char *expr_start, const char *expr_end, len = expr_end - expr_start; /* Allocate 3 extra bytes: open paren, close paren, null byte. */ -...
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` bpo-NNNN: Summary of the changes made ``` Where: bpo-NNNN refers to the issue number in the https://bugs.python.org. Most PRs will requ...
https://api.github.com/repos/python/cpython/pulls/21184
2020-06-27T18:26:32Z
2020-06-27T18:43:42Z
2020-06-27T18:43:42Z
2020-06-27T18:43:44Z
685
python/cpython
4,738
Update README.md
diff --git a/README.md b/README.md index c31017e..b1354cc 100644 --- a/README.md +++ b/README.md @@ -2336,7 +2336,7 @@ nan #### 💡 Explanation: -`'inf'` and `'nan'` are special strings (case-insensitive), which when explicitly typecasted to `float` type, are used to represent mathematical "infinity" and "not a num...
Typo corrected.
https://api.github.com/repos/satwikkansal/wtfpython/pulls/146
2019-10-25T08:58:55Z
2019-10-25T14:22:53Z
2019-10-25T14:22:53Z
2019-10-25T14:22:58Z
524
satwikkansal/wtfpython
25,728
improve(rules): add mercurial (hg) support
diff --git a/tests/rules/test_mercurial.py b/tests/rules/test_mercurial.py new file mode 100644 index 000000000..08962f912 --- /dev/null +++ b/tests/rules/test_mercurial.py @@ -0,0 +1,134 @@ +import pytest + +from tests.utils import Command +from thefuck.rules.mercurial import ( + extract_possisiblities, match, get_...
Please review and comment!
https://api.github.com/repos/nvbn/thefuck/pulls/281
2015-07-07T00:40:07Z
2015-07-07T13:36:06Z
2015-07-07T13:36:06Z
2015-07-08T01:25:42Z
1,738
nvbn/thefuck
30,780
Fix mypyc compatibility issue
diff --git a/src/black/parsing.py b/src/black/parsing.py index 504e20be00..32cfa5239f 100644 --- a/src/black/parsing.py +++ b/src/black/parsing.py @@ -169,6 +169,7 @@ def stringify_ast( yield f"{' ' * depth}{node.__class__.__name__}(" + type_ignore_classes: Tuple[Type[Any], ...] for field in sorted(no...
### Description I can't wait for when we drop Python 2 support FWIW :) ### Checklist - did you ... - [x] Add a CHANGELOG entry if necessary? -> n/a - [x] Add / update tests if necessary? -> n/a - [x] Add new / update outdated documentation? -> n/a
https://api.github.com/repos/psf/black/pulls/2628
2021-11-19T03:07:24Z
2021-11-19T03:20:45Z
2021-11-19T03:20:45Z
2021-11-19T03:20:47Z
155
psf/black
24,458
Added a descriptive error if domain list includes a Unicode-encoded IDN
diff --git a/letsencrypt/configuration.py b/letsencrypt/configuration.py index a2a54d2d062..69778f5f049 100644 --- a/letsencrypt/configuration.py +++ b/letsencrypt/configuration.py @@ -144,6 +144,15 @@ def _check_config_domain_sanity(domains): if any("xn--" in d for d in domains): raise errors.Configurati...
The current error for IDNs passed in Unicode form is incorrect and does not describe the actual problem: ``` $ letsencrypt --manual -d example.com -d ёжикв.сайт Requested domain is not a FQDN ``` This change checks for any domains that cannot be encoded as ASCII, and if one is present: ``` $ letsencrypt --manual -d ...
https://api.github.com/repos/certbot/certbot/pulls/1759
2015-12-05T06:26:33Z
2015-12-05T07:17:21Z
2015-12-05T07:17:21Z
2016-05-06T19:22:00Z
205
certbot/certbot
496
`chat_loaders` refactoring
diff --git a/libs/langchain/langchain/chat_loaders/imessage.py b/libs/langchain/langchain/chat_loaders/imessage.py index d6c02f1e5307a2..eed0cfea3795ee 100644 --- a/libs/langchain/langchain/chat_loaders/imessage.py +++ b/libs/langchain/langchain/chat_loaders/imessage.py @@ -4,13 +4,13 @@ from typing import TYPE_CHECKI...
Replaced unnecessary namespace renaming `from langchain.chat_loaders import base as chat_loaders` with `from langchain.chat_loaders.base import BaseChatLoader, ChatSession` and simplified correspondent types. @eyurtsev
https://api.github.com/repos/langchain-ai/langchain/pulls/10381
2023-09-08T17:16:24Z
2023-09-09T22:22:56Z
2023-09-09T22:22:56Z
2023-09-10T18:23:43Z
2,233
langchain-ai/langchain
43,519
Added scibert-nli model card
diff --git a/model_cards/gsarti/scibert-nli/README.md b/model_cards/gsarti/scibert-nli/README.md new file mode 100644 index 0000000000000..1388fea8d557a --- /dev/null +++ b/model_cards/gsarti/scibert-nli/README.md @@ -0,0 +1,32 @@ +# SciBERT-NLI + +This is the model [SciBERT](https://github.com/allenai/scibert) [1] fin...
https://api.github.com/repos/huggingface/transformers/pulls/3376
2020-03-22T13:26:17Z
2020-03-23T15:55:42Z
2020-03-23T15:55:42Z
2020-03-23T15:55:43Z
544
huggingface/transformers
12,407
Set CSR version in make_csr
diff --git a/letsencrypt/crypto_util.py b/letsencrypt/crypto_util.py index 76265a73914..5fdcba843aa 100644 --- a/letsencrypt/crypto_util.py +++ b/letsencrypt/crypto_util.py @@ -118,6 +118,7 @@ def make_csr(key_str, domains): value=", ".join("DNS:%s" % d for d in domains) ), ]) + req.set_ve...
Fixes #2528.
https://api.github.com/repos/certbot/certbot/pulls/2529
2016-02-23T05:45:45Z
2016-02-23T16:08:23Z
2016-02-23T16:08:23Z
2016-05-06T19:22:24Z
134
certbot/certbot
632
🌐 Update Chinese translation for `docs/zh/docs/tutorial/query-params.md`
diff --git a/docs/zh/docs/tutorial/query-params.md b/docs/zh/docs/tutorial/query-params.md index a0cc7fea39310..308dd68a486ab 100644 --- a/docs/zh/docs/tutorial/query-params.md +++ b/docs/zh/docs/tutorial/query-params.md @@ -1,67 +1,67 @@ # 查询参数 -声明不属于路径参数的其他函数参数时,它们将被自动解释为"查询字符串"参数 +声明的参数不是路径参数时,路径操作函数会把该参数自动解释为**查...
also fix code highlight for tutorial002.py and tutorial006.py
https://api.github.com/repos/tiangolo/fastapi/pulls/3480
2021-07-07T08:05:07Z
2024-04-01T05:36:48Z
2024-04-01T05:36:48Z
2024-04-01T05:36:48Z
2,290
tiangolo/fastapi
23,195
C.146 Fix variable name in example
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ec3200ed6..94876f845 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8207,8 +8207,8 @@ Consider: cout << pb2->id(); // "D" - if (pb1->id() == "D") { // looks innocent - D* pd = static_cast<D*>(pb1); + ...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/2116
2023-08-06T04:02:14Z
2023-08-06T05:25:02Z
2023-08-06T05:25:02Z
2023-08-06T05:25:02Z
151
isocpp/CppCoreGuidelines
15,273
Reset progress bar in between report runs
diff --git a/frontend/src/components/core/Block/Block.tsx b/frontend/src/components/core/Block/Block.tsx index a403c3d1674f..c6df749bb5fe 100644 --- a/frontend/src/components/core/Block/Block.tsx +++ b/frontend/src/components/core/Block/Block.tsx @@ -16,7 +16,6 @@ */ import React, { PureComponent, ReactNode, Suspe...
**Issue:** https://github.com/streamlit/streamlit-old-private/issues/760 **Description:** - Unmount progress bar when it's stale so it resets **Notes:** - I didn't see any issues with the `update-progress animation` as mentioned in the issue. Perhaps @tconkling can provide reproduction steps for that.
https://api.github.com/repos/streamlit/streamlit/pulls/321
2019-10-08T15:01:11Z
2019-10-14T20:48:35Z
2019-10-14T20:48:35Z
2019-10-14T20:48:38Z
1,968
streamlit/streamlit
22,550
Remove redundant SQL index in Pastebin exercise
diff --git a/solutions/system_design/pastebin/README.md b/solutions/system_design/pastebin/README.md index 756c78c274..2d87ddcc7e 100644 --- a/solutions/system_design/pastebin/README.md +++ b/solutions/system_design/pastebin/README.md @@ -116,7 +116,7 @@ paste_path varchar(255) NOT NULL PRIMARY KEY(shortlink) ``` -...
Making a column a primary key enforces uniqueness, and the db usually does so by creating a unique clustered index. So, you don't need a second index.
https://api.github.com/repos/donnemartin/system-design-primer/pulls/405
2020-04-20T19:16:06Z
2020-07-07T01:05:51Z
2020-07-07T01:05:51Z
2020-07-07T01:06:04Z
380
donnemartin/system-design-primer
36,749
Prep for 1.32.1
diff --git a/.azure-pipelines/release.yml b/.azure-pipelines/release.yml index 1c983a3b647..2374289e3c9 100644 --- a/.azure-pipelines/release.yml +++ b/.azure-pipelines/release.yml @@ -8,7 +8,7 @@ pr: none variables: dockerTag: ${{variables['Build.SourceBranchName']}} - snapBuildTimeout: 5400 + snapBuildTimeout...
I wanted to do this because we were notified that https://ubuntu.com/security/notices/USN-5638-3/ affects our snaps. This probably doesn't affect us, but rebuilding to be safe seems worth it to me personally. I started to just trigger a new v1.32.0 release build, but I don't want to overwrite our 2.0 Docker images u...
https://api.github.com/repos/certbot/certbot/pulls/9492
2022-12-02T15:00:30Z
2022-12-05T15:00:44Z
2022-12-05T15:00:44Z
2022-12-05T15:00:45Z
299
certbot/certbot
1,077
Add share.flows command, fix #2779
diff --git a/mitmproxy/addons/__init__.py b/mitmproxy/addons/__init__.py index 8f84c20d9f..619211130b 100644 --- a/mitmproxy/addons/__init__.py +++ b/mitmproxy/addons/__init__.py @@ -20,6 +20,7 @@ from mitmproxy.addons import streambodies from mitmproxy.addons import save from mitmproxy.addons import upstream_auth +...
Fixes #2779 . Added the command 'upload.file'
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/2802
2018-01-18T20:46:01Z
2018-02-13T19:01:01Z
2018-02-13T19:01:00Z
2018-06-15T16:54:24Z
1,559
mitmproxy/mitmproxy
28,324
Update README.md
diff --git a/exercises/ansible/README.md b/exercises/ansible/README.md index 12982c3fd..206c4d84e 100644 --- a/exercises/ansible/README.md +++ b/exercises/ansible/README.md @@ -15,6 +15,7 @@ <summary>Describe each of the following components in Ansible, including the relationship between them: * Task + * Invento...
Hey repo owner! I have added a new feature on Ansible topic (inventory component), I think that will increase the understand of all people on this topic about Ansible tool. if i am wrong just ignore Let me know if you have any questions around this.
https://api.github.com/repos/bregman-arie/devops-exercises/pulls/194
2021-11-29T00:17:04Z
2021-11-29T06:11:48Z
2021-11-29T06:11:48Z
2021-11-29T06:11:48Z
242
bregman-arie/devops-exercises
17,400
Better handling of CookieJar Runtime Exception
diff --git a/lib/request/connect.py b/lib/request/connect.py index 8508dee51ff..84ec25e4d38 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -587,14 +587,9 @@ class _(dict): if not getRequestHeader(req, HTTP_HEADER.COOKIE) and conf.cj: conf.cj._policy._now = co...
Instead of waiting for the exception and sleeping in between, we can simply use the same lock used by the original cookiejar code (since we are already accessing private member), to prevent the exception from happening in the first place. Fixes #5187
https://api.github.com/repos/sqlmapproject/sqlmap/pulls/5206
2022-10-21T08:56:40Z
2022-10-21T17:10:43Z
2022-10-21T17:10:43Z
2022-10-21T17:10:52Z
294
sqlmapproject/sqlmap
15,062
W&B log epoch
diff --git a/test.py b/test.py index 891f6bef41c..db344e72204 100644 --- a/test.py +++ b/test.py @@ -239,8 +239,8 @@ def test(data, if plots: confusion_matrix.plot(save_dir=save_dir, names=list(names.values())) if wandb and wandb.run: - wandb.log({"Images": wandb_images}) - ...
May allow W&B results logging with epoch x axis. ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Improvement in Weight & Biases logging within YOLOv5's testing and training routines. ### 📊 Key Changes - Modified `wandb.log` calls in `test.py`...
https://api.github.com/repos/ultralytics/yolov5/pulls/1946
2021-01-15T04:44:40Z
2021-01-27T05:16:02Z
2021-01-27T05:16:02Z
2024-01-19T19:49:02Z
538
ultralytics/yolov5
24,979
Fix super tiny type error
diff --git a/timm/scheduler/cosine_lr.py b/timm/scheduler/cosine_lr.py index e2c975fb79..4eaaa86a81 100644 --- a/timm/scheduler/cosine_lr.py +++ b/timm/scheduler/cosine_lr.py @@ -8,6 +8,7 @@ import math import numpy as np import torch +from typing import List from .scheduler import Scheduler @@ -77,7 +78,7 @@ d...
IMHO, for example, CosineLRScheduler returns list of floats, instead of a single float. Therefore, the type signature may need to be updated. Please correct me if I am wrong!
https://api.github.com/repos/huggingface/pytorch-image-models/pulls/2124
2024-03-23T03:27:44Z
2024-04-02T21:31:38Z
2024-04-02T21:31:38Z
2024-04-03T00:39:19Z
1,394
huggingface/pytorch-image-models
16,230
gh-72073: Add Windows case in pathlib.rename
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index d45e7aa84b28ce..cda2cc83225e07 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -1021,8 +1021,9 @@ call fails (for example because the path doesn't exist). Rename this file or directory to the given *target*, and return a ne...
#72073 https://docs.python.org/3.12/library/pathlib.html#pathlib.Path.rename Automerge-Triggered-By: GH:brettcannon
https://api.github.com/repos/python/cpython/pulls/93002
2022-05-20T08:05:26Z
2022-05-20T22:25:40Z
2022-05-20T22:25:39Z
2022-05-21T04:31:52Z
229
python/cpython
4,622
Use long classes names for enabled middlewares in startup logs
diff --git a/scrapy/middleware.py b/scrapy/middleware.py index 6120488e22f..be36f977e41 100644 --- a/scrapy/middleware.py +++ b/scrapy/middleware.py @@ -28,6 +28,7 @@ def _get_mwlist_from_settings(cls, settings): def from_settings(cls, settings, crawler=None): mwlist = cls._get_mwlist_from_settings(settin...
Continuation of https://github.com/scrapy/scrapy/pull/1722
https://api.github.com/repos/scrapy/scrapy/pulls/1726
2016-01-26T15:44:27Z
2016-01-26T16:29:44Z
2016-01-26T16:29:44Z
2016-02-01T14:53:45Z
294
scrapy/scrapy
35,115
dns-cloudflare: update URL for obtaining API keys
diff --git a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py index e3d0d42e047..0bbdf703ae8 100644 --- a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py +++ b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py...
Updated the ACCOUNT_URL in the Cloudflare-DNS plugin. This uses the new "dash.cloudflare.com" scheme and future-proofs this URL for an upcoming change to Cloudflare API keys (this is not public yet, so no other changes related to this).
https://api.github.com/repos/certbot/certbot/pulls/7052
2019-05-11T22:00:21Z
2019-06-26T00:53:32Z
2019-06-26T00:53:32Z
2019-06-26T14:11:20Z
168
certbot/certbot
2,376
cookies.txt extension doesn't exist anymore on the Chrome Web Store
diff --git a/README.md b/README.md index 34c6c677d8f..35ae364213e 100644 --- a/README.md +++ b/README.md @@ -879,7 +879,7 @@ Either prepend `https://www.youtube.com/watch?v=` or separate the ID from the op Use the `--cookies` option, for example `--cookies /path/to/cookies/file.txt`. -In order to extract cookies f...
### Before submitting a *pull request* make sure you have: - [x] [Searched](https://github.com/ytdl-org/youtube-dl/search?q=is%3Apr&type=Issues) the bugtracker for similar pull requests - [x] Read [adding new extractor tutorial](https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site) - [x] Read [youtub...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/27433
2020-12-14T14:15:10Z
2020-12-26T13:50:40Z
2020-12-26T13:50:40Z
2020-12-26T13:52:26Z
393
ytdl-org/youtube-dl
50,343
Add --new-key
diff --git a/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py b/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py index 2720842171e..3650f64f043 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/assertions.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/assertion...
https://api.github.com/repos/certbot/certbot/pulls/9252
2022-03-29T21:50:13Z
2022-03-31T18:40:22Z
2022-03-31T18:40:22Z
2022-03-31T18:40:22Z
2,862
certbot/certbot
116
added possibility to freeze layers during training
diff --git a/examples/mnist_transfer_cnn.py b/examples/mnist_transfer_cnn.py new file mode 100644 index 00000000000..579df76d08f --- /dev/null +++ b/examples/mnist_transfer_cnn.py @@ -0,0 +1,114 @@ +from __future__ import absolute_import +from __future__ import print_function +import numpy as np +import datetime + +np....
Following the discussion in #622, here is a simple strategy to "freeze" specific layers during training. IT works for `Sequential` and `Graph` models. It adds a `trainable` attribute to the core `Layer` class and check its value when creating the model. If a layer's `trainable` flag is modified after addition to a mod...
https://api.github.com/repos/keras-team/keras/pulls/839
2015-10-15T11:41:58Z
2015-10-23T23:40:38Z
2015-10-23T23:40:38Z
2015-12-31T15:30:46Z
2,642
keras-team/keras
47,887
exmo(fix): ArgumentsRequired import missing
diff --git a/ts/src/exmo.ts b/ts/src/exmo.ts index 180b9a2a1232..6411a68950ef 100644 --- a/ts/src/exmo.ts +++ b/ts/src/exmo.ts @@ -2,7 +2,7 @@ // --------------------------------------------------------------------------- import Exchange from './abstract/exmo.js'; -import { ExchangeError, OrderNotFound, Authentica...
https://api.github.com/repos/ccxt/ccxt/pulls/19307
2023-09-17T00:45:16Z
2023-09-17T07:16:27Z
2023-09-17T07:16:27Z
2023-09-17T07:16:28Z
207
ccxt/ccxt
13,407
Safety pipeline prototype
diff --git a/safety/README.md b/safety/README.md new file mode 100644 index 0000000000..2b6f23ff0f --- /dev/null +++ b/safety/README.md @@ -0,0 +1,47 @@ +# Train & Evaluate Safety models + +This is the Open Assistant Safety Folder and contains the following: + +- Model training scripts +- Model infrence scripts +- Data...
The safety team has decided to maintain a `safety` folder. This folder will contain 1. Documentation related to safety models. 2. Reproducible training and evaluation code for safety models. 3. Inference pipelines for safety models @ontocord
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/1972
2023-03-05T11:08:36Z
2023-03-08T16:33:32Z
2023-03-08T16:33:32Z
2023-03-08T16:33:32Z
2,637
LAION-AI/Open-Assistant
37,546
Fix issue with scrolling when package not found
diff --git a/thefuck/specific/archlinux.py b/thefuck/specific/archlinux.py index 5816c50f0..5c95aa5bb 100644 --- a/thefuck/specific/archlinux.py +++ b/thefuck/specific/archlinux.py @@ -24,8 +24,11 @@ def get_pkgfile(command): ).splitlines() return [package.split()[0] for package in packages] - ex...
Fix issue with attempting to scroll through possible corrections when not-found package has no packages with matching names causing crash. This behavior originates with commit 6624ecb3b85e82e9f1a08823f6e41ee805d35a9e, to my knowledge, where pacman rules were created. In both uses of `get_pkgfile` (in pacman.py and i...
https://api.github.com/repos/nvbn/thefuck/pulls/573
2016-11-03T07:50:06Z
2017-03-13T12:47:17Z
2017-03-13T12:47:17Z
2017-03-13T12:47:24Z
157
nvbn/thefuck
30,457
Fix typo
diff --git a/README.md b/README.md index 0b576befe1..c11c8f3032 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ API | Description | Auth | HTTPS | CORS | | [Open Library](https://openlibrary.org/developers/api) | Books, book covers and related data | No | Yes | No | | [Penguin Publishing](http://www.pengui...
<!-- Thank you for taking the time to work on a Pull Request for this project! --> <!-- To ensure your PR is dealt with swiftly please check the following: --> - [X ] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md) - [X ] My addition is ordered alphabetically - [...
https://api.github.com/repos/public-apis/public-apis/pulls/2062
2021-09-21T00:44:38Z
2021-09-22T11:31:59Z
2021-09-22T11:31:59Z
2021-09-22T18:06:23Z
376
public-apis/public-apis
35,235
Inline `_make_grid()` meshgrid
diff --git a/models/yolo.py b/models/yolo.py index 7a7308312a1..fa05fcf9a8d 100644 --- a/models/yolo.py +++ b/models/yolo.py @@ -81,10 +81,7 @@ def _make_grid(self, nx=20, ny=20, i=0, torch_1_10=check_version(torch.__version t = self.anchors[i].dtype shape = 1, self.na, ny, nx, 2 # grid shape ...
Signed-off-by: Glenn Jocher <[email protected]> <!-- Thank you for submitting a YOLOv5 🚀 Pull Request! We want to make contributing to YOLOv5 as easy and transparent as possible. A few tips to get you started: - Search existing YOLOv5 [PRs](https://github.com/ultralytics/yolov5/pull) to see if a simi...
https://api.github.com/repos/ultralytics/yolov5/pulls/9170
2022-08-26T13:07:52Z
2022-08-26T13:29:31Z
2022-08-26T13:29:31Z
2024-01-19T06:39:33Z
342
ultralytics/yolov5
24,732
gh-108765: Python.h no longer includes <unistd.h>
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index e7b60ddbdbbfda..c4fb328db9cfa0 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -921,6 +921,11 @@ Porting to Python 3.13 also the ``HAVE_IEEEFP_H`` macro. (Contributed by Victor Stinner in :gh:`108765`.) +* ``Python.h`` no longer ...
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` gh-NNNNN: Summary of the changes made ``` Where: gh-NNNNN refers to the GitHub issue number. Most PRs will require an issue number. Trivial...
https://api.github.com/repos/python/cpython/pulls/108783
2023-09-01T19:11:49Z
2023-09-02T14:50:18Z
2023-09-02T14:50:18Z
2023-10-27T20:28:40Z
2,936
python/cpython
4,344
Simplify PreparedRequest.prepare API
diff --git a/requests/models.py b/requests/models.py index 752c58c153..45b3ea9680 100644 --- a/requests/models.py +++ b/requests/models.py @@ -523,6 +523,10 @@ def prepare_cookies(self, cookies): def prepare_hooks(self, hooks): """Prepares the given hooks.""" + # hooks can be passed as None to th...
Do not require that hooks be passed as an empty list to PreparedRequest.prepare. In the event hooks is None in prepare or prepare_hooks, use an empty list as a default. Related to #2552
https://api.github.com/repos/psf/requests/pulls/2553
2015-04-21T01:14:53Z
2015-04-21T05:59:55Z
2015-04-21T05:59:55Z
2021-09-08T08:00:49Z
250
psf/requests
33,005
Remove elements that don't add value in ES.84
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7db626d82..1d437b249 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9884,7 +9884,7 @@ Statement rules: * [ES.77: Minimize the use of `break` and `continue` in loops](#Res-continue) * [ES.78: Always end a non-empty `case` with a `break`](...
- Parentheses around "(try to)" in rule title add no meaning. - The sentence fragment "To avoid unpleasant surprises." in Reason adds no info that hasn't already been stated. - "There are exceedingly clever uses of this 'idiom', but..." seems like a distraction instead of a tight conclusion to the example section. W...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1390
2019-03-17T13:15:39Z
2019-03-21T18:04:50Z
2019-03-21T18:04:50Z
2019-04-02T00:44:27Z
579
isocpp/CppCoreGuidelines
15,926
fix --certs argument
diff --git a/docs/src/content/concepts-certificates.md b/docs/src/content/concepts-certificates.md index ebc5ede990..0fc32c696c 100644 --- a/docs/src/content/concepts-certificates.md +++ b/docs/src/content/concepts-certificates.md @@ -93,7 +93,7 @@ The files created by mitmproxy in the .mitmproxy directory are as follo...
the help output claims that --certs is correct
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/4412
2021-01-24T21:05:38Z
2021-01-24T21:12:17Z
2021-01-24T21:12:17Z
2021-01-31T09:05:58Z
287
mitmproxy/mitmproxy
27,421
readme.md dataset Table Formatting
diff --git a/model/model_training/README.md b/model/model_training/README.md index 914c82eff7..1f5dbcf9ed 100644 --- a/model/model_training/README.md +++ b/model/model_training/README.md @@ -212,10 +212,9 @@ deepspeed trainer_sft.py --configs defaults your-model-name --deepspeed Here is an uncomplete overview of datas...
change markdown Table Formatting. that format is broken
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3219
2023-05-23T23:43:15Z
2023-05-26T21:18:13Z
2023-05-26T21:18:13Z
2023-05-26T21:18:14Z
329
LAION-AI/Open-Assistant
37,250
Enhancement Adding not existent lambda name in response headers
diff --git a/localstack/services/awslambda/lambda_api.py b/localstack/services/awslambda/lambda_api.py index 36e4345824805..c4c74d2d2a3e7 100644 --- a/localstack/services/awslambda/lambda_api.py +++ b/localstack/services/awslambda/lambda_api.py @@ -793,19 +793,23 @@ def forward_to_fallback_url(func_arn, data): ...
Enhancement Adding not existent lambda name in response headers. Fixes #1971
https://api.github.com/repos/localstack/localstack/pulls/2397
2020-05-05T21:09:13Z
2020-05-07T21:44:17Z
2020-05-07T21:44:17Z
2020-05-07T21:44:17Z
1,054
localstack/localstack
28,759
Remove extra spider parameter in item pipeline docs
diff --git a/docs/topics/item-pipeline.rst b/docs/topics/item-pipeline.rst index bc26bbebe55..a5f6e07b89d 100644 --- a/docs/topics/item-pipeline.rst +++ b/docs/topics/item-pipeline.rst @@ -215,7 +215,7 @@ item. screenshot_url = self.SPLASH_URL.format(encoded_item_url) request = scrapy.Request(...
Fixes #6008 I looked in other files and this is the only place where we still have an example of passing an extra spider parameter.
https://api.github.com/repos/scrapy/scrapy/pulls/6009
2023-08-10T11:46:17Z
2023-08-10T11:48:44Z
2023-08-10T11:48:44Z
2023-08-10T11:48:44Z
143
scrapy/scrapy
34,279
[events] add tests for ErrorEvent event types
diff --git a/tests/sentry/eventtypes/__init__.py b/tests/sentry/eventtypes/__init__.py new file mode 100644 index 0000000000000..c3961685ab8de --- /dev/null +++ b/tests/sentry/eventtypes/__init__.py @@ -0,0 +1 @@ +from __future__ import absolute_import diff --git a/tests/sentry/eventtypes/test_error.py b/tests/sentry/e...
https://api.github.com/repos/getsentry/sentry/pulls/4261
2016-10-03T23:26:17Z
2016-10-03T23:36:52Z
2016-10-03T23:36:52Z
2020-12-23T10:01:48Z
335
getsentry/sentry
44,182
R.3_609: changed owner<T> to owner<T*> in R.3 per issue #609
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 082bbf524..26c3de932 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7232,7 +7232,7 @@ We can fix that problem by making ownership explicit: class X2 { // ... public: - owner<T> p; // OK: p is owning + own...
In guideline R.3: changed owner<T> references to owner<T*> described in issue #609.
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/612
2016-05-19T01:46:53Z
2016-05-19T15:18:30Z
2016-05-19T15:18:30Z
2016-05-19T17:07:01Z
301
isocpp/CppCoreGuidelines
15,869
Fortinet's FortiOS user adgrp
diff --git a/lib/ansible/modules/network/fortios/fortios_user_adgrp.py b/lib/ansible/modules/network/fortios/fortios_user_adgrp.py new file mode 100644 index 00000000000000..7cc8a1c8378594 --- /dev/null +++ b/lib/ansible/modules/network/fortios/fortios_user_adgrp.py @@ -0,0 +1,260 @@ +#!/usr/bin/python +from __future__...
##### SUMMARY Fortinet is adding Ansible support for FortiOS and FortiGate products. This module follows the same structure, guidelines and ideas given in previous approved module for a parallel feature of FortiGate (webfiltering): https://github.com/ansible/ansible/pull/37196 In this case we are providing a diffe...
https://api.github.com/repos/ansible/ansible/pulls/52831
2019-02-22T16:48:48Z
2019-03-05T11:18:48Z
2019-03-05T11:18:48Z
2019-07-25T16:57:44Z
2,065
ansible/ansible
48,937
Touch up venv docs
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index d3d5ae2b007d5f..62732d22438672 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -47,7 +47,7 @@ Creating virtual environments A virtual environment is a directory tree which contains Python executable files and other files which indica...
https://api.github.com/repos/python/cpython/pulls/14922
2019-07-23T20:51:49Z
2019-07-23T21:34:33Z
2019-07-23T21:34:33Z
2019-07-23T21:34:53Z
1,074
python/cpython
4,321
add: test for proxy.py
diff --git a/test_proxy.py b/test_proxy.py new file mode 100644 index 00000000..fdf9188a --- /dev/null +++ b/test_proxy.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from proxy import Proxy, NoTalkProxy +from io import StringIO +import sys +from time import time + +if sys.version_info < (2, 7)...
#138 brought some tests for the actual proxy.py version on my local machine back to my mind. Runs with Python3.4.1 on Linux.
https://api.github.com/repos/faif/python-patterns/pulls/139
2016-04-25T18:33:21Z
2016-05-21T18:37:31Z
2016-05-21T18:37:31Z
2016-05-21T18:37:31Z
884
faif/python-patterns
33,696
fix json tool
diff --git a/libs/langchain/langchain/tools/json/tool.py b/libs/langchain/langchain/tools/json/tool.py index 6f6473d51e6b47..6c75de20ce5cb2 100644 --- a/libs/langchain/langchain/tools/json/tool.py +++ b/libs/langchain/langchain/tools/json/tool.py @@ -20,7 +20,7 @@ def _parse_input(text: str) -> List[Union[str, int]]: ...
https://api.github.com/repos/langchain-ai/langchain/pulls/9096
2023-08-11T05:50:06Z
2023-08-11T06:39:26Z
2023-08-11T06:39:26Z
2023-08-11T06:39:26Z
499
langchain-ai/langchain
42,962
[Bilibili] fix bilibili 4k
diff --git a/src/you_get/extractors/bilibili.py b/src/you_get/extractors/bilibili.py index 94e5479f65..7ea626f89d 100644 --- a/src/you_get/extractors/bilibili.py +++ b/src/you_get/extractors/bilibili.py @@ -62,7 +62,7 @@ def bilibili_headers(referer=None, cookie=None): @staticmethod def bilibili_api(avid, c...
B站的playurl API加了一个参数 fourk=1 时才会输出4K的播放地址,否则不显示。 bilibili has changed their playurl api, we should add fork=1 to the url params or it will not output the 4k url.
https://api.github.com/repos/soimort/you-get/pulls/2827
2020-09-07T06:34:16Z
2020-10-06T13:22:24Z
2020-10-06T13:22:24Z
2020-10-06T13:22:29Z
238
soimort/you-get
21,402
Fix `test_load_img_url_timeout`
diff --git a/tests/utils/test_image_utils.py b/tests/utils/test_image_utils.py index 1813c2a21f254..5d899c2f1ddf7 100644 --- a/tests/utils/test_image_utils.py +++ b/tests/utils/test_image_utils.py @@ -21,7 +21,7 @@ import numpy as np import pytest from huggingface_hub.file_download import http_get -from requests imp...
# What does this PR do? #25184 added timeout parameter to some function and also a test. But the expected exception in the test is `ConnectTimeout` (on daily CI) instead of `ReadTimeout`, but it is `ReadTimeout` on `CircleCI`. I haven't looked why there are such difference. But this PR updates the expected value ...
https://api.github.com/repos/huggingface/transformers/pulls/25976
2023-09-05T07:08:01Z
2023-09-05T09:34:28Z
2023-09-05T09:34:28Z
2023-09-05T09:35:12Z
212
huggingface/transformers
12,793
Fix Amazon Linux bootstrapping error.
diff --git a/letsencrypt-auto b/letsencrypt-auto index b3e380f9d6c..a3009fe52a2 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -85,6 +85,8 @@ ExperimentalBootstrap() { DeterminePythonVersion() { if command -v python2.7 > /dev/null ; then export LE_PYTHON=${LE_PYTHON:-python2.7} + elif command -v pyth...
https://api.github.com/repos/certbot/certbot/pulls/1516
2015-11-16T08:26:44Z
2015-11-16T20:19:55Z
2015-11-16T20:19:55Z
2016-05-06T19:22:06Z
271
certbot/certbot
565
[workflow] changed to doc build to be on schedule and release
diff --git a/.github/workflows/doc_build_after_merge.yml b/.github/workflows/doc_build_on_schedule_after_release.yml similarity index 69% rename from .github/workflows/doc_build_after_merge.yml rename to .github/workflows/doc_build_on_schedule_after_release.yml index b6fd57b8d2b4..62dfdc67257c 100644 --- a/.github/work...
## 📌 Checklist before creating the PR - [x] I have created an issue for this PR for traceability - [x] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description` - [x] I have added relevant tags if possible for us to better distinguish different PRs ## 🚨 Issue number > Link t...
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/3825
2023-05-24T02:11:52Z
2023-05-24T02:50:19Z
2023-05-24T02:50:19Z
2023-05-24T02:50:19Z
308
hpcaitech/ColossalAI
11,136
scrapy parse: fix the signature of callbacks from the CLI
diff --git a/scrapy/commands/parse.py b/scrapy/commands/parse.py index ac937e46495..c9f8586d3d8 100644 --- a/scrapy/commands/parse.py +++ b/scrapy/commands/parse.py @@ -1,3 +1,4 @@ +import functools import inspect import json import logging @@ -251,39 +252,40 @@ def scraped_data(self, args): return scrape...
Fixes https://github.com/scrapinghub/scrapy-poet/issues/39. It feels kind of hacky, specially the fact that it will not work for “rules”, but I see no way about it given rules depend on the response.
https://api.github.com/repos/scrapy/scrapy/pulls/6182
2023-12-20T11:02:38Z
2024-01-15T12:37:04Z
2024-01-15T12:37:04Z
2024-01-15T12:37:04Z
1,161
scrapy/scrapy
34,350
replay: fix hangling on shutdown while downloading.
diff --git a/selfdrive/ui/replay/route.cc b/selfdrive/ui/replay/route.cc index a7aa4a28e63185..6d2eff18ae5b64 100644 --- a/selfdrive/ui/replay/route.cc +++ b/selfdrive/ui/replay/route.cc @@ -4,7 +4,6 @@ #include <QJsonArray> #include <QJsonDocument> #include <QRegExp> -#include <QtConcurrent> #include "selfdrive/...
QFuture/QtConcurrent will block the qApp->exit() until it finishes executing. `aborting_ = true` in` Segment::~Segment() `will not be called before downloading finished.
https://api.github.com/repos/commaai/openpilot/pulls/22592
2021-10-17T19:09:26Z
2021-10-18T09:03:31Z
2021-10-18T09:03:31Z
2021-10-18T09:49:22Z
542
commaai/openpilot
9,498
[screenwavemedia] remove
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index 578359a5e2b..5723ace8ecf 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -804,7 +804,6 @@ from .screencast import ScreencastIE from .screencastomatic import ScreencastOMaticIE from ....
Screenwave Media no longer offers video streaming services (the video player URLs return a CloudFlare "DNS resolution error"). This PR removes the relevant extractor. The two extractors that depended on ScreenwaveMediaIE were converted to depend on JWPlatformIE. TeamFourIE was renamed TeamFourStarIE, moved into its ...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/11184
2016-11-13T15:18:13Z
2016-11-28T16:17:56Z
2016-11-28T16:17:56Z
2016-11-29T12:27:57Z
3,515
ytdl-org/youtube-dl
50,300
Fix inconsistent NMS IoU value for COCO
diff --git a/train.py b/train.py index 5a434773eff..e58d7c4f034 100644 --- a/train.py +++ b/train.py @@ -457,8 +457,6 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary results, _, _ = test.run(data_dict, batch_size=batch_size // WORLD_SIZE * 2, ...
Evaluation of 'best' and 'last' models will use the same params as the evaluation during the training phase. This PR fixes https://github.com/ultralytics/yolov5/issues/3907 ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhanced default test...
https://api.github.com/repos/ultralytics/yolov5/pulls/3934
2021-07-08T11:39:34Z
2021-07-08T13:29:03Z
2021-07-08T13:29:02Z
2024-01-19T17:05:57Z
143
ultralytics/yolov5
25,706
Improve current word selection
diff --git a/web/extensions/core/editAttention.js b/web/extensions/core/editAttention.js index bebc80b122..cc51a04e51 100644 --- a/web/extensions/core/editAttention.js +++ b/web/extensions/core/editAttention.js @@ -89,24 +89,17 @@ app.registerExtension({ end = nearestEnclosure.end; ...
It currently assumes that words are always separated by spaces, but that's not necessarily the case. For instance, I'm sure you've seen prompts with `commas,but not spaces,like this`, in which case `commas,but` and `spaces,like` each are treated as one word. This way simply seeks forwards and backwards until it find...
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/543
2023-04-21T00:42:04Z
2023-04-21T04:05:31Z
2023-04-21T04:05:31Z
2023-04-21T05:19:42Z
424
comfyanonymous/ComfyUI
17,859
Bump llama-index-core from 0.10.12 to 0.10.24 in /llama-index-integrations/llms/llama-index-llms-friendli
diff --git a/llama-index-integrations/llms/llama-index-llms-friendli/poetry.lock b/llama-index-integrations/llms/llama-index-llms-friendli/poetry.lock index bc69700e34256..bdb6af63c50b1 100644 --- a/llama-index-integrations/llms/llama-index-llms-friendli/poetry.lock +++ b/llama-index-integrations/llms/llama-index-llms-...
Bumps [llama-index-core](https://github.com/run-llama/llama_index) from 0.10.12 to 0.10.24. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/run-llama/llama_index/releases">llama-index-core's releases</a>.</em></p> <blockquote> <h2>v0.10.24</h2> <p>No release notes provided.</p...
https://api.github.com/repos/run-llama/llama_index/pulls/12730
2024-04-10T22:25:48Z
2024-04-11T00:51:07Z
2024-04-11T00:51:06Z
2024-04-11T00:51:07Z
831
run-llama/llama_index
6,788
Show CAN error if message counters are invalid
diff --git a/opendbc b/opendbc index 3270c931c07bd3..b913296c912344 160000 --- a/opendbc +++ b/opendbc @@ -1 +1 @@ -Subproject commit 3270c931c07bd3a47839a1a84c109eb2a7d295a6 +Subproject commit b913296c9123441b2b271c00239929ed388169b5
Prevents a possible controls mismatch where panda notices a message's counter go invalid and set controls_allowed to 0, but openpilot stays engaged
https://api.github.com/repos/commaai/openpilot/pulls/25497
2022-08-19T22:02:50Z
2022-08-20T02:27:17Z
2022-08-20T02:27:17Z
2022-08-20T02:27:17Z
108
commaai/openpilot
9,518
Remove Sogou proxy code
diff --git a/README.md b/README.md index fe312c72d1..8a9ac7cce2 100644 --- a/README.md +++ b/README.md @@ -186,8 +186,6 @@ For a complete list of all available options, see: -x | --http-proxy <HOST:PORT> Use specific HTTP proxy for downloading. -y | --extractor-proxy <HOST:PORT> Use s...
From now on, we no longer support the embedded Sogou proxy in our `develop` branch. It's broken, irrelevant to maintain and will be removed in the next release. Please use `-x` + **_your own proxy**_ instead. For Youku, we have an experimental `-y` option, in which you can make use of [Unblock-Youku](https://github.c...
https://api.github.com/repos/soimort/you-get/pulls/370
2014-07-20T20:23:43Z
2014-07-20T20:26:01Z
2014-07-20T20:26:01Z
2014-07-20T20:26:01Z
3,611
soimort/you-get
21,454
Restore DNS settings in container after dns server shuts down
diff --git a/localstack/dns/plugins.py b/localstack/dns/plugins.py index 684f9f08c6c1d..05566573cfec8 100644 --- a/localstack/dns/plugins.py +++ b/localstack/dns/plugins.py @@ -39,6 +39,7 @@ def stop_server(): try: from localstack.dns import server + server.revert_network_configuration() ...
<!-- Please refer to the contribution guidelines before raising a PR: https://github.com/localstack/localstack/blob/master/CONTRIBUTING.md --> <!-- Why am I raising this PR? Add context such as related issues, PRs, or documentation. --> ## Motivation We are currently seeing failures due to DNS resolution issues on...
https://api.github.com/repos/localstack/localstack/pulls/10221
2024-02-12T10:44:19Z
2024-02-12T12:35:39Z
2024-02-12T12:35:39Z
2024-02-12T12:35:40Z
759
localstack/localstack
28,656
[Binary Tree] Different views of binary tree added
diff --git a/data_structures/binary_tree/diff_views_of_binary_tree.py b/data_structures/binary_tree/diff_views_of_binary_tree.py new file mode 100644 index 000000000000..3198d8065918 --- /dev/null +++ b/data_structures/binary_tree/diff_views_of_binary_tree.py @@ -0,0 +1,210 @@ +r""" +Problem: Given root of a binary tre...
### Describe your change: Problem: Given root of binary Tree, print the 1. binary-tree-right-side-view 2. binary-tree-left-side-view 3. binary-tree-top-side-view 4. binary-tree-bottom-side-view * [X] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Documentation change? ### Ch...
https://api.github.com/repos/TheAlgorithms/Python/pulls/6965
2022-10-11T00:27:46Z
2022-10-17T20:30:01Z
2022-10-17T20:30:01Z
2022-10-22T16:09:04Z
1,513
TheAlgorithms/Python
29,669
[Restudy] Add new extractor for restudy.dk
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 119ec2044ef..3ae7a8a527f 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -316,6 +316,7 @@ from .rai import RaiIE from .rbmaradio import RBMARadioIE from .redtube import RedTubeIE +from .rest...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/4463
2014-12-13T21:27:28Z
2014-12-13T21:41:40Z
2014-12-13T21:41:40Z
2014-12-13T21:41:55Z
649
ytdl-org/youtube-dl
49,855
Removed 'when you lie' image as it is 404 not found and some grammer …
diff --git a/README.md b/README.md index 74c073f9..40eb32f7 100644 --- a/README.md +++ b/README.md @@ -424,8 +424,6 @@ She: Yes! Perfect! Exactly what I wanted to see! | Of course, this is just for fun, and you should never cheat in your coding interviews, because you know what happens when you do. -![when you l...
…changes with Docker section.
https://api.github.com/repos/chubin/cheat.sh/pulls/143
2019-05-31T19:49:05Z
2019-07-13T18:21:30Z
2019-07-13T18:21:30Z
2019-07-13T18:21:30Z
280
chubin/cheat.sh
15,255
[CPU] Add CPU AutoTP UT.
diff --git a/.github/workflows/cpu-inference.yml b/.github/workflows/cpu-inference.yml index 2c555203e950..8bba51dab6fd 100644 --- a/.github/workflows/cpu-inference.yml +++ b/.github/workflows/cpu-inference.yml @@ -76,4 +76,5 @@ jobs: source oneCCL/build/_install/env/setvars.sh unset TORCH_CUDA_AR...
This PR aims to add CPU AutoTP UT. We found that "Salesforce/codegen-350M-mono" model(bf16) cannot pass TestAutoTensorParallelism testcases under torch 2.0. So we skipped this test temporarily.
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4263
2023-09-05T09:34:03Z
2023-09-27T23:59:25Z
2023-09-27T23:59:25Z
2023-09-27T23:59:26Z
1,437
microsoft/DeepSpeed
10,337
Add alarmdotcom sensor status
diff --git a/homeassistant/components/alarm_control_panel/alarmdotcom.py b/homeassistant/components/alarm_control_panel/alarmdotcom.py index 0e96e6448ff01b..31d933732862cb 100644 --- a/homeassistant/components/alarm_control_panel/alarmdotcom.py +++ b/homeassistant/components/alarm_control_panel/alarmdotcom.py @@ -17,7 ...
## Description: This PR adds an `sensor_status` attribute to alarm.com alarm control panels as described in https://github.com/Xorso/pyalarmdotcom/pull/5. ![image](https://user-images.githubusercontent.com/47/39555554-b1cc1ff4-4e3f-11e8-80e8-865b11aad97b.png) ## Checklist: - [x] The code change is tested ...
https://api.github.com/repos/home-assistant/core/pulls/14254
2018-05-03T00:33:44Z
2018-05-05T14:21:59Z
2018-05-05T14:21:59Z
2019-03-21T04:24:21Z
386
home-assistant/core
39,097
Drop Python 3.7 support
diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index 174d245ca99..3044a1af331 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3....
https://api.github.com/repos/scrapy/scrapy/pulls/5953
2023-06-18T14:46:01Z
2023-06-19T09:59:14Z
2023-06-19T09:59:14Z
2023-06-19T09:59:18Z
2,898
scrapy/scrapy
34,182
♻️ Refactor parts that use optional requirements to make them compatible with installations without them
diff --git a/fastapi/openapi/models.py b/fastapi/openapi/models.py index 7284fa5ba8e56..7176e59dda905 100644 --- a/fastapi/openapi/models.py +++ b/fastapi/openapi/models.py @@ -1,7 +1,14 @@ from enum import Enum -from typing import Any, Callable, Dict, Iterable, List, Optional, Union - -from fastapi._compat import PYD...
♻️ Refactor parts that use optional requirements to make them compatible with installations without them
https://api.github.com/repos/tiangolo/fastapi/pulls/9707
2023-06-20T16:13:23Z
2023-06-20T16:22:04Z
2023-06-20T16:22:04Z
2023-06-20T16:22:05Z
617
tiangolo/fastapi
22,705
Add Python 3.7 to CI.
diff --git a/.appveyor.yml b/.appveyor.yml index 11bb6d4b0a..2551a9d96a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,7 +3,7 @@ environment: TOXENV: py,codecov matrix: - - PYTHON: C:\Python36-x64 + - PYTHON: C:\Python37-x64 - PYTHON: C:\Python27-x64 init: diff --git a/.travis.yml b/.travi...
Python 3.7.0 has been released at 2018-06-27. So I think we need to add it to CI.
https://api.github.com/repos/pallets/flask/pulls/3044
2018-12-23T16:24:21Z
2019-01-06T16:00:23Z
2019-01-06T16:00:23Z
2020-11-14T02:33:42Z
924
pallets/flask
20,203
Update version.txt after 0.13.0 release
diff --git a/README.md b/README.md index 6c3d4c0712fb..7bd2c3f928c7 100755 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ <summary>More news</summary> <ul> <li>[2023/08] <a href="https://github.com/microsoft/DeepSpeedExamples/blob/master/inference/huggingface/zero_inference/README.md">DeepSpeed ZeRO-Inference...
**Auto-generated PR to update version.txt after a DeepSpeed release** Released version - 0.13.0 Author - @mrwyattii
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4982
2024-01-19T23:28:04Z
2024-01-19T23:37:17Z
2024-01-19T23:37:17Z
2024-01-19T23:37:20Z
403
microsoft/DeepSpeed
10,527
Fixed #32182 -- Fixed crash of JSONField nested key transforms with subquery annotations on PostgreSQL.
diff --git a/django/db/models/fields/json.py b/django/db/models/fields/json.py index 5b0272a945d44..94596556d240c 100644 --- a/django/db/models/fields/json.py +++ b/django/db/models/fields/json.py @@ -302,7 +302,8 @@ def as_oracle(self, compiler, connection): def as_postgresql(self, compiler, connection): ...
Ticket: https://code.djangoproject.com/ticket/32182
https://api.github.com/repos/django/django/pulls/13657
2020-11-09T18:57:02Z
2020-11-10T07:13:07Z
2020-11-10T07:13:07Z
2020-11-10T09:36:30Z
586
django/django
50,857
Add regexp operator to format filters
diff --git a/README.md b/README.md index b00cdfdcb2b..7446cc2c23e 100644 --- a/README.md +++ b/README.md @@ -1399,7 +1399,7 @@ The following numeric meta fields can be used with comparisons `<`, `<=`, `>`, ` - `asr`: Audio sampling rate in Hertz - `fps`: Frame rate -Also filtering work for comparisons `=` (equals...
## Please follow the guide below - You will be asked some questions, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x]) - Use *Preview* tab to see how your *pull request* will actually look like --- ### Before submitting a *p...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/2698
2022-02-09T04:19:29Z
2022-02-11T21:35:35Z
2022-02-11T21:35:34Z
2022-02-11T21:35:35Z
1,007
yt-dlp/yt-dlp
7,651
DOC do not mention freenode.net in README.rst
diff --git a/README.rst b/README.rst index b5ee90a304eff..4912793942d31 100644 --- a/README.rst +++ b/README.rst @@ -177,10 +177,10 @@ Communication ~~~~~~~~~~~~~ - Mailing list: https://mail.python.org/mailman/listinfo/scikit-learn -- IRC channel: ``#scikit-learn`` at ``webchat.freenode.net`` - Gitter: https://gi...
Let's stop pointing our users to freenode after the [hostile take over](https://en.wikipedia.org/wiki/Freenode#Ownership_change_and_conflict) of the platform. I added GitHub Discussions instead. If there are any IRC addict around here we could always open an "official" scikit-learn channel on https://libera.chat/ or...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/20271
2021-06-15T16:23:38Z
2021-06-15T16:51:35Z
2021-06-15T16:51:35Z
2021-06-16T09:25:34Z
181
scikit-learn/scikit-learn
46,668
Update Ganjoor API url
diff --git a/README.md b/README.md index 688e0baebb..5b1cf94581 100644 --- a/README.md +++ b/README.md @@ -287,7 +287,7 @@ API | Description | Auth | HTTPS | CORS | | [Bible-api](https://bible-api.com/) | Free Bible API with multiple languages | No | Yes | Yes | | [British National Bibliography](http://bnb.data.bl.uk...
<!-- Thank you for taking the time to work on a Pull Request for this project! --> <!-- To ensure your PR is dealt with swiftly please check the following: --> - [x] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md) - [x] My addition is ordered alphabetically - [x]...
https://api.github.com/repos/public-apis/public-apis/pulls/3043
2022-02-03T06:33:12Z
2022-02-07T06:10:24Z
2022-02-07T06:10:24Z
2022-02-07T06:10:25Z
316
public-apis/public-apis
35,866
add ppocrv4 introduction
diff --git a/doc/doc_ch/PP-OCRv4_introduction.md b/doc/doc_ch/PP-OCRv4_introduction.md new file mode 100644 index 0000000000..aba981022f --- /dev/null +++ b/doc/doc_ch/PP-OCRv4_introduction.md @@ -0,0 +1,162 @@ +# PP-OCRv4 + +- [1. 简介](#1) +- [2. 检测优化](#2) +- [3. 识别优化](#3) +- [4. 端到端评估](#4) + + +<a name="1"></a> +## 1....
att
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/10122
2023-06-08T12:34:27Z
2023-06-09T02:08:31Z
2023-06-09T02:08:31Z
2023-06-09T02:08:31Z
3,906
PaddlePaddle/PaddleOCR
42,127
Add Paddle exports to benchmarks
diff --git a/benchmarks.py b/benchmarks.py index 58e083c95d5..161af73c1ed 100644 --- a/benchmarks.py +++ b/benchmarks.py @@ -65,7 +65,7 @@ def run( model_type = type(attempt_load(weights, fuse=False)) # DetectionModel, SegmentationModel, etc. for i, (name, f, suffix, cpu, gpu) in export.export_formats().iter...
Signed-off-by: Glenn Jocher <[email protected]> <!-- Thank you for submitting a YOLOv5 🚀 Pull Request! We want to make contributing to YOLOv5 as easy and transparent as possible. A few tips to get you started: - Search existing YOLOv5 [PRs](https://github.com/ultralytics/yolov5/pull) to see if a simi...
https://api.github.com/repos/ultralytics/yolov5/pulls/9459
2022-09-17T21:14:42Z
2022-09-17T22:17:31Z
2022-09-17T22:17:31Z
2024-01-19T05:48:44Z
888
ultralytics/yolov5
25,621
Magic commands %% (Shell) and %info added
diff --git a/interpreter/terminal_interface/magic_commands.py b/interpreter/terminal_interface/magic_commands.py index f67e203ec..660e07a9b 100644 --- a/interpreter/terminal_interface/magic_commands.py +++ b/interpreter/terminal_interface/magic_commands.py @@ -4,6 +4,7 @@ from .utils.count_tokens import count_messag...
### Describe the changes you have made: Added magic command %info to show system and interpreter information. Added magic command %% to run shell commands from interpreter console. ### Reference any relevant issue (Fixes #000) Saw %% Shell command in the roadmap file. - [x] I have performed a self-review of my...
https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/780
2023-11-21T04:55:54Z
2023-11-21T15:28:24Z
2023-11-21T15:28:24Z
2023-11-21T22:57:07Z
751
OpenInterpreter/open-interpreter
40,830
Update ui.rst
diff --git a/docs/apache-airflow/ui.rst b/docs/apache-airflow/ui.rst index 1889f6883fc8a..5b416589283d1 100644 --- a/docs/apache-airflow/ui.rst +++ b/docs/apache-airflow/ui.rst @@ -76,7 +76,7 @@ Task groups are indicated by a caret and can be opened or closed: .. image:: img/grid_task_group.png -Mapped Tasks are i...
Fix minor typos <!-- Thank you for contributing! Please make sure that your code changes are covered with tests. And in case of new features or big changes remember to adjust the documentation. Feel free to ping committers for the review! In case of existing issue, reference it using one of the following: ...
https://api.github.com/repos/apache/airflow/pulls/24514
2022-06-17T07:10:18Z
2022-06-17T11:10:49Z
2022-06-17T11:10:49Z
2022-07-01T06:33:37Z
253
apache/airflow
14,665
import os
diff --git a/Insecure Deserialization/Python.md b/Insecure Deserialization/Python.md index 41887f6531..563db1cf90 100644 --- a/Insecure Deserialization/Python.md +++ b/Insecure Deserialization/Python.md @@ -3,6 +3,7 @@ ## Pickle The following code is a simple example of using `cPickle` in order to generate an aut...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/486
2022-03-24T06:09:47Z
2022-04-18T18:58:40Z
2022-04-18T18:58:40Z
2022-04-18T18:58:40Z
352
swisskyrepo/PayloadsAllTheThings
8,392
[requires.io] dependency update on main branch
diff --git a/setup.py b/setup.py index 222fea912b..073f0cbbcd 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ # https://packaging.python.org/en/latest/requirements/#install-requires # It is not considered best practice to use install_requires to pin dependencies to specific versions. install_requi...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/4664
2021-06-27T20:40:59Z
2021-06-28T17:03:31Z
2021-06-28T17:03:31Z
2021-06-28T17:03:34Z
180
mitmproxy/mitmproxy
27,721
Backport/2.7/51953
diff --git a/changelogs/fragments/51953-onepassword_facts-bug-fixes.yaml b/changelogs/fragments/51953-onepassword_facts-bug-fixes.yaml new file mode 100644 index 00000000000000..ae32c5bdedbbc6 --- /dev/null +++ b/changelogs/fragments/51953-onepassword_facts-bug-fixes.yaml @@ -0,0 +1,2 @@ +bugfixes: + - onepassword_fac...
##### SUMMARY This is the requested backport pull request for #51953. It fixes issues which prevented this module working with 1Password CLI version 0.5.5 (or greater). Older versions of the CLI were deprecated by 1Password and will no longer function. ##### ISSUE TYPE - Backport Pull Request ##### COMPO...
https://api.github.com/repos/ansible/ansible/pulls/53657
2019-03-11T20:31:01Z
2019-03-11T22:18:41Z
2019-03-11T22:18:40Z
2019-07-25T17:08:55Z
1,721
ansible/ansible
49,530
run rst2pseudoxml.py with shell=true
diff --git a/tests/test_docs.py b/tests/test_docs.py index 766810afd8..3966f81d94 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -34,7 +34,8 @@ def test_rst_file_syntax(filename): p = subprocess.Popen( ['rst2pseudoxml.py', '--report=1', '--exit-status=1', filename], stderr=subprocess...
makes rst2pseudoxml.py work properly on Windows executes via a shell instead of not working also requires that the py extension is associated with the python interpreter
https://api.github.com/repos/httpie/cli/pulls/821
2019-12-04T10:42:36Z
2019-12-04T12:33:14Z
2019-12-04T12:33:14Z
2019-12-04T12:33:17Z
141
httpie/cli
34,164
fix bug
diff --git a/doc/doc_ch/ppocr_introduction.md b/doc/doc_ch/ppocr_introduction.md index d9f9b533fa..1955426438 100644 --- a/doc/doc_ch/ppocr_introduction.md +++ b/doc/doc_ch/ppocr_introduction.md @@ -116,7 +116,7 @@ PP-OCR中英文模型列表如下: | 模型简介 | 模型名称 | 推荐场景 | 检测模型 ...
att
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/6100
2022-04-29T09:15:04Z
2022-04-29T09:50:44Z
2022-04-29T09:50:44Z
2022-04-29T09:50:44Z
3,619
PaddlePaddle/PaddleOCR
42,748
Correct venv3 detection on windows
diff --git a/tools/_venv_common.py b/tools/_venv_common.py index cce88f8261e..b180518f9fd 100755 --- a/tools/_venv_common.py +++ b/tools/_venv_common.py @@ -55,7 +55,7 @@ def main(venv_name, venv_args, args): print('Please run the following command to activate developer environment:') print('source {0...
A little typo in the `_venv_common.py` block the script to finish correctly once the virtual environment has been setup on Windows. This PR fixes that.
https://api.github.com/repos/certbot/certbot/pulls/6490
2018-11-09T10:14:30Z
2018-11-10T00:17:18Z
2018-11-10T00:17:18Z
2018-11-14T22:42:34Z
175
certbot/certbot
460
[daftsex] fix: update domain and embed player url
diff --git a/yt_dlp/extractor/daftsex.py b/yt_dlp/extractor/daftsex.py index 551d5e3abeb..92510c767c5 100644 --- a/yt_dlp/extractor/daftsex.py +++ b/yt_dlp/extractor/daftsex.py @@ -1,6 +1,7 @@ from .common import InfoExtractor from ..compat import compat_b64decode from ..utils import ( + ExtractorError, int_...
### Description of your *pull request* and other information This PR implements the fix, provided by @NiklasFarber1024, for #5881 by updating the VALID_URL regex with the new domain as well as updating the url for the embed player where the video parameters are parsed. Fixes #5881 <details open><summary>Tem...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/5966
2023-01-05T17:20:33Z
2023-05-29T03:31:26Z
2023-05-29T03:31:26Z
2023-05-29T06:14:32Z
1,041
yt-dlp/yt-dlp
7,494
Bybit: adjust stop handling for fetchMyTrades, fetchOrders and fetchOpenOrders
diff --git a/ts/src/bybit.ts b/ts/src/bybit.ts index bd32a968591a..8a899559c7b4 100644 --- a/ts/src/bybit.ts +++ b/ts/src/bybit.ts @@ -4462,11 +4462,7 @@ export default class bybit extends Exchange { const isStop = this.safeValueN (params, [ 'trigger', 'stop' ], false); params = this.omit (params, [ '...
Removed `orderFilter` from `fetchMyTrades` because it's not actually supported for the endpoint we're using. Edited the spot trigger handling for `fetchOrders` and `fetchOpenOrders`, so that `orderFilter` uses `StopOrder`: Added static request tests for `fetchOrders` and `fetchOpenOrders` spot trigger orders. ```...
https://api.github.com/repos/ccxt/ccxt/pulls/20856
2024-01-18T02:45:09Z
2024-01-18T11:01:38Z
2024-01-18T11:01:38Z
2024-01-18T11:01:38Z
1,462
ccxt/ccxt
13,080
Format and Add a link to leaderboard
diff --git a/fastchat/llm_judge/README.md b/fastchat/llm_judge/README.md index 5565ea941e..fef4b769dd 100644 --- a/fastchat/llm_judge/README.md +++ b/fastchat/llm_judge/README.md @@ -1,5 +1,5 @@ # LLM Judge -| [Paper](https://arxiv.org/abs/2306.05685) | [Demo](https://huggingface.co/spaces/lmsys/mt-bench) | +| [Paper...
https://api.github.com/repos/lm-sys/FastChat/pulls/1764
2023-06-23T00:03:34Z
2023-06-23T00:06:00Z
2023-06-23T00:06:00Z
2023-06-23T20:43:54Z
1,242
lm-sys/FastChat
41,636
Added OpenShift as a free hosting provider alternative
diff --git a/docs/deploying/index.rst b/docs/deploying/index.rst index 60b239f8cf..272a9e27a0 100644 --- a/docs/deploying/index.rst +++ b/docs/deploying/index.rst @@ -18,6 +18,7 @@ Hosted options -------------- - `Deploying Flask on Heroku <https://devcenter.heroku.com/articles/getting-started-with-python>`_ +- `De...
https://api.github.com/repos/pallets/flask/pulls/1414
2015-03-31T23:13:37Z
2015-04-01T14:13:31Z
2015-04-01T14:13:31Z
2020-11-14T05:52:41Z
193
pallets/flask
19,954
[3.8] bpo-41735: Fix thread locks in zlib module may go wrong in rare case
diff --git a/Misc/NEWS.d/next/Library/2020-09-07-21-51-17.bpo-41735.NKqGKy.rst b/Misc/NEWS.d/next/Library/2020-09-07-21-51-17.bpo-41735.NKqGKy.rst new file mode 100644 index 00000000000000..9e36435a364eaf --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-09-07-21-51-17.bpo-41735.NKqGKy.rst @@ -0,0 +1 @@ +Fix thread loc...
<!-- issue-number: [bpo-41735](https://bugs.python.org/issue41735) --> https://bugs.python.org/issue41735 <!-- /issue-number -->
https://api.github.com/repos/python/cpython/pulls/22132
2020-09-07T13:53:25Z
2021-04-26T19:48:20Z
2021-04-26T19:48:20Z
2021-04-27T00:45:11Z
472
python/cpython
3,990
✏️ Fix typos in docstrings
diff --git a/fastapi/security/oauth2.py b/fastapi/security/oauth2.py index be3e18cd80cf5..0606291b8a70d 100644 --- a/fastapi/security/oauth2.py +++ b/fastapi/security/oauth2.py @@ -441,7 +441,7 @@ def __init__( bool, Doc( """ - By default, if no HTTP Auhtorizati...
Simple typo fix: when looking at the [security reference in the docs](https://fastapi.tiangolo.com/reference/security/?h=auhtorization) I found and fixed the typo from `Auhtorization` to `Authorization`.
https://api.github.com/repos/tiangolo/fastapi/pulls/11295
2024-03-14T12:50:06Z
2024-03-14T16:38:24Z
2024-03-14T16:38:24Z
2024-03-14T16:39:12Z
359
tiangolo/fastapi
22,852
ja: Swap VARCHAR and CHAR translation error
diff --git a/README-ja.md b/README-ja.md index 86bf3443ad..f9a0024244 100644 --- a/README-ja.md +++ b/README-ja.md @@ -903,7 +903,7 @@ SQLチューニングは広範な知識を必要とする分野で多くの [本 ##### スキーマを絞る * より早い接続を得るために、連続したブロックの中のディスクにMySQLをダンプする。 -* 長さの決まったフィールドに対しては `CHAR` よりも `VARCHAR` を使うようにしましょう。 +* 長さの決まったフィールドに対しては `VARCHAR` よりも `C...
This PR fixes incorrect translation. This line ``` 長さの決まったフィールドに対しては CHAR よりも VARCHAR を使うようにしましょう。 ``` should be ``` 長さの決まったフィールドに対しては VARCHAR よりも CHAR を使うようにしましょう。 ``` Original: ``` Use CHAR instead of VARCHAR for fixed-length fields. ```
https://api.github.com/repos/donnemartin/system-design-primer/pulls/169
2018-07-14T09:33:31Z
2018-07-15T00:05:15Z
2018-07-15T00:05:15Z
2018-07-15T00:05:29Z
335
donnemartin/system-design-primer
36,696
Fix tokenizer for vllm worker
diff --git a/fastchat/serve/vllm_worker.py b/fastchat/serve/vllm_worker.py index 9da06bfdc2..0af680bb5f 100644 --- a/fastchat/serve/vllm_worker.py +++ b/fastchat/serve/vllm_worker.py @@ -55,6 +55,10 @@ def __init__( f"Loading the model {self.model_names} on worker {worker_id}, worker type: vLLM worker..." ...
<!-- Thank you for your contribution! --> <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. --> ## Why are these changes needed? A recent change to vLLM has changed the tokenizer structure by ...
https://api.github.com/repos/lm-sys/FastChat/pulls/2984
2024-01-31T00:05:35Z
2024-01-31T20:14:27Z
2024-01-31T20:14:27Z
2024-01-31T20:14:30Z
213
lm-sys/FastChat
41,597
Fixed division by zero bug in alpha compositing
diff --git a/camera/camera.py b/camera/camera.py index 1217f86f1a..2943162cb9 100644 --- a/camera/camera.py +++ b/camera/camera.py @@ -430,10 +430,15 @@ def overlay_rgba_array(self, arr): ] out_a = src_a + dst_a*(1.0-src_a) + + # When the output alpha is 0 for full transparency, + # w...
https://api.github.com/repos/3b1b/manim/pulls/133
2018-02-20T20:35:07Z
2018-02-20T20:37:49Z
2018-02-20T20:37:49Z
2018-02-20T20:37:49Z
492
3b1b/manim
18,242
regularization and constraints for Convolution1D and Convolution2D
diff --git a/keras/layers/convolutional.py b/keras/layers/convolutional.py index a250ed461b1..6d4db99ec74 100644 --- a/keras/layers/convolutional.py +++ b/keras/layers/convolutional.py @@ -13,7 +13,8 @@ class Convolution1D(Layer): def __init__(self, nb_filter, stack_size, filter_length, init='uniform', a...
fix for #170, including constraints. Nothing fancy, just copied the code from the dense layer, but I suppose it should work the same.
https://api.github.com/repos/keras-team/keras/pulls/218
2015-06-12T12:03:25Z
2015-06-12T18:07:22Z
2015-06-12T18:07:22Z
2015-06-12T18:07:22Z
479
keras-team/keras
47,047
[2.7] advance copyright years to 2018 (GH-5094).
diff --git a/Doc/copyright.rst b/Doc/copyright.rst index 22d7705846ea93..540ff5ef0593af 100644 --- a/Doc/copyright.rst +++ b/Doc/copyright.rst @@ -4,7 +4,7 @@ Copyright Python and this documentation is: -Copyright © 2001-2016 Python Software Foundation. All rights reserved. +Copyright © 2001-2018 Python Software F...
https://api.github.com/repos/python/cpython/pulls/5105
2018-01-05T06:38:25Z
2018-01-05T07:02:11Z
2018-01-05T07:02:11Z
2018-01-05T07:02:24Z
1,544
python/cpython
4,657
the file has no function [self.vector_slope]
diff --git a/ppocr/data/imaug/fce_targets.py b/ppocr/data/imaug/fce_targets.py index 1818480867..4d1903c0a7 100644 --- a/ppocr/data/imaug/fce_targets.py +++ b/ppocr/data/imaug/fce_targets.py @@ -22,6 +22,9 @@ from numpy.linalg import norm import sys +def vector_slope(vec): + assert len(vec) == 2 + return abs(...
self.vector_slope 方法不存在,应该是漏掉了
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/6261
2022-05-12T04:01:50Z
2022-05-12T11:46:15Z
2022-05-12T11:46:15Z
2022-05-12T11:46:15Z
349
PaddlePaddle/PaddleOCR
42,523
Define Vertex examples as a Sequence
diff --git a/llama_index/llms/vertex.py b/llama_index/llms/vertex.py index fbadb297c8d8f..7ef8c2e33134d 100644 --- a/llama_index/llms/vertex.py +++ b/llama_index/llms/vertex.py @@ -33,7 +33,7 @@ class Vertex(LLM): model: str = Field(description="The vertex model to use.") temperature: float = Field(descriptio...
# Description Previous `examples` definition was implying it's an optional `ChatMessage` but in fact it should be an optional Sequence of ChatMessages. [llama_index/llms/vertex_utils.py#L164](https://github.com/run-llama/llama_index/blob/main/llama_index/llms/vertex_utils.py#L164) clearly shows this should be kind o...
https://api.github.com/repos/run-llama/llama_index/pulls/8916
2023-11-14T16:30:49Z
2023-11-14T22:33:08Z
2023-11-14T22:33:08Z
2023-11-14T22:33:08Z
292
run-llama/llama_index
6,145
Future proof octal number: 0755 --> 0o755
diff --git a/code/default/launcher/autorun.py b/code/default/launcher/autorun.py index 2939d04b7d..f32a20ddda 100644 --- a/code/default/launcher/autorun.py +++ b/code/default/launcher/autorun.py @@ -126,7 +126,7 @@ def add(name, cmd): xlog.info("create file:%s", plist_file_path) if not os.path.isdir...
https://api.github.com/repos/XX-net/XX-Net/pulls/6180
2017-08-03T15:10:13Z
2017-09-01T03:28:55Z
2017-09-01T03:28:55Z
2017-09-01T04:05:57Z
152
XX-net/XX-Net
17,387
Add tests for deprecation helpers
diff --git a/tests/helpers/test_deprecation.py b/tests/helpers/test_deprecation.py new file mode 100644 index 000000000000..8064c2ea5d67 --- /dev/null +++ b/tests/helpers/test_deprecation.py @@ -0,0 +1,85 @@ +"""Test deprecation helpers.""" +from homeassistant.helpers.deprecation import ( + deprecated_substitute, ge...
## Description: Add tests for deprecation helpers
https://api.github.com/repos/home-assistant/core/pulls/7452
2017-05-05T15:08:04Z
2017-05-06T17:10:49Z
2017-05-06T17:10:49Z
2017-08-12T20:54:26Z
630
home-assistant/core
39,416
Version 0.55.1 (just pointing to new docs)
diff --git a/docs/advanced_concepts.md b/docs/advanced_concepts.md index 319d17d640c9..3f3f130cceb9 100644 --- a/docs/advanced_concepts.md +++ b/docs/advanced_concepts.md @@ -159,11 +159,3 @@ chart.add_rows(data2) Coming soon! Ping us in the [community forum](https://discuss.streamlit.io/) if you just can't wait an...
https://api.github.com/repos/streamlit/streamlit/pulls/1089
2020-02-12T11:49:14Z
2020-02-12T19:28:47Z
2020-02-12T19:28:47Z
2020-02-15T22:59:03Z
1,504
streamlit/streamlit
22,106
install.sh: sudo apt-get install python3-pip
diff --git a/install.sh b/install.sh index 2d243de1..3ef2ae9a 100644 --- a/install.sh +++ b/install.sh @@ -45,7 +45,7 @@ if [ $choice == 1 ] || [ $choice == 2 ]; then echo -e ${BLUE}"[✔] Loading ... " if [ $choice == 1 ]; then sudo apt-get update && apt-get upgrade - sudo apt-get install ...
Replaces #219
https://api.github.com/repos/Z4nzu/hackingtool/pulls/253
2022-06-12T20:07:04Z
2022-06-13T10:24:52Z
2022-06-13T10:24:52Z
2022-06-13T10:25:30Z
161
Z4nzu/hackingtool
9,876
[manyvids] Improve extraction
diff --git a/youtube_dl/extractor/manyvids.py b/youtube_dl/extractor/manyvids.py index e8d7163e4ab..6805102ba3b 100644 --- a/youtube_dl/extractor/manyvids.py +++ b/youtube_dl/extractor/manyvids.py @@ -1,11 +1,16 @@ # coding: utf-8 from __future__ import unicode_literals +import re + from .common import InfoExtract...
<details> <summary>Boilerplate: own code, improvement</summary> ## Please follow the guide below - You will be asked some questions, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x]) - Use *Preview* tab to see how your *pull req...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/31172
2022-08-15T15:06:47Z
2022-10-10T18:26:32Z
2022-10-10T18:26:32Z
2022-10-10T18:26:32Z
1,811
ytdl-org/youtube-dl
49,914
⬆ Bump dawidd6/action-download-artifact from 2.24.3 to 2.26.0
diff --git a/.github/workflows/preview-docs.yml b/.github/workflows/preview-docs.yml index 2af56e2bcaff2..cf0db59ab998c 100644 --- a/.github/workflows/preview-docs.yml +++ b/.github/workflows/preview-docs.yml @@ -16,7 +16,7 @@ jobs: rm -rf ./site mkdir ./site - name: Download Artifact Docs ...
Bumps [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) from 2.24.3 to 2.26.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dawidd6/action-download-artifact/commit/5e780fc7bbd0cac69fc73271ed86edf5dcb72d67"><code>5e780fc</code></a> Use <code>commit</code...
https://api.github.com/repos/tiangolo/fastapi/pulls/6034
2023-02-23T11:21:48Z
2023-03-10T18:50:08Z
2023-03-10T18:50:08Z
2023-03-10T18:50:09Z
320
tiangolo/fastapi
23,290