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 |
|---|---|---|---|---|---|---|---|---|---|---|
optimize stopping strings processing | diff --git a/modules/callbacks.py b/modules/callbacks.py
index 51ecbdd72d..a91c94a04d 100644
--- a/modules/callbacks.py
+++ b/modules/callbacks.py
@@ -9,25 +9,30 @@
import modules.shared as shared
-# Copied from https://github.com/PygmalionAI/gradio-ui/
class _SentinelTokenStoppingCriteria(transformers.StoppingCr... | # TLDR
Having a bunch of `custom_stopping_strings` made generation really slow. This PR makes it go fast again.
# Technical detail
The code for stopping tokens essentially just, repeatedly scanned the *entire* generated content for stop strings. In theory this sounds fine, until you realize: the callback is ra... | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/1625 | 2023-04-28T12:51:00Z | 2023-05-02T04:21:55Z | 2023-05-02T04:21:55Z | 2024-03-03T00:00:02Z | 398 | oobabooga/text-generation-webui | 26,462 |
Fix typos | diff --git a/docs/contributors/README.md b/docs/contributors/README.md
index 20b3c278fb..9a739cd543 100644
--- a/docs/contributors/README.md
+++ b/docs/contributors/README.md
@@ -1,3 +1,3 @@
-Here we maintain a database of contributors, from which we generate credits on release blog posts and social medias.
+Here we ma... | Found via `codespell -L datas`. | https://api.github.com/repos/httpie/cli/pulls/1431 | 2022-08-24T13:29:17Z | 2022-10-01T10:34:41Z | 2022-10-01T10:34:41Z | 2022-10-01T10:53:30Z | 586 | httpie/cli | 33,834 |
feat: add cognito-scanner tool for AWS pentest | diff --git a/Methodology and Resources/Cloud - AWS Pentest.md b/Methodology and Resources/Cloud - AWS Pentest.md
index fc8d99993b..e696fd04c3 100644
--- a/Methodology and Resources/Cloud - AWS Pentest.md
+++ b/Methodology and Resources/Cloud - AWS Pentest.md
@@ -185,6 +185,17 @@
find_admins: Look at IAM policies... | Cognito Scanner is a CLI open-source tool. It enables to pentest Cognito AWS instance easily. It can be installed through a python package | https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/663 | 2023-08-08T08:43:54Z | 2023-10-09T21:19:43Z | 2023-10-09T21:19:43Z | 2023-10-09T21:19:43Z | 322 | swisskyrepo/PayloadsAllTheThings | 8,381 |
[MRG + 1] docs: Change example of KDTree to prevent DeprecationWarning | diff --git a/sklearn/neighbors/binary_tree.pxi b/sklearn/neighbors/binary_tree.pxi
index de1e367b06461..db658f29b4d50 100755
--- a/sklearn/neighbors/binary_tree.pxi
+++ b/sklearn/neighbors/binary_tree.pxi
@@ -293,11 +293,10 @@ Examples
Query for k-nearest neighbors
>>> import numpy as np
-
>>> np.random.se... | <!--
Thanks for contributing a pull request! Please ensure you have taken a look at
the contribution guidelines: https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md#Contributing-Pull-Requests
-->
#### Reference Issue
Fixes #6906
<!-- Example: Fixes #1234 -->
#### What does this implement/fix? Ex... | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/6962 | 2016-07-06T17:22:11Z | 2016-07-16T08:08:46Z | 2016-07-16T08:08:46Z | 2016-07-16T08:08:49Z | 240 | scikit-learn/scikit-learn | 46,725 |
[3.10] Add missing 'is' to `cmath.log()` docstring (GH-102049) | diff --git a/Modules/clinic/cmathmodule.c.h b/Modules/clinic/cmathmodule.c.h
index 4b6653aa219422..d4779a98d803ce 100644
--- a/Modules/clinic/cmathmodule.c.h
+++ b/Modules/clinic/cmathmodule.c.h
@@ -638,7 +638,7 @@ PyDoc_STRVAR(cmath_log__doc__,
"\n"
"log(z[, base]) -> the logarithm of z to the given base.\n"
"\n"
-... | Fix missing 'is' in cmath.log() docstring.
(cherry picked from commit 71f614ef2a3d66213b9cae807cbbc1ed03741221)
Automerge-Triggered-By: GH:mdickinson | https://api.github.com/repos/python/cpython/pulls/102280 | 2023-02-26T13:33:45Z | 2023-02-26T14:56:11Z | 2023-02-26T14:56:11Z | 2023-02-26T14:56:20Z | 529 | python/cpython | 3,993 |
Fix a typo | diff --git a/README.md b/README.md
index e2cd15563..55828052a 100644
--- a/README.md
+++ b/README.md
@@ -175,7 +175,7 @@ using the matched rule and runs it. Rules enabled by default are as follows:
* `git_pull_clone` – clones instead of pulling when the repo does not exist;
* `git_push` – adds `--set-upst... | https://api.github.com/repos/nvbn/thefuck/pulls/518 | 2016-06-23T12:33:47Z | 2016-06-27T20:15:41Z | 2016-06-27T20:15:41Z | 2016-06-27T20:15:41Z | 282 | nvbn/thefuck | 30,765 | |
Fix: EventBus: match null value for anything-but rule | diff --git a/localstack/services/events/provider.py b/localstack/services/events/provider.py
index f34c1fe47c006..5cf2125b6b82c 100644
--- a/localstack/services/events/provider.py
+++ b/localstack/services/events/provider.py
@@ -516,9 +516,9 @@ def filter_event_based_on_event_format(
):
def filter_event(event_pat... | <!-- 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
As reported in [#9711](https://github.com/localstack/localstack/... | https://api.github.com/repos/localstack/localstack/pulls/9925 | 2023-12-21T12:44:29Z | 2023-12-22T14:30:35Z | 2023-12-22T14:30:35Z | 2024-01-22T17:33:21Z | 1,507 | localstack/localstack | 28,458 |
remove --py36 | diff --git a/README.md b/README.md
index 57272aefc3..8df2f9edc3 100644
--- a/README.md
+++ b/README.md
@@ -77,11 +77,6 @@ Options:
Python versions that should be supported by
Black's output. [default: per-file auto-
... | Fixes #703. | https://api.github.com/repos/psf/black/pulls/724 | 2019-02-23T05:58:41Z | 2019-02-24T17:15:04Z | 2019-02-24T17:15:04Z | 2019-02-24T17:15:08Z | 1,471 | psf/black | 24,317 |
fix(bug): toml misconfiguration | diff --git a/pyproject.toml b/pyproject.toml
index 52bd0b921a..fd505f4dbf 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -11,6 +11,7 @@ dependencies = [
'black == 23.3.0',
'openai == 0.27.8',
'ruff == 0.0.272',
+ 'pre-commit == 3.3.3',
'typer == 0.9.0'
]
| "pre-commit: command not found" was generated upon clean codepsace; "pre-commit" was in /requirements.txt, but missing in .toml file.
**Steps to reproduce**
- create default Codespace
- run `make install`
- See error: `pre-commit: command not found` | https://api.github.com/repos/gpt-engineer-org/gpt-engineer/pulls/189 | 2023-06-19T07:18:36Z | 2023-06-19T11:09:15Z | 2023-06-19T11:09:15Z | 2023-06-19T11:09:23Z | 123 | gpt-engineer-org/gpt-engineer | 33,112 |
identity: Autodetect FreeIPA server with DNS | diff --git a/lib/ansible/module_utils/ipa.py b/lib/ansible/module_utils/ipa.py
index 381afac7d12583..0d3eb1d3b45ead 100644
--- a/lib/ansible/module_utils/ipa.py
+++ b/lib/ansible/module_utils/ipa.py
@@ -28,13 +28,28 @@
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import json
+import so... | ##### SUMMARY
This adds the ability for the freeIPA related modules to be able to
auto-detect the IPA server through DNS.
This takes advantage of the fact that a lot of FreeIPA deployments
configure their hosts to use IPA as the nameserver.
This check is only used if we didn't set neither the ipa_host paramete... | https://api.github.com/repos/ansible/ansible/pulls/50988 | 2019-01-16T16:37:49Z | 2019-02-01T08:19:05Z | 2019-02-01T08:19:05Z | 2019-07-25T16:33:47Z | 804 | ansible/ansible | 49,109 |
Add new algorithm for Armstrong numbers | diff --git a/maths/armstrong_numbers.py b/maths/armstrong_numbers.py
index af25688dbacc..ce8c62182fd9 100644
--- a/maths/armstrong_numbers.py
+++ b/maths/armstrong_numbers.py
@@ -1,26 +1,24 @@
"""
-An Armstrong number is equal to the sum of its own digits each raised
-to the power of the number of digits.
+An Armst... | Add a new algorithm for verify if a number is an Armstrong.
* [x] Add an algorithm?
* [ ] Fix a bug or typo in an existing algorithm?
* [x] Documentation change?
### **Checklist:**
* [x] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md).
* [x] This pull request... | https://api.github.com/repos/TheAlgorithms/Python/pulls/4474 | 2021-06-02T14:21:04Z | 2021-06-04T20:28:26Z | 2021-06-04T20:28:26Z | 2021-06-05T01:07:13Z | 1,082 | TheAlgorithms/Python | 29,666 |
[MRG+1] Updated architecture graph for organization/clarity | diff --git a/docs/topics/_images/scrapy_architecture_02.png b/docs/topics/_images/scrapy_architecture_02.png
new file mode 100644
index 00000000000..80be02078a1
Binary files /dev/null and b/docs/topics/_images/scrapy_architecture_02.png differ
diff --git a/docs/topics/architecture.rst b/docs/topics/architecture.rst
ind... | Found the first graph hard to read when first learning about Scrapy architecture.
Open to edits!!
| https://api.github.com/repos/scrapy/scrapy/pulls/2165 | 2016-08-04T17:08:42Z | 2016-08-06T01:46:28Z | 2016-08-06T01:46:28Z | 2016-08-06T01:46:28Z | 820 | scrapy/scrapy | 34,884 |
Lazy import torch in utils.py | diff --git a/fastchat/utils.py b/fastchat/utils.py
index 9dce8bafd4..5680ae1127 100644
--- a/fastchat/utils.py
+++ b/fastchat/utils.py
@@ -12,7 +12,6 @@
import warnings
import requests
-import torch
from fastchat.constants import LOGDIR
@@ -122,6 +121,8 @@ def disable_torch_init():
def get_gpu_memory(max_gp... | <!-- 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?
It appears that torch is being used in the `disable_torch_init`... | https://api.github.com/repos/lm-sys/FastChat/pulls/2051 | 2023-07-22T04:53:27Z | 2023-07-22T05:26:52Z | 2023-07-22T05:26:52Z | 2023-07-22T06:34:54Z | 227 | lm-sys/FastChat | 41,286 |
Adds minor grammar fixes that involve missing commas. | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index aa155969d..63e9188c2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -20,7 +20,7 @@ your local changes are appropriate to pull back into the original guidelines, pl
[Issue](https://github.com/isocpp/CppCoreGuidelines/issues) which can lead to a pull request.
... | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/535 | 2016-02-24T20:08:27Z | 2016-03-20T16:36:54Z | 2016-03-20T16:36:54Z | 2016-03-20T16:36:54Z | 590 | isocpp/CppCoreGuidelines | 15,285 | |
[test] fix shardformer tests | diff --git a/tests/test_shardformer/test_model/test_shard_chatglm2.py b/tests/test_shardformer/test_model/test_shard_chatglm2.py
index 29d3592bf34e..78d752b69003 100644
--- a/tests/test_shardformer/test_model/test_shard_chatglm2.py
+++ b/tests/test_shardformer/test_model/test_shard_chatglm2.py
@@ -11,7 +11,6 @@
bu... | ## 📌 Checklist before creating the PR
- [ ] I have created an issue for this PR for traceability
- [ ] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description`
- [ ] 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/5514 | 2024-03-26T09:26:45Z | 2024-03-27T02:17:17Z | 2024-03-27T02:17:17Z | 2024-03-27T02:17:20Z | 2,510 | hpcaitech/ColossalAI | 11,443 |
Add additional coverage for ESPHome sensor and number | diff --git a/.coveragerc b/.coveragerc
index 70d9fd5e0e243e..984adba59f74fd 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -312,7 +312,6 @@ omit =
homeassistant/components/esphome/domain_data.py
homeassistant/components/esphome/entry_data.py
homeassistant/components/esphome/light.py
- homeassistant/com... | ## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
or resolves a feature request, be sure to link to that issue in the
additional information section.
-->
Add additional coverage for ESPHome `en... | https://api.github.com/repos/home-assistant/core/pulls/95226 | 2023-06-26T03:48:09Z | 2023-06-26T10:29:38Z | 2023-06-26T10:29:38Z | 2023-06-27T11:18:26Z | 2,084 | home-assistant/core | 38,772 |
Add m3u8 | diff --git a/README.md b/README.md
index 0127fa65b..15d34a33b 100644
--- a/README.md
+++ b/README.md
@@ -286,6 +286,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
* [talkbox](http://scikits.appspot.com/talkbox) - A Python library for speech/signal processing.
* [TimeSide](https:... | Add m3u8 to the Audio Section
| https://api.github.com/repos/vinta/awesome-python/pulls/188 | 2014-08-09T03:31:29Z | 2014-08-09T07:19:39Z | 2014-08-09T07:19:39Z | 2014-08-09T07:19:39Z | 187 | vinta/awesome-python | 27,267 |
[iqiyi] Correct a typo in iqiyi.py | diff --git a/youtube_dl/extractor/iqiyi.py b/youtube_dl/extractor/iqiyi.py
index cd11aa70f01..5df674daf14 100644
--- a/youtube_dl/extractor/iqiyi.py
+++ b/youtube_dl/extractor/iqiyi.py
@@ -150,7 +150,7 @@ def run(self, target, ip, timestamp):
elif function in other_functions:
other_functio... | ## 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/ytdl-org/youtube-dl/pulls/26884 | 2020-10-14T15:07:16Z | 2020-10-17T16:02:18Z | 2020-10-17T16:02:17Z | 2020-10-17T20:09:35Z | 142 | ytdl-org/youtube-dl | 49,918 |
Adding naive-apl | diff --git a/README.md b/README.md
index cae88b7f..26826484 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,8 @@ For a list of free machine learning books available for download, go [here](http
<!-- MarkdownTOC depth=4 -->
+- [APL](#apl)
+ - [General-Purpose Machine Learning](#apl-general-purpose)
- [C](#c... | Adding a naive bayesian classifier written in APL
| https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/280 | 2016-05-25T13:26:03Z | 2016-05-25T13:35:52Z | 2016-05-25T13:35:52Z | 2016-05-25T13:35:57Z | 243 | josephmisiti/awesome-machine-learning | 52,237 |
Add a comment about lowercase env. variables precedence over uppercase | diff --git a/requests/utils.py b/requests/utils.py
index 3f50d485d9..07f8c7f764 100644
--- a/requests/utils.py
+++ b/requests/utils.py
@@ -696,6 +696,8 @@ def should_bypass_proxies(url, no_proxy):
:rtype: bool
"""
+ # Prioritize lowercase environment variables over uppercase
+ # to keep a consistent b... | As suggested by @sigmavirus24 for the follow-up of issue #4579 | https://api.github.com/repos/psf/requests/pulls/4583 | 2018-04-11T22:59:58Z | 2018-05-13T13:15:57Z | 2018-05-13T13:15:57Z | 2021-09-03T00:11:00Z | 147 | psf/requests | 32,160 |
P.3: Fixed an inaccurate description of `for (const auto& x : v)`. | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index fbbd9f5c8..51d0cd7be 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -464,7 +464,7 @@ Better:
for (const auto& x : v) { /* do something with x */ }
-Now, there is no explicit mention of the iteration mechanism, and the loop operates... | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/441 | 2015-12-10T12:48:05Z | 2015-12-11T16:12:59Z | 2015-12-11T16:12:59Z | 2015-12-11T17:32:32Z | 185 | isocpp/CppCoreGuidelines | 15,752 | |
Make 'best' format only match non-DASH formats (closes #5554) | diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index bb4a65ee182..82b827536d7 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -237,7 +237,7 @@ def test_youtube_format_selection(self):
f2['url'] = 'url:' + f2id
info_dict = _make_result([f1, f2], extractor='yo... | Otherwise it's impossible to only download non-DASH formats, for example `best[height=?480]/best` would download a DASH video if it's the only one with height=480, instead for falling back to the second format specifier.
For audio only urls (soundcloud, bandcamp ...), the best audio will be downloaded as before.
| https://api.github.com/repos/ytdl-org/youtube-dl/pulls/5556 | 2015-04-29T20:57:40Z | 2015-04-30T14:57:02Z | 2015-04-30T14:57:02Z | 2015-04-30T18:16:12Z | 495 | ytdl-org/youtube-dl | 50,184 |
Acfun: Fix Youku COOP ct85&86 | diff --git a/src/you_get/extractors/acfun.py b/src/you_get/extractors/acfun.py
old mode 100644
new mode 100755
index e78d363627..983606d42f
--- a/src/you_get/extractors/acfun.py
+++ b/src/you_get/extractors/acfun.py
@@ -8,7 +8,7 @@
from .qq import qq_download_by_vid
from .sina import sina_download_by_vid
from .tudou... | So long everyone.
I apologize for the long delay due to unexpected physical and psychological conditions.
Also I want to thank for @zhangn1985 's enlightening discussions and @soimort 's effort. Specially I give the credit to @ERioK 's POC which guided me through this patch.
There are more people I want to thank th... | https://api.github.com/repos/soimort/you-get/pulls/1089 | 2016-04-28T05:41:07Z | 2016-04-28T05:44:08Z | 2016-04-28T05:44:08Z | 2016-05-17T20:02:23Z | 2,030 | soimort/you-get | 21,469 |
Solve Empty Text Vector Store with MM vector stores. Update MM docs | diff --git a/docs/module_guides/models/multi_modal.md b/docs/module_guides/models/multi_modal.md
index b51dcec4e022e..166164bdf70d5 100644
--- a/docs/module_guides/models/multi_modal.md
+++ b/docs/module_guides/models/multi_modal.md
@@ -47,17 +47,23 @@ from llama_index import (
# Create a local Qdrant vector store
cl... | # Description
* fix the MM vector store with only image store issue. Enable user only query image vector index without text vector index
* update MM doc to reflect in the guideline. so user can only query image vector index
Fixes # (issue)
## Type of Change
Please delete options that are not relevant.
-... | https://api.github.com/repos/run-llama/llama_index/pulls/9306 | 2023-12-05T03:41:18Z | 2023-12-05T03:49:06Z | 2023-12-05T03:49:05Z | 2023-12-05T03:49:06Z | 712 | run-llama/llama_index | 6,674 |
Improve support for Yamaha receiver | diff --git a/homeassistant/components/media_player/yamaha.py b/homeassistant/components/media_player/yamaha.py
index 027fd6077309..9679c9f186c5 100644
--- a/homeassistant/components/media_player/yamaha.py
+++ b/homeassistant/components/media_player/yamaha.py
@@ -10,13 +10,15 @@
from homeassistant.components.media_pl... | **Description:**
This pull request adds support for basic playback functionality like play, pause, stop, next and previous for input sources that support it in the Yamaha receiver. It also adds support for media title, artist and album if the information is available.
**Checklist:**
If user exposed functionality or c... | https://api.github.com/repos/home-assistant/core/pulls/3985 | 2016-10-22T07:25:04Z | 2016-11-02T01:50:03Z | 2016-11-02T01:50:03Z | 2017-03-17T17:10:37Z | 1,549 | home-assistant/core | 39,242 |
Fix default extra response | diff --git a/fastapi/openapi/models.py b/fastapi/openapi/models.py
index ddc5c6847f917..3dd9f04dc8385 100644
--- a/fastapi/openapi/models.py
+++ b/fastapi/openapi/models.py
@@ -210,10 +210,6 @@ class Response(BaseModel):
links: Optional[Dict[str, Union[Link, Reference]]] = None
-class Responses(BaseModel):
- ... | Fix `"default"` extra response, when combined with responses with status codes and status code ranges.
Continuation of #435. | https://api.github.com/repos/tiangolo/fastapi/pulls/489 | 2019-08-30T21:25:15Z | 2019-08-30T21:34:48Z | 2019-08-30T21:34:48Z | 2019-08-30T21:34:51Z | 692 | tiangolo/fastapi | 23,248 |
Show --check-status warning with --quiet as well | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index d84119538e..c47be9d672 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -9,7 +9,7 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
`2.4.0-dev`_ (unreleased)
-------------------------
-
+* Show a ``--check-status`` warning with ``--quiet`` as ... | #1026 | https://api.github.com/repos/httpie/cli/pulls/1028 | 2021-01-30T23:54:20Z | 2021-01-30T23:58:57Z | 2021-01-30T23:58:57Z | 2021-03-15T07:37:38Z | 858 | httpie/cli | 34,117 |
Remove a defer.returnValue call. | diff --git a/tests/test_feedexport.py b/tests/test_feedexport.py
index c7d955bc74e..277555608e6 100644
--- a/tests/test_feedexport.py
+++ b/tests/test_feedexport.py
@@ -2299,7 +2299,7 @@ def run_and_export(self, spider_cls, settings):
content[feed["format"]].append(file.read_bytes())
final... | Fixes #6204 :shrug: | https://api.github.com/repos/scrapy/scrapy/pulls/6205 | 2024-01-12T14:31:18Z | 2024-01-12T17:50:41Z | 2024-01-12T17:50:41Z | 2024-01-15T15:16:35Z | 128 | scrapy/scrapy | 34,428 |
[FAW] move coloparam setting in test code. | diff --git a/colossalai/nn/_ops/cache_embedding/parallel_freq_aware_embedding.py b/colossalai/nn/_ops/cache_embedding/parallel_freq_aware_embedding.py
index 4400d6fc2034..083076532c91 100644
--- a/colossalai/nn/_ops/cache_embedding/parallel_freq_aware_embedding.py
+++ b/colossalai/nn/_ops/cache_embedding/parallel_freq_... | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/1429 | 2022-08-10T06:12:01Z | 2022-08-10T06:31:53Z | 2022-08-10T06:31:53Z | 2022-08-10T06:31:53Z | 557 | hpcaitech/ColossalAI | 10,983 | |
fix benchmark | diff --git a/test_tipc/benchmark_train.sh b/test_tipc/benchmark_train.sh
index d5b4e2f11a..e3e4d627fa 100644
--- a/test_tipc/benchmark_train.sh
+++ b/test_tipc/benchmark_train.sh
@@ -135,7 +135,6 @@ else
batch_size=${params_list[1]}
batch_size=`echo ${batch_size} | tr -cd "[0-9]" `
precision=${params_li... | fix benchmark
benchmark中删除 run_process_type 区分,故删掉 benchmark_train.sh 中相关内容 | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/5671 | 2022-03-09T07:56:16Z | 2022-03-09T10:54:05Z | 2022-03-09T10:54:05Z | 2022-03-09T10:54:05Z | 1,212 | PaddlePaddle/PaddleOCR | 41,943 |
Update leauto_upgrades with tests from #5402 | diff --git a/tests/letstest/scripts/test_leauto_upgrades.sh b/tests/letstest/scripts/test_leauto_upgrades.sh
index 51472f2e6cb..355fead2e90 100755
--- a/tests/letstest/scripts/test_leauto_upgrades.sh
+++ b/tests/letstest/scripts/test_leauto_upgrades.sh
@@ -65,6 +65,7 @@ iQIDAQAB
"
if [ $(python -V 2>&1 | cut -d" " ... | I only put these in the comments of #5402 due to merge conflicts with #5392.
These tests should just add more testing to the current version in `master`, but if this isn't merged by the time I'm testing the release, I'll test against both versions of the script. | https://api.github.com/repos/certbot/certbot/pulls/5407 | 2018-01-10T20:36:06Z | 2018-02-07T01:01:59Z | 2018-02-07T01:01:59Z | 2018-02-07T01:07:39Z | 698 | certbot/certbot | 34 |
Add dot_color to BulletedList | diff --git a/manimlib/mobject/svg/tex_mobject.py b/manimlib/mobject/svg/tex_mobject.py
index 60b299e6d1..20f79afbeb 100644
--- a/manimlib/mobject/svg/tex_mobject.py
+++ b/manimlib/mobject/svg/tex_mobject.py
@@ -257,6 +257,7 @@ class BulletedList(TextMobject):
CONFIG = {
"buff": MED_LARGE_BUFF,
"d... | I felt like using only white in BulletedList wasn't visually appealing, so the ability to change the color of the bullet seemed useful.
```python
l = BulletedList("Item 1", "Item 2", "Item 3", dot_color=BLUE)
```
produces
<img width="366" alt="image" src="https://user-images.githubusercontent.com/31397379/83178468... | https://api.github.com/repos/3b1b/manim/pulls/1112 | 2020-05-28T18:22:16Z | 2020-09-30T15:27:29Z | 2020-09-30T15:27:29Z | 2020-09-30T15:27:30Z | 277 | 3b1b/manim | 18,564 |
Fix missing leak sensor battery expose | diff --git a/homeassistant/components/yolink/sensor.py b/homeassistant/components/yolink/sensor.py
index 7c578fbaa73924..4679c3e670b7cf 100644
--- a/homeassistant/components/yolink/sensor.py
+++ b/homeassistant/components/yolink/sensor.py
@@ -22,6 +22,7 @@
ATTR_COORDINATORS,
ATTR_DEVICE_CO_SMOKE_SENSOR,
... | <!--
You are amazing! Thanks for contributing to our project!
Please, DO NOT DELETE ANY TEXT from this template! (unless instructed).
-->
## Breaking change
<!--
If your PR contains a breaking change for existing users, it is important
to tell them what breaks, how to make it work again and why we did th... | https://api.github.com/repos/home-assistant/core/pulls/74084 | 2022-06-28T02:13:37Z | 2022-06-28T06:39:12Z | 2022-06-28T06:39:12Z | 2022-06-29T07:01:56Z | 192 | home-assistant/core | 39,256 |
fix ContextMixin ut error | diff --git a/metagpt/context_mixin.py b/metagpt/context_mixin.py
index 060150f4d..59daa692f 100644
--- a/metagpt/context_mixin.py
+++ b/metagpt/context_mixin.py
@@ -33,20 +33,16 @@ class ContextMixin(BaseModel):
private_llm: Optional[BaseLLM] = Field(default=None, exclude=True)
@model_validator(mode="after"... | **Features**
- fix ContextMixin ut error
**Result**

| https://api.github.com/repos/geekan/MetaGPT/pulls/827 | 2024-02-02T08:17:56Z | 2024-02-02T09:10:39Z | 2024-02-02T09:10:39Z | 2024-02-02T09:10:39Z | 724 | geekan/MetaGPT | 16,796 |
fix regex in test_black.py | diff --git a/tests/test_black.py b/tests/test_black.py
index 3d5d3982817..4267c6110a9 100644
--- a/tests/test_black.py
+++ b/tests/test_black.py
@@ -31,7 +31,7 @@
import click
import pytest
-import regex as re
+import re
from click import unstyle
from click.testing import CliRunner
from pathspec import PathSpec
... | Trying to get rid of the regex dependency, but found instead that we were incorrectly using a character range in this regex. | https://api.github.com/repos/psf/black/pulls/2643 | 2021-11-25T14:20:28Z | 2021-11-26T02:34:19Z | 2021-11-26T02:34:19Z | 2021-11-26T02:34:22Z | 166 | psf/black | 24,177 |
Adds Akamai | diff --git a/diagrams/saas/cdn.py b/diagrams/saas/cdn.py
index dec52654f..3733621da 100644
--- a/diagrams/saas/cdn.py
+++ b/diagrams/saas/cdn.py
@@ -8,6 +8,10 @@ class _Cdn(_Saas):
_icon_dir = "resources/saas/cdn"
+class Akamai(_Cdn):
+ _icon = "akamai.png"
+
+
class Cloudflare(_Cdn):
_icon = "cloudfl... | https://api.github.com/repos/mingrammer/diagrams/pulls/267 | 2020-09-08T22:27:07Z | 2020-09-14T11:56:03Z | 2020-09-14T11:56:02Z | 2020-09-14T11:56:03Z | 314 | mingrammer/diagrams | 52,603 | |
Fix encoding issue in test_response_reason_unicode_fallback | diff --git a/tests/test_requests.py b/tests/test_requests.py
index e77e024a7d..24f296f000 100755
--- a/tests/test_requests.py
+++ b/tests/test_requests.py
@@ -1026,13 +1026,13 @@ def test_response_reason_unicode_fallback(self):
# check raise_status falls back to ISO-8859-1
r = requests.Response()
... | `test_response_reason_unicode_fallback` is currently failing in Python 2. The original proposed fix in #3557 unfortunately didn't address the underlying issue.
While this patch should fix the test now, it may be worth taking a brief moment to discuss how we envision the original PR #3554 working. Currently an error re... | https://api.github.com/repos/psf/requests/pulls/3576 | 2016-09-16T16:23:45Z | 2016-09-20T14:48:40Z | 2016-09-20T14:48:40Z | 2021-09-08T02:10:16Z | 232 | psf/requests | 32,813 |
DOC add target_names in LFW fetchers | diff --git a/sklearn/datasets/_lfw.py b/sklearn/datasets/_lfw.py
index be01ae6279e27..33c1234f907b7 100644
--- a/sklearn/datasets/_lfw.py
+++ b/sklearn/datasets/_lfw.py
@@ -308,13 +308,15 @@ def fetch_lfw_people(
target : numpy array of shape (13233,)
Labels associated to each face image.
... | Follow-up of #23582
We need to target `main` instead of `1.1.X`. | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/23795 | 2022-06-29T12:46:33Z | 2022-06-29T13:56:48Z | 2022-06-29T13:56:48Z | 2022-06-29T13:56:48Z | 369 | scikit-learn/scikit-learn | 46,503 |
remove redundant else block in DatabricksExecutionTrigger | diff --git a/airflow/providers/databricks/triggers/databricks.py b/airflow/providers/databricks/triggers/databricks.py
index e5e56cc0ffa7d..2bd65a0d932b9 100644
--- a/airflow/providers/databricks/triggers/databricks.py
+++ b/airflow/providers/databricks/triggers/databricks.py
@@ -90,11 +90,11 @@ async def run(self):
... | <!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may ... | https://api.github.com/repos/apache/airflow/pulls/38397 | 2024-03-22T04:33:44Z | 2024-03-22T10:36:08Z | 2024-03-22T10:36:08Z | 2024-03-22T10:36:08Z | 232 | apache/airflow | 14,215 |
[doc] add potential solution for OOM in llama2 example | diff --git a/examples/language/llama2/README.md b/examples/language/llama2/README.md
index 483eae88ae32..16b263c1322e 100644
--- a/examples/language/llama2/README.md
+++ b/examples/language/llama2/README.md
@@ -149,6 +149,9 @@ Finally, run the following command to start training:
```bash
bash gemini.sh
```
+
+If you... | ## 📌 Checklist before creating the PR
- [ ] 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/4699 | 2023-09-12T15:19:15Z | 2023-09-13T02:43:30Z | 2023-09-13T02:43:30Z | 2023-09-13T06:22:45Z | 247 | hpcaitech/ColossalAI | 11,300 |
update metric | diff --git a/doc/doc_ch/algorithm_overview.md b/doc/doc_ch/algorithm_overview.md
index 0fd2f5b754..0db6c6f7ff 100755
--- a/doc/doc_ch/algorithm_overview.md
+++ b/doc/doc_ch/algorithm_overview.md
@@ -61,18 +61,18 @@ PaddleOCR基于动态图开源的文本识别算法列表:
|模型|骨干网络|Avg Accuracy|模型存储命名|下载链接|
|---|---|---|---|---|
-|Rosetta|Resnet3... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/5276 | 2022-01-17T09:55:11Z | 2022-01-17T10:40:23Z | 2022-01-17T10:40:23Z | 2022-01-17T10:40:24Z | 3,343 | PaddlePaddle/PaddleOCR | 42,298 | |
[ixigua] fix 'string indices must be integers' | diff --git a/src/you_get/extractors/ixigua.py b/src/you_get/extractors/ixigua.py
index b368b380ab..f2fd953e69 100644
--- a/src/you_get/extractors/ixigua.py
+++ b/src/you_get/extractors/ixigua.py
@@ -95,6 +95,8 @@ def ixigua_download(url, output_dir='.', merge=True, info_only=False, stream_id=
def convertStreams(vide... | `you-get -i --debug "https://www.ixigua.com/7114608501724283407?app=video_article×tamp=1663582546&utm_medium=android&utm_campaign=client_share&utm_source=wechat_friend&test_group=v1"`
will traceback:
```
Traceback (most recent call last):
File "d:\setup\you-get\you-get", line 11, in <module>
you_get.mai... | https://api.github.com/repos/soimort/you-get/pulls/2980 | 2022-09-20T03:18:24Z | 2022-10-08T22:08:04Z | 2022-10-08T22:08:04Z | 2022-10-08T22:08:10Z | 160 | soimort/you-get | 20,936 |
[AIRFLOW-XXX] Fix docstrings of SQSHook | diff --git a/airflow/contrib/hooks/aws_sqs_hook.py b/airflow/contrib/hooks/aws_sqs_hook.py
index 00ae231e564ab..3fc465d6811c2 100644
--- a/airflow/contrib/hooks/aws_sqs_hook.py
+++ b/airflow/contrib/hooks/aws_sqs_hook.py
@@ -23,6 +23,7 @@
class SQSHook(AwsHook):
"""
Get the SQS client using boto3 library
+
... | Make sure you have checked _all_ steps below.
### Jira
- [x] My PR addresses the following [Airflow Jira](https://issues.apache.org/jira/browse/AIRFLOW/) issues and references them in the PR title. For example, "\[AIRFLOW-XXX\] My Airflow PR"
- https://issues.apache.org/jira/browse/AIRFLOW-XXX
### Descripti... | https://api.github.com/repos/apache/airflow/pulls/5099 | 2019-04-15T00:27:16Z | 2019-04-15T02:26:03Z | 2019-04-15T02:26:03Z | 2019-08-30T20:39:39Z | 877 | apache/airflow | 14,379 |
Update MODEL_CARD.md | diff --git a/MODEL_CARD.md b/MODEL_CARD.md
index 18d9dfea8..5b0128564 100644
--- a/MODEL_CARD.md
+++ b/MODEL_CARD.md
@@ -33,7 +33,9 @@ Llama 2|*A new mix of publicly available online data*|70B|4k|✔|2.0T|1.5 x
# **Intended Use**
**Intended Use Cases** Llama 2 is intended for commercial and research use in Engli... | Updated intended use cases to clarify that developers can fine tune for non-english languages. | https://api.github.com/repos/meta-llama/llama/pulls/813 | 2023-09-20T22:18:46Z | 2023-09-21T00:47:42Z | 2023-09-21T00:47:42Z | 2023-09-21T00:47:42Z | 342 | meta-llama/llama | 31,988 |
Python script that chooses from 80 funny loading lines | diff --git a/randomloadingmessage.py b/randomloadingmessage.py
new file mode 100644
index 0000000000..9ad93403bc
--- /dev/null
+++ b/randomloadingmessage.py
@@ -0,0 +1,167 @@
+# Created by Nathan R (Mosrod)
+# CREDIT TO https://github.com/1egoman/funnies/blob/master/src/funnies.js
+
+from random import *
+
+x = 1
+
+fo... | This is a great loading script for your program to bright up your day! | https://api.github.com/repos/geekcomputers/Python/pulls/393 | 2018-10-07T23:47:39Z | 2018-10-08T18:25:17Z | 2018-10-08T18:25:17Z | 2018-10-08T18:25:22Z | 1,715 | geekcomputers/Python | 31,430 |
New pull request -- much cleaner | diff --git a/tests/auto/keras/test_constraints.py b/tests/auto/keras/test_constraints.py
new file mode 100644
index 00000000000..dbfba0f7396
--- /dev/null
+++ b/tests/auto/keras/test_constraints.py
@@ -0,0 +1,69 @@
+import unittest
+import numpy as np
+from numpy.testing import assert_allclose
+from theano import tenso... | Weird file deletions have gone. Rebase done. Sorry for before :)
| https://api.github.com/repos/keras-team/keras/pulls/327 | 2015-07-03T00:07:57Z | 2015-07-03T00:48:27Z | 2015-07-03T00:48:27Z | 2015-07-03T05:12:37Z | 760 | keras-team/keras | 47,449 |
Update the developers guide to the current state of the project | diff --git a/docs/docs/guides/developers.md b/docs/docs/guides/developers.md
index 1617fad538..96690d09fb 100644
--- a/docs/docs/guides/developers.md
+++ b/docs/docs/guides/developers.md
@@ -89,16 +89,15 @@ can create their own custom assistants.
## The tools
A web application, usually referred to as **"the web fro... | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/2623 | 2023-04-16T18:31:46Z | 2023-04-16T18:38:12Z | 2023-04-16T18:38:12Z | 2023-04-16T18:38:13Z | 1,803 | LAION-AI/Open-Assistant | 37,057 | |
Correcting the Gaussian Formula | diff --git a/maths/gaussian.py b/maths/gaussian.py
index 5d5800e00989..a5dba50a927d 100644
--- a/maths/gaussian.py
+++ b/maths/gaussian.py
@@ -1,9 +1,5 @@
"""
Reference: https://en.wikipedia.org/wiki/Gaussian_function
-
-python/black : True
-python : 3.7.3
-
"""
from numpy import exp, pi, sqrt
@@ -16,6 +12,12 @@ ... | I have added the parenthesis around the 2*sigma^2 term.
### **Describe your change:**
* [ ] Add an algorithm?
* [x] Fix a bug or typo in an existing algorithm?
* [ ] Documentation change?
### **Checklist:**
* [x] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUT... | https://api.github.com/repos/TheAlgorithms/Python/pulls/2249 | 2020-07-28T20:09:04Z | 2020-07-29T19:32:37Z | 2020-07-29T19:32:37Z | 2020-07-30T08:33:34Z | 386 | TheAlgorithms/Python | 29,556 |
Add EXIF rotation to YOLOv5 Hub inference | diff --git a/models/common.py b/models/common.py
index 5ffb8440b60..9911b207d06 100644
--- a/models/common.py
+++ b/models/common.py
@@ -1,9 +1,9 @@
# YOLOv5 common modules
-import math
from copy import copy
from pathlib import Path
+import math
import numpy as np
import pandas as pd
import requests
@@ -12,7 ... |
## 🛠️ PR Summary
<sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub>
### 🌟 Summary
Improved image loading with EXIF-based auto-rotation in YOLOv5.
### 📊 Key Changes
- Added `exif_transpose` function to correct image orientation based on EXIF data.
- Integrated `exif_transpose... | https://api.github.com/repos/ultralytics/yolov5/pulls/3852 | 2021-07-01T09:24:49Z | 2021-07-02T11:25:55Z | 2021-07-02T11:25:54Z | 2024-01-19T17:12:03Z | 830 | ultralytics/yolov5 | 24,844 |
Added couple AWS/Kubernetes answers | diff --git a/certificates/aws-cloud-practitioner.md b/certificates/aws-cloud-practitioner.md
index 75c273098..88d32ae64 100644
--- a/certificates/aws-cloud-practitioner.md
+++ b/certificates/aws-cloud-practitioner.md
@@ -40,6 +40,13 @@ SAAS
* Public
* Hybrid
* Private</summary><br><b>
+
+- Public - Public clou... | https://api.github.com/repos/bregman-arie/devops-exercises/pulls/204 | 2022-01-24T15:30:12Z | 2022-01-24T17:27:08Z | 2022-01-24T17:27:08Z | 2022-01-24T17:27:08Z | 1,131 | bregman-arie/devops-exercises | 17,478 | |
include low, high, & dtype in spaces.Box.__repr__ | diff --git a/gym/spaces/box.py b/gym/spaces/box.py
index bad74f7ac09..0f9f26f92ff 100644
--- a/gym/spaces/box.py
+++ b/gym/spaces/box.py
@@ -134,7 +134,7 @@ def from_jsonable(self, sample_n):
return [np.asarray(sample) for sample in sample_n]
def __repr__(self):
- return "Box" + str(self.shape)
+... | multitask learners need a way to make a sensor for each space, and it's possible for two different Box spaces to have the same shape but different low/high/dtype, so this pull request just adds the minimum low value, maximum high value, and the dtype to `Box.__repr__` so we can use `str(box_space)` as a key in a Module... | https://api.github.com/repos/openai/gym/pulls/1974 | 2020-06-23T18:31:04Z | 2020-08-14T22:30:58Z | 2020-08-14T22:30:58Z | 2020-08-14T22:30:59Z | 182 | openai/gym | 5,544 |
kraken max amount | diff --git a/js/kraken.js b/js/kraken.js
index 67a01b791b91..2902bbe06f06 100644
--- a/js/kraken.js
+++ b/js/kraken.js
@@ -457,7 +457,7 @@ module.exports = class kraken extends Exchange {
'limits': {
'amount': {
'min': minAmount,
- 'm... | looks strange. And don't work on practice, I can create order with bigger amount | https://api.github.com/repos/ccxt/ccxt/pulls/10744 | 2021-11-30T15:45:58Z | 2021-11-30T17:29:14Z | 2021-11-30T17:29:14Z | 2021-11-30T17:29:14Z | 131 | ccxt/ccxt | 13,915 |
BUG: Fix conditional for underlying price in io.data.options. | diff --git a/pandas/io/data.py b/pandas/io/data.py
index 13ced745b7b3f..0b1601b143be0 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -736,9 +736,8 @@ def _get_option_data(self, month, year, expiry, name):
" found".format(table_loc, ntables))
option_data = _parse_optio... | Refactor and regression test.
Fixes #7685
| https://api.github.com/repos/pandas-dev/pandas/pulls/7688 | 2014-07-08T05:31:10Z | 2014-07-08T23:33:47Z | 2014-07-08T23:33:47Z | 2014-07-09T04:38:52Z | 1,577 | pandas-dev/pandas | 44,833 |
fix disconnecting sleep | diff --git a/code/default/gae_proxy/local/check_ip.py b/code/default/gae_proxy/local/check_ip.py
index e3257f7030..faa94fba5e 100755
--- a/code/default/gae_proxy/local/check_ip.py
+++ b/code/default/gae_proxy/local/check_ip.py
@@ -140,7 +140,7 @@ def load_proxy_config():
network_fail_lock = threading.Lock()
def con... | https://api.github.com/repos/XX-net/XX-Net/pulls/8732 | 2017-11-28T19:31:49Z | 2017-11-28T23:56:05Z | 2017-11-28T23:56:05Z | 2017-11-28T23:56:05Z | 148 | XX-net/XX-Net | 17,086 | |
Fix: mask editor inpaint area | diff --git a/web/extensions/core/maskeditor.js b/web/extensions/core/maskeditor.js
index bb2f16d42b..f6b035bdce 100644
--- a/web/extensions/core/maskeditor.js
+++ b/web/extensions/core/maskeditor.js
@@ -110,6 +110,7 @@ class MaskEditorDialog extends ComfyDialog {
createButton(name, callback) {
var button = docum... |
I tried to do an inpaint on my image, and found that I was unable to brush the bottom area, as shown below:
<img width="1278" alt="image" src="https://github.com/comfyanonymous/ComfyUI/assets/16166258/8e8aa049-bc90-40a2-8e4d-26ab22ade157">
After investigation, it was caused by an invisible div element that wrap... | https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2679 | 2024-01-30T06:34:51Z | 2024-01-31T06:17:24Z | 2024-01-31T06:17:24Z | 2024-01-31T06:17:25Z | 303 | comfyanonymous/ComfyUI | 18,038 |
add new attack patterns from Daniel miessler | diff --git a/XSS injection/README.md b/XSS injection/README.md
index 5c72b632e5..c828accab8 100644
--- a/XSS injection/README.md
+++ b/XSS injection/README.md
@@ -328,6 +328,9 @@ Polyglot XSS - Rsnake
Polyglot XSS - Daniel Miessler
```javascript
+';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode... | https://github.com/danielmiessler/SecLists/edit/master/Fuzzing/Polyglots/XSS-Polyglots.txt
new attack patterns: line 1, 2, 3. | https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/28 | 2018-11-16T11:45:57Z | 2018-11-16T12:49:36Z | 2018-11-16T12:49:36Z | 2018-11-16T12:49:36Z | 375 | swisskyrepo/PayloadsAllTheThings | 8,347 |
Fix windows file descriptor leak | diff --git a/scrapy/extensions/feedexport.py b/scrapy/extensions/feedexport.py
index ce2846ebada..6fb6397b1e2 100644
--- a/scrapy/extensions/feedexport.py
+++ b/scrapy/extensions/feedexport.py
@@ -242,7 +242,9 @@ def open_spider(self, spider):
def close_spider(self, spider):
slot = self.slot
if n... | Fixes #3391 | https://api.github.com/repos/scrapy/scrapy/pulls/4023 | 2019-09-17T08:22:16Z | 2019-10-22T13:12:53Z | 2019-10-22T13:12:53Z | 2019-10-22T13:13:07Z | 274 | scrapy/scrapy | 34,267 |
add faq 20210621 | diff --git a/README_ch.md b/README_ch.md
index 1dcde536fc..1fcb1fb5fc 100755
--- a/README_ch.md
+++ b/README_ch.md
@@ -21,7 +21,7 @@ PaddleOCR同时支持动态图与静态图两种编程范式
- 静态图版本:develop分支
**近期更新**
-- 2021.6.9 [FAQ](./doc/doc_ch/FAQ.md)新增5个高频问题,总数238个,每周一都会更新,欢迎大家持续关注。
+- 2021.6.22 [FAQ](./doc/doc_ch/FAQ.md)新增5个高频问题,总数243个,每周... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/3143 | 2021-06-21T12:37:30Z | 2021-06-23T08:35:34Z | 2021-06-23T08:35:34Z | 2021-06-23T08:35:34Z | 3,761 | PaddlePaddle/PaddleOCR | 42,304 | |
Bugfix: brew_update_formula.py | diff --git a/thefuck/rules/brew_update_formula.py b/thefuck/rules/brew_update_formula.py
index 2100c23b9..6b4f798b8 100644
--- a/thefuck/rules/brew_update_formula.py
+++ b/thefuck/rules/brew_update_formula.py
@@ -5,7 +5,8 @@
def match(command):
return ('update' in command.script
and "Error: This comm... | Sample command output is:
Error: This command updates brew itself, and does not take formula names.
Use 'brew upgrade thefuck' instead.
This will never match the previous `"Use 'brew upgrade <formula>'" in command.output` test. | https://api.github.com/repos/nvbn/thefuck/pulls/710 | 2017-10-12T20:45:28Z | 2017-10-15T14:39:54Z | 2017-10-15T14:39:54Z | 2023-01-05T21:10:31Z | 153 | nvbn/thefuck | 30,573 |
Add an option to dns_rfc2136 plugin to specify an authorative base domain. | diff --git a/CHANGELOG.md b/CHANGELOG.md
index ac7f34a09e8..2f699feecb3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,9 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
### Added
-*
+* dns_rfc2136 plugin now supports explicitly specifing an authorative
+ base domain for cases when the ... | Added an option to dns_rfc2136 plugin to explicitly specify the base domain for which the DNS server is authorative. This solves problems with split horizon DNS configurations which do not correctly report authorative SOA records when queried without a TSIG key. Could be useful for other use cases. | https://api.github.com/repos/certbot/certbot/pulls/7029 | 2019-05-06T13:05:29Z | 2019-05-16T08:40:18Z | 2019-05-16T08:40:18Z | 2019-05-16T08:45:35Z | 2,034 | certbot/certbot | 2,384 |
[CI] implement job skipping for doc-only PRs | diff --git a/.circleci/config.yml b/.circleci/config.yml
index aedbe4f553985..f3b13d26eb524 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3,6 +3,22 @@ orbs:
gcp-gke: circleci/gcp-gke@1.0.4
go: circleci/go@1.3.0
+commands:
+ skip-job-on-doc-only-changes:
+ description: "Do not continue... | Let's save some time and money. This PR:
* [x] skips most jobs when the only change is in `\.(md|rst)$` files.
I tested this with various types of files and it seems to do the right thing. But if we merge let's monitor that I didn't miss some use case and we end up with broken master if some CI jobs didn't run.
... | https://api.github.com/repos/huggingface/transformers/pulls/8826 | 2020-11-27T21:43:37Z | 2020-11-29T16:31:30Z | 2020-11-29T16:31:30Z | 2020-12-01T06:46:48Z | 754 | huggingface/transformers | 12,824 |
Fix cache file length | diff --git a/CHANGES.md b/CHANGES.md
index 9a9be4bbeae..e4240eacfca 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -18,6 +18,9 @@
<!-- Changes to how Black can be configured -->
+- Shorten the length of the name of the cache file to fix crashes on file systems that
+ do not support long paths (#4176)
+
### Packagin... | - Ensure total file length stays under 96
- Hash the path only if it's too long
- Proceed normally (with a warning) if the cache can't be read
Fixes #4172
<!-- Hello! Thanks for submitting a PR. To help make things go a bit more
smoothly we would appreciate that you go through this template. -->
### Description... | https://api.github.com/repos/psf/black/pulls/4176 | 2024-01-26T15:38:51Z | 2024-01-26T19:54:49Z | 2024-01-26T19:54:49Z | 2024-01-26T19:54:54Z | 1,171 | psf/black | 23,909 |
MNT fix generate_authors_table.py | diff --git a/build_tools/generate_authors_table.py b/build_tools/generate_authors_table.py
index 81e99856c6890..eaad1df75475c 100644
--- a/build_tools/generate_authors_table.py
+++ b/build_tools/generate_authors_table.py
@@ -11,6 +11,7 @@
import getpass
import time
from pathlib import Path
+from os import path
pr... | A part of #17010.
I think we should also either put @cmarmo in the authors list, or have a triage team section. | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/17011 | 2020-04-23T09:08:25Z | 2020-04-27T14:12:30Z | 2020-04-27T14:12:30Z | 2020-04-27T18:31:16Z | 477 | scikit-learn/scikit-learn | 46,800 |
Add NBP currency exchange rates API | diff --git a/README.md b/README.md
index af59232146..25221681ea 100644
--- a/README.md
+++ b/README.md
@@ -231,6 +231,7 @@ API | Description | Auth | HTTPS | CORS |
| [Exchangeratesapi.io](https://exchangeratesapi.io) | Exchange rates with currency conversion | No | Yes | Yes |
| [Fixer.io](http://fixer.io) | Exchang... | Add NBP (National Bank of Poland) currency exchange rates API
<!-- 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](CONT... | https://api.github.com/repos/public-apis/public-apis/pulls/1630 | 2021-04-10T20:41:52Z | 2021-04-29T07:15:17Z | 2021-04-29T07:15:17Z | 2021-04-29T07:15:17Z | 246 | public-apis/public-apis | 35,477 |
Bug fix: export alignement.json file with save-interval option. | diff --git a/scripts/extract.py b/scripts/extract.py
index 4f81ef7f12..4ca7e32489 100644
--- a/scripts/extract.py
+++ b/scripts/extract.py
@@ -191,7 +191,7 @@ def run_extraction(self):
if self.extractor.final_pass:
self.output_processing(faces, align_eyes, size, filename)
... | One-liner fix. The modulo operation has priority over the addition. Because parentheses were missing in the condition, the condition was never met. Because of this, even if we run the extract script with the `save-interval` option, the alignements.json file is never generated.
Fixes https://github.com/deepfakes/face... | https://api.github.com/repos/deepfakes/faceswap/pulls/740 | 2019-05-30T13:58:51Z | 2019-05-30T14:32:57Z | 2019-05-30T14:32:57Z | 2019-05-30T14:32:57Z | 150 | deepfakes/faceswap | 18,795 |
Fixing a typo ("termnial" -> "terminal") | diff --git a/docs/source/getting_started/example_scenes.rst b/docs/source/getting_started/example_scenes.rst
index 7df94b643d..e51621c58f 100644
--- a/docs/source/getting_started/example_scenes.rst
+++ b/docs/source/getting_started/example_scenes.rst
@@ -23,7 +23,7 @@ InteractiveDevlopment
self.play(ShowCr... | ## Motivation
I fixed a typo in the documentation
## Proposed changes
I fixed a single typo "termnial" in the documentation.
## Test
It is a documentation change | https://api.github.com/repos/3b1b/manim/pulls/1872 | 2022-09-30T20:29:41Z | 2022-10-01T08:07:09Z | 2022-10-01T08:07:09Z | 2022-10-01T08:07:09Z | 322 | 3b1b/manim | 18,507 |
Fix #3002. Auto-expanding for tilda. | diff --git a/mitmproxy/addons/cut.py b/mitmproxy/addons/cut.py
index 7d9a1f361b..6bb52e844a 100644
--- a/mitmproxy/addons/cut.py
+++ b/mitmproxy/addons/cut.py
@@ -1,6 +1,8 @@
import io
import csv
import typing
+import os.path
+
from mitmproxy import command
from mitmproxy import exceptions
from mitmproxy import f... | While I am sorting out in #3074 I decide to try to warm up :grinning:
The list of all commands, which work with path https://github.com/mitmproxy/mitmproxy/issues/3002#issuecomment-374228453 | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/3078 | 2018-04-25T23:03:34Z | 2018-04-26T09:02:11Z | 2018-04-26T09:02:11Z | 2018-06-01T17:52:14Z | 883 | mitmproxy/mitmproxy | 27,414 |
bpo-32499: Add dataclasses.is_dataclass(obj), which returns True if obj is a dataclass or an instance of one. | diff --git a/Lib/dataclasses.py b/Lib/dataclasses.py
index eaaed63ef2826e..b4786bf502e8c6 100644
--- a/Lib/dataclasses.py
+++ b/Lib/dataclasses.py
@@ -16,6 +16,7 @@
'astuple',
'make_dataclass',
'replace',
+ 'is_dataclass',
]
# Raised when an attempt is made t... |
<!-- issue-number: bpo-32499 -->
https://bugs.python.org/issue32499
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/5113 | 2018-01-06T15:57:00Z | 2018-01-06T17:41:53Z | 2018-01-06T17:41:53Z | 2018-01-06T17:41:57Z | 1,304 | python/cpython | 3,798 |
Update get_youtube_view.py | diff --git a/get_youtube_view.py b/get_youtube_view.py
index 4291af4e60..84fbf8ce7b 100644
--- a/get_youtube_view.py
+++ b/get_youtube_view.py
@@ -13,7 +13,7 @@
#adding ability to change number of repeats
count = int(input("Number of times to be repeated: "))
#Same as before
-x = input("Enter the URL (no https): ")
... | made less strict when pasting URL | https://api.github.com/repos/geekcomputers/Python/pulls/493 | 2019-04-12T07:17:58Z | 2019-04-13T08:01:43Z | 2019-04-13T08:01:43Z | 2019-04-21T02:00:16Z | 241 | geekcomputers/Python | 30,959 |
Update CONTRIBUTING.md | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 8c0f54ad528d..8cd03217d51f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -23,26 +23,38 @@ We are very happy that you consider implementing algorithms and data structure f
We appreciate any contribution, from fixing a grammar mistake in a comment to impleme... | Many __Hacktoberfest__ contributors are not used to __automated testing__ so these updates to CONTRIBUTING.md should help them to understand our standards and recomendations.
@cozek Thanks for your review.
| https://api.github.com/repos/TheAlgorithms/Python/pulls/1250 | 2019-10-02T09:01:25Z | 2019-10-02T16:19:01Z | 2019-10-02T16:19:01Z | 2019-10-02T16:22:50Z | 2,276 | TheAlgorithms/Python | 29,905 |
bpo-40334: use the TOKENS file when checking dangling rules | diff --git a/Tools/peg_generator/pegen/build.py b/Tools/peg_generator/pegen/build.py
index 94248ffd9431c4..1eff7a12aa30f4 100644
--- a/Tools/peg_generator/pegen/build.py
+++ b/Tools/peg_generator/pegen/build.py
@@ -17,6 +17,8 @@
MOD_DIR = pathlib.Path(__file__).parent
+TokenDefinitions = Tuple[Dict[int, str], Dict... |
<!-- issue-number: [bpo-40334](https://bugs.python.org/issue40334) -->
https://bugs.python.org/issue40334
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/19849 | 2020-05-01T21:26:44Z | 2020-05-01T22:14:12Z | 2020-05-01T22:14:12Z | 2020-05-01T22:14:16Z | 1,880 | python/cpython | 4,256 |
Do not add an extra blank line to an import line that has fmt disabled | diff --git a/CHANGES.md b/CHANGES.md
index eff2640a01e..06a0ab7e9eb 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -10,6 +10,9 @@
<!-- Changes that affect Black's stable style -->
+- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line
+ added when they are right after another import l... | <!-- Hello! Thanks for submitting a PR. To help make things go a bit more
smoothly we would appreciate that you go through this template. -->
### Description
Fixes #3438.
This isn't put in preview style because:
1. Already formatted code always has the extra blank line, so it shouldn't change already ... | https://api.github.com/repos/psf/black/pulls/3610 | 2023-03-17T02:35:15Z | 2023-03-18T04:39:22Z | 2023-03-18T04:39:22Z | 2023-03-19T04:14:15Z | 1,288 | psf/black | 24,499 |
Fix hang when backgrounded | diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 28941673fa9..a89ff6908b3 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -1820,6 +1820,7 @@ def get_exe_version(exe, args=['--version'],
try:
out, _ = subprocess.Popen(
[encodeArgument(exe)] + args,
+ stdin=... | - [x] Bug fix
---
### Description of your _pull request_ and other information
youtube-dl hangs when backgrounded because ffmpeg -version tries to read from stdin:
```
pb3:youtube-dl jhawk$ python -m youtube_dl -v 'BaW_jenozKc' &
[1] 4263
pb3:youtube-dl jhawk$ [debug] System config: []
[debug] User config: []
[debug... | https://api.github.com/repos/ytdl-org/youtube-dl/pulls/10996 | 2016-10-22T00:58:36Z | 2016-10-22T05:11:12Z | 2016-10-22T05:11:12Z | 2018-03-16T15:38:15Z | 125 | ytdl-org/youtube-dl | 50,569 |
ENH Improve warnings if func returns a dataframe in FunctionTransformer | diff --git a/doc/whats_new/v1.4.rst b/doc/whats_new/v1.4.rst
index 8dbd867b0c9ba..c56e67024a890 100644
--- a/doc/whats_new/v1.4.rst
+++ b/doc/whats_new/v1.4.rst
@@ -250,6 +250,13 @@ Changelog
- |Enhancement| Added `neg_root_mean_squared_log_error_scorer` as scorer
:pr:`26734` by :user:`Alejandro Martin Gil <101Alex... | <!--
Thanks for contributing a pull request! Please ensure you have taken a look at
the contribution guidelines: https://github.com/scikit-learn/scikit-learn/blob/main/CONTRIBUTING.md
-->
#### Reference Issues/PRs
<!--
Example: Fixes #1234. See also #3456.
Please use keywords (e.g., Fixes) to create link to th... | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/26944 | 2023-07-30T22:49:54Z | 2023-09-19T17:10:38Z | 2023-09-19T17:10:38Z | 2023-09-19T17:10:47Z | 1,140 | scikit-learn/scikit-learn | 46,180 |
Add Practical Gradient Boosting | diff --git a/books.md b/books.md
index cab2362d..733e0abe 100644
--- a/books.md
+++ b/books.md
@@ -101,6 +101,8 @@ The following is a list of free and/or open source books on machine learning, st
* [Natural Language Processing in Action, Second Edition](https://www.manning.com/books/natural-language-processing-in-acti... | Hello,
I'd like to add my book on gradient boosting in the book section.
It's the English edition of my book `Gradient Boosting`, published by the Editions Eni: https://www.editions-eni.fr/livre/gradient-boosting-exploitez-les-arbres-de-decision-pour-le-machine-learning-xgboost-catboost-lightgbm-9782409034022
... | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/927 | 2023-04-11T13:18:46Z | 2023-04-12T00:40:03Z | 2023-04-12T00:40:03Z | 2023-04-12T00:40:03Z | 198 | josephmisiti/awesome-machine-learning | 52,409 |
Fix a logistic bug | diff --git a/manimlib/mobject/svg/string_mobject.py b/manimlib/mobject/svg/string_mobject.py
index 5004960e61..e4376a3360 100644
--- a/manimlib/mobject/svg/string_mobject.py
+++ b/manimlib/mobject/svg/string_mobject.py
@@ -174,8 +174,8 @@ def find_spans_by_single_selector(sel):
):
l = self... | ## Motivation
There's a logistic bug when handling `None` in spans. My apologies for that.
## Proposed changes
- M `manimlib/mobject/svg/string_mobject.py`
| https://api.github.com/repos/3b1b/manim/pulls/1815 | 2022-05-20T10:55:13Z | 2022-05-20T10:56:40Z | 2022-05-20T10:56:40Z | 2022-05-20T10:56:41Z | 168 | 3b1b/manim | 18,321 |
Use separate llama-cpp-python packages for GGML support | diff --git a/download-model.py b/download-model.py
index be8d59fe09..3bb4a39bc7 100644
--- a/download-model.py
+++ b/download-model.py
@@ -57,7 +57,8 @@ def get_download_links_from_huggingface(self, model, branch, text_only=False):
classifications = []
has_pytorch = False
has_pt = False
- ... | ## Checklist:
- [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines).
---
Based on: https://github.com/oobabooga/text-generation-webui/pull/3695
This will maintain full GGML support while allowing llama-cpp-python to be updated.
Intended... | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3697 | 2023-08-26T18:29:19Z | 2023-08-27T04:51:00Z | 2023-08-27T04:51:00Z | 2023-09-25T01:22:21Z | 3,188 | oobabooga/text-generation-webui | 26,530 |
Adds auto_ml and machineJS- automated machine learning | diff --git a/README.md b/README.md
index 2e8fefcc..3588d80c 100644
--- a/README.md
+++ b/README.md
@@ -438,6 +438,7 @@ For a list of free-to-attend meetups and local events, go [here](https://github.
* [LDA.js](https://github.com/primaryobjects/lda) - LDA topic modeling for node.js
* [Learning.js](https://github.com/... | Thanks for maintaining this project! I already found a few new projects on here I want to add into auto_ml.
| https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/335 | 2016-12-06T19:51:52Z | 2016-12-06T20:18:04Z | 2016-12-06T20:18:04Z | 2016-12-06T20:18:04Z | 570 | josephmisiti/awesome-machine-learning | 51,842 |
Don't log CLI actions if db not initialized | diff --git a/airflow/utils/cli_action_loggers.py b/airflow/utils/cli_action_loggers.py
index 17a4c4f890b22..0c93148308fbc 100644
--- a/airflow/utils/cli_action_loggers.py
+++ b/airflow/utils/cli_action_loggers.py
@@ -97,6 +97,8 @@ def default_action_log(sub_command, user, task_id, dag_id, execution_date, host_
:pa... | This gets rid of a potentially confusing error message.
Before:
<img width="441" alt="image" src="https://user-images.githubusercontent.com/15932138/203466778-de475387-9caa-4ca9-a56e-a3809593fab6.png">
After:
<img width="426" alt="image" src="https://user-images.githubusercontent.com/15932138/203466794-8450909a-9... | https://api.github.com/repos/apache/airflow/pulls/27851 | 2022-11-23T04:00:00Z | 2022-12-03T06:32:28Z | 2022-12-03T06:32:28Z | 2023-01-09T23:14:04Z | 372 | apache/airflow | 14,662 |
Add Windows installation documentation | diff --git a/docs/source/installation/windows.rst b/docs/source/installation/windows.rst
index 7618c4a87c..bbea877c62 100644
--- a/docs/source/installation/windows.rst
+++ b/docs/source/installation/windows.rst
@@ -1,4 +1,60 @@
Windows
=======
-A stub for windows installation
+Install System Libraries
+------------... | The installation is done with a Windows8 machine,
further testing are needed for windows10.
for example ``python`` will launch just fine, while doing so would result in a command not found in cmd.exe
Also I omitted the pypi installtion, for some reasons the pycairo whl install will be removed and force a recompi... | https://api.github.com/repos/3b1b/manim/pulls/561 | 2019-05-28T20:32:09Z | 2019-05-29T02:08:36Z | 2019-05-29T02:08:36Z | 2019-05-30T01:50:33Z | 631 | 3b1b/manim | 18,074 |
[Ximalaya] fix #1955 | diff --git a/src/you_get/extractors/ximalaya.py b/src/you_get/extractors/ximalaya.py
index 58a158ba57..58e2945cb2 100644
--- a/src/you_get/extractors/ximalaya.py
+++ b/src/you_get/extractors/ximalaya.py
@@ -15,7 +15,8 @@
def ximalaya_download_by_id(id, title = None, output_dir = '.', info_only = False, stream_id = N... | Now ximalaya api server checks UA. If there's 'python' (case insensitive) in UA it will return empty content instead of json string.
```
curl 'http://www.ximalaya.com/tracks/330957273.json' -H 'user-agent: python-urllib/3.5'
```
return nothing
```
curl 'http://www.ximalaya.com/tracks/3.json' -H 'user-agent: y... | https://api.github.com/repos/soimort/you-get/pulls/1956 | 2017-05-09T02:30:02Z | 2017-05-09T02:33:57Z | 2017-05-09T02:33:57Z | 2017-05-09T02:44:38Z | 209 | soimort/you-get | 21,238 |
Fix incorrect space before colon in if/while stmts | diff --git a/CHANGES.md b/CHANGES.md
index 1c53604d4d..7e356f1f29 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -7,6 +7,9 @@
- `Black` now respects `--skip-string-normalization` when normalizing multiline
docstring quotes (#1637)
+- `Black` no longer adds an incorrect space after a parenthesized assignment expressi... | Fixes #1174
Fixes #1588
Previously Black would format this code
```
if (foo := True):
print(foo)
```
as
```
if (foo := True) :
print(foo)
```
adding an incorrect space after the RPAR. Buggy code in the
normalize_invisible_parens function caused the colon to be wrapped in
invisible parentheses... | https://api.github.com/repos/psf/black/pulls/1655 | 2020-08-29T23:45:05Z | 2020-08-31T21:20:07Z | 2020-08-31T21:20:06Z | 2020-09-02T22:29:17Z | 634 | psf/black | 24,160 |
Fix http/https mixed content on index page | diff --git a/index.html b/index.html
index df68e63e35..cc3bee36b8 100644
--- a/index.html
+++ b/index.html
@@ -102,7 +102,7 @@ <h1 id="you-get">You-Get</h1>
<p>Interested? <a href="#installation">Install it</a> now and <a href="#getting-started">get started by examples</a>.</p>
<p>Are you a Python programmer? Then ch... | you-get.org is server over https so images should be secured to.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/soimort/you-get/1447)
<!-- Reviewable:end -->
| https://api.github.com/repos/soimort/you-get/pulls/1447 | 2016-10-09T20:35:10Z | 2016-10-14T18:26:28Z | 2016-10-14T18:26:28Z | 2016-10-14T18:26:28Z | 330 | soimort/you-get | 20,999 |
Clarify 2.3.0 kubernetes min version is about library not cluster | diff --git a/README.md b/README.md
index 6f5830e68b211..01eab7b755979 100644
--- a/README.md
+++ b/README.md
@@ -85,15 +85,15 @@ Airflow is not a streaming solution, but it is often used to process real-time d
Apache Airflow is tested with:
-| | Main version (dev) | Stable version (2.3.0) ... | It was not clear from the release notes that the minimum version
of the kubernetes was about the library rather than cluster version.
Also README was not updated with min versions of Kubernetes cluster
for 2.3.0 version.
<!--
Thank you for contributing! Please make sure that your code changes
are covered with... | https://api.github.com/repos/apache/airflow/pulls/23398 | 2022-05-02T08:49:34Z | 2022-05-02T09:01:51Z | 2022-05-02T09:01:51Z | 2022-05-08T08:17:55Z | 1,016 | apache/airflow | 14,459 |
[docs]: add missing tiktoken dependency | diff --git a/docs/docs/expression_language/get_started.ipynb b/docs/docs/expression_language/get_started.ipynb
index 39c04a9f61a291..2ca5072c911977 100644
--- a/docs/docs/expression_language/get_started.ipynb
+++ b/docs/docs/expression_language/get_started.ipynb
@@ -321,7 +321,7 @@
"outputs": [],
"source": [
... | Description: I was following the docs and got an error about missing tiktoken dependency. Adding it to the comment where the langchain and docarray libs are. | https://api.github.com/repos/langchain-ai/langchain/pulls/14497 | 2023-12-10T00:04:07Z | 2023-12-13T01:04:49Z | 2023-12-13T01:04:49Z | 2023-12-13T01:04:49Z | 157 | langchain-ai/langchain | 43,654 |
Chore / Minor docker improvements | diff --git a/Dockerfile b/Dockerfile
index 159246673..0393bc2ad 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,6 @@
FROM python:3.7-alpine as build
WORKDIR /wheels
-RUN apk update --no-cache \
- && apk add --no-cache \
+RUN apk add --no-cache \
g++ \
gcc \
libxml2 \
diff --git a/docker-compose.ym... | - Remove unnecessary `apk update`
- Set image name in `docker-compose.yml` | https://api.github.com/repos/sherlock-project/sherlock/pulls/402 | 2019-12-04T15:50:50Z | 2019-12-04T16:41:31Z | 2019-12-04T16:41:31Z | 2019-12-04T18:09:43Z | 197 | sherlock-project/sherlock | 36,385 |
Add Pinata | diff --git a/README.md b/README.md
index d6e9216acb..898fe2ffb4 100644
--- a/README.md
+++ b/README.md
@@ -290,6 +290,7 @@ API | Description | Auth | HTTPS | CORS |
| [OneDrive](https://dev.onedrive.com/) | File Sharing and Storage | `OAuth` | Yes | Unknown |
| [Pantry](https://getpantry.cloud/) | Free JSON storage f... | <!-- 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/2583 | 2021-10-17T02:25:41Z | 2021-10-26T06:09:28Z | 2021-10-26T06:09:28Z | 2021-10-26T06:09:28Z | 234 | public-apis/public-apis | 36,100 |
chore: Removing tests/requirements.txt and adding dependencies to the tox.ini file | diff --git a/conftest.py b/conftest.py
index 2bfa46f5a27..2ab3dffd425 100644
--- a/conftest.py
+++ b/conftest.py
@@ -1,10 +1,6 @@
-import platform
-import sys
from pathlib import Path
import pytest
-from twisted import version as twisted_version
-from twisted.python.versions import Version
from twisted.web.http im... | Resolves https://github.com/scrapy/scrapy/issues/6270 | https://api.github.com/repos/scrapy/scrapy/pulls/6272 | 2024-03-06T14:06:42Z | 2024-03-13T06:22:48Z | 2024-03-13T06:22:48Z | 2024-03-13T06:22:48Z | 1,210 | scrapy/scrapy | 34,295 |
[vgtv] Add new extractor | diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index e49ac3e5278..18f73a8906b 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -325,6 +325,7 @@
from .veoh import VeohIE
from .vesti import VestiIE
from .vevo import VevoIE
+from .vgtv import VGTV... | Because of the #! in the URL structure for VGTV we need to add ' before and after given URL. Or else it will cry:
-bash: !/video/100495/lars-og-lars-sesong-6-episode-6-lakselus: event not found
| https://api.github.com/repos/ytdl-org/youtube-dl/pulls/3678 | 2014-09-04T19:05:57Z | 2014-09-08T14:27:49Z | 2014-09-08T14:27:49Z | 2014-09-08T14:28:31Z | 1,036 | ytdl-org/youtube-dl | 50,535 |
partners: add license field | diff --git a/libs/partners/anthropic/pyproject.toml b/libs/partners/anthropic/pyproject.toml
index 53ab7dd79fd70a..459d07d3b4ff3a 100644
--- a/libs/partners/anthropic/pyproject.toml
+++ b/libs/partners/anthropic/pyproject.toml
@@ -1,10 +1,11 @@
[tool.poetry]
name = "langchain-anthropic"
-version = "0.0.1.post1"
+vers... | - bumps package post versions for packages without current unreleased updates
- will bump package version in release prs associated with packages that do have changes (mistral, vertex) | https://api.github.com/repos/langchain-ai/langchain/pulls/16117 | 2024-01-17T01:54:33Z | 2024-01-17T16:37:14Z | 2024-01-17T16:37:14Z | 2024-01-17T16:37:15Z | 1,694 | langchain-ai/langchain | 43,152 |
scaled_dot_product_attention: don't dropout in eval | diff --git a/timm/models/beit.py b/timm/models/beit.py
index 3863198f12..663dcc4bd4 100644
--- a/timm/models/beit.py
+++ b/timm/models/beit.py
@@ -155,7 +155,7 @@ def forward(self, x, shared_rel_pos_bias: Optional[torch.Tensor] = None):
x = F.scaled_dot_product_attention(
q, k, v,
... | This doesn't affect the current models since attn_dropout is 0 | https://api.github.com/repos/huggingface/pytorch-image-models/pulls/1978 | 2023-10-03T19:00:11Z | 2023-10-05T15:58:41Z | 2023-10-05T15:58:41Z | 2023-10-05T15:59:18Z | 3,159 | huggingface/pytorch-image-models | 16,264 |
Fix potential random layout inconsistency issues in sparse attention modules | diff --git a/deepspeed/ops/sparse_attention/sparse_self_attention.py b/deepspeed/ops/sparse_attention/sparse_self_attention.py
index 2e3156049e94..6e7d8905e0a8 100644
--- a/deepspeed/ops/sparse_attention/sparse_self_attention.py
+++ b/deepspeed/ops/sparse_attention/sparse_self_attention.py
@@ -5,6 +5,7 @@
import torch... | There are two changes made to the SparseSelfAttention module in this PR:
1) Now SparseSelfAttention module will create a "master_layout" upfront and register it as a buffer, this saves us the need to create new layout on-the-fly later (which can cause inconsistency if there's randomness in layout creation) and also ... | https://api.github.com/repos/microsoft/DeepSpeed/pulls/534 | 2020-11-18T00:54:26Z | 2020-12-04T22:58:10Z | 2020-12-04T22:58:10Z | 2020-12-04T22:58:11Z | 691 | microsoft/DeepSpeed | 10,170 |
Add documentation domain name announcement | diff --git a/README.md b/README.md
index fca78cefe3b..0f7487d8c49 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,9 @@
[](https://pre-commit.com/) [ | Forward & Reverse Batch Geocoding REST API | `apiKey` | Yes | Unknown |
| [PostcodeData.nl](http://api.po... | Is just an update :)
| https://api.github.com/repos/public-apis/public-apis/pulls/2073 | 2021-09-30T07:13:37Z | 2021-09-30T07:49:05Z | 2021-09-30T07:49:05Z | 2021-09-30T07:49:05Z | 337 | public-apis/public-apis | 35,444 |
A simpler fix to ensuring the messages view can render | diff --git a/website/src/components/FlaggableElement.tsx b/website/src/components/FlaggableElement.tsx
index 9606f4259b..a7157c4a1b 100644
--- a/website/src/components/FlaggableElement.tsx
+++ b/website/src/components/FlaggableElement.tsx
@@ -36,13 +36,14 @@ interface textFlagLabels {
export const FlaggableElement = (... | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/588 | 2023-01-10T08:53:28Z | 2023-01-10T10:07:18Z | 2023-01-10T10:07:18Z | 2023-01-10T10:07:19Z | 457 | LAION-AI/Open-Assistant | 37,523 | |
Remove unnecessary use of async_add_job in openalpr_cloud | diff --git a/homeassistant/components/openalpr_cloud/image_processing.py b/homeassistant/components/openalpr_cloud/image_processing.py
index 2c2807f5364f..525edc7da4be 100644
--- a/homeassistant/components/openalpr_cloud/image_processing.py
+++ b/homeassistant/components/openalpr_cloud/image_processing.py
@@ -142,8 +14... |
## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
or resolves a feature request, be sure to link to that issue in the
additional information section.
-->
Remove unnecessary use of async_add... | https://api.github.com/repos/home-assistant/core/pulls/113116 | 2024-03-12T00:14:59Z | 2024-03-12T01:36:34Z | 2024-03-12T01:36:34Z | 2024-03-13T02:08:07Z | 164 | home-assistant/core | 39,249 |
Fix unstable formatting on string split + % formatting (fixes #1595) | diff --git a/src/black/__init__.py b/src/black/__init__.py
index 64a18655905..09b55b0938c 100644
--- a/src/black/__init__.py
+++ b/src/black/__init__.py
@@ -2668,9 +2668,9 @@ def rhs(line: Line, features: Collection[Feature]) -> Iterator[Line]:
transformers = [
string_merge,
... | Fixes #1595. | https://api.github.com/repos/psf/black/pulls/1680 | 2020-09-05T17:24:23Z | 2020-09-06T00:24:01Z | 2020-09-06T00:24:01Z | 2020-09-06T00:24:06Z | 1,019 | psf/black | 23,936 |
Updating Reference section hyperlinks | diff --git a/CSV Injection/README.md b/CSV Injection/README.md
index 6c1236f9b4..d631791043 100644
--- a/CSV Injection/README.md
+++ b/CSV Injection/README.md
@@ -53,11 +53,11 @@ Any formula can be started with
## References
-* [OWASP - CSV Excel Macro Injection](https://owasp.org/index.php/CSV_Excel_Macro_Injec... | https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/527 | 2022-08-15T05:54:10Z | 2022-08-15T09:40:15Z | 2022-08-15T09:40:15Z | 2022-10-21T16:00:07Z | 469 | swisskyrepo/PayloadsAllTheThings | 8,724 | |
Rename ``processor_poll_interval`` to ``scheduler_idle_sleep_time`` | diff --git a/UPDATING.md b/UPDATING.md
index 1c291d3d90114..047a9202e7c98 100644
--- a/UPDATING.md
+++ b/UPDATING.md
@@ -177,6 +177,27 @@ with DAG(dag_id="task_concurrency_example"):
BashOperator(task_id="t1", max_active_tis_per_dag=2, bash_command="echo Hi")
```
+### `processor_poll_interval` config have been ... | `[scheduler] processor_poll_interval` setting in `airflow.cfg` has been renamed to `[scheduler] scheduler_idle_sleep_time`
for better understanding.
<!--
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 d... | https://api.github.com/repos/apache/airflow/pulls/18704 | 2021-10-04T12:43:47Z | 2021-10-05T15:55:00Z | 2021-10-05T15:54:59Z | 2021-10-05T15:55:04Z | 2,092 | apache/airflow | 14,114 |
Abstract the remaining OS specific constants from the code | diff --git a/letsencrypt-apache/letsencrypt_apache/configurator.py b/letsencrypt-apache/letsencrypt_apache/configurator.py
index 6c6685257ed..836d7713577 100644
--- a/letsencrypt-apache/letsencrypt_apache/configurator.py
+++ b/letsencrypt-apache/letsencrypt_apache/configurator.py
@@ -86,10 +86,6 @@ class ApacheConfigur... | Fix to enable us to support broader range of different configuration schemes - some of which are OS defaults, and abstract remaining hardcoded but still OS dependent values.
Fixes #2034
| https://api.github.com/repos/certbot/certbot/pulls/2038 | 2015-12-28T12:31:15Z | 2016-01-03T01:45:51Z | 2016-01-03T01:45:51Z | 2016-05-06T19:22:24Z | 3,488 | certbot/certbot | 1,158 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.