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 |
|---|---|---|---|---|---|---|---|---|---|---|
fix nan in multiply | diff --git a/merger/MergeMasked.py b/merger/MergeMasked.py
index aaea66a57..bb9396612 100644
--- a/merger/MergeMasked.py
+++ b/merger/MergeMasked.py
@@ -232,6 +232,10 @@ def MergeMaskedFace (predictor_func, predictor_input_shape,
cfg_mp = cfg.motion_blur_power / 100.0
+ # linux openc... | https://github.com/iperov/DeepFaceLab/issues/763
I reproduced the issue and it turns out that linux opencv makes nan values,
that's why there is an error in merge
```
/app/deepfake/DeepFaceLab/merger/MergeMasked.py:235: RuntimeWarning: invalid value encountered in multiply
out_img = img_bgr*(1-img_face_mask_a) +... | https://api.github.com/repos/iperov/DeepFaceLab/pulls/769 | 2020-06-04T12:31:59Z | 2020-06-04T12:39:47Z | 2020-06-04T12:39:47Z | 2020-06-04T12:40:51Z | 210 | iperov/DeepFaceLab | 33,408 |
Changes in Documentation | diff --git a/scrapy/utils/defer.py b/scrapy/utils/defer.py
index aa6dcffda25..bcf20951165 100644
--- a/scrapy/utils/defer.py
+++ b/scrapy/utils/defer.py
@@ -11,7 +11,7 @@ def defer_fail(_failure):
"""Same as twisted.internet.defer.fail but delay calling errback until
next reactor loop
- It delays by 100m... | This is my first PR, so on going through the code, I found some typos, and corrected it.
Corrected Files: scrapy/utils/defer.py | https://api.github.com/repos/scrapy/scrapy/pulls/3089 | 2018-01-25T07:43:08Z | 2018-01-25T20:12:18Z | 2018-01-25T20:12:18Z | 2018-07-11T20:45:49Z | 154 | scrapy/scrapy | 34,849 |
feat: match anything in array syntax, not only words and whitespace | diff --git a/modules/sdxl_styles.py b/modules/sdxl_styles.py
index 71afc402f..2a310024c 100644
--- a/modules/sdxl_styles.py
+++ b/modules/sdxl_styles.py
@@ -94,9 +94,8 @@ def get_words(arrays, totalMult, index):
return [word] + get_words(arrays[1:], math.floor(totalMult/len(words)), index)
-
def apply_arr... | Closes https://github.com/lllyasviel/Fooocus/issues/2437
Matches now not only [[blue,red]], but also [[ (red:1.1), (blue:1.2) ]] and enables same seed checks for different prompt weight. | https://api.github.com/repos/lllyasviel/Fooocus/pulls/2438 | 2024-03-04T10:20:43Z | 2024-03-04T10:22:25Z | 2024-03-04T10:22:24Z | 2024-03-05T16:41:39Z | 157 | lllyasviel/Fooocus | 7,174 |
Add image parser using donut model | diff --git a/gpt_index/readers/file.py b/gpt_index/readers/file.py
index 5d4d55e027155..ffedd2e4e14f8 100644
--- a/gpt_index/readers/file.py
+++ b/gpt_index/readers/file.py
@@ -1,4 +1,5 @@
"""Simple reader that ."""
+import re
from pathlib import Path
from typing import Callable, Dict, List, Optional
@@ -42,9 +43,... | https://api.github.com/repos/run-llama/llama_index/pulls/228 | 2023-01-15T10:26:56Z | 2023-01-15T17:58:03Z | 2023-01-15T17:58:03Z | 2023-01-15T17:58:03Z | 730 | run-llama/llama_index | 6,142 | |
Convert release manager instructions to use "partial" svn checkouts | diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index 5397cf5f288b9..c997324e94d33 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -314,12 +314,12 @@ The Release Candidate artifacts we vote upon should be the exact ones we vote ag
```shell script
... | This just makes it a bit easier to manage copying between dev and release.
| https://api.github.com/repos/apache/airflow/pulls/26589 | 2022-09-22T10:45:29Z | 2022-09-22T11:46:00Z | 2022-09-22T11:46:00Z | 2022-11-10T21:54:01Z | 1,216 | apache/airflow | 14,774 |
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,183 |
add resolved IP address in "Details" tab | diff --git a/mitmproxy/console/flowdetailview.py b/mitmproxy/console/flowdetailview.py
index 757c76fdab..8e3a47ae84 100644
--- a/mitmproxy/console/flowdetailview.py
+++ b/mitmproxy/console/flowdetailview.py
@@ -23,6 +23,7 @@ def flowdetails(state, flow):
text.append(urwid.Text([("head", "Server Connection:")])... | It's useful to know the peer address when the domain has several IP addresses and you need to know where the request has gone.
| https://api.github.com/repos/mitmproxy/mitmproxy/pulls/1019 | 2016-03-10T07:14:23Z | 2016-03-15T22:28:08Z | 2016-03-15T22:28:08Z | 2016-04-11T00:00:15Z | 704 | mitmproxy/mitmproxy | 27,789 |
Fixed typo in docs/ref/templates/builtins.txt. | diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 17528cea187d0..02b63db24858e 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -1422,7 +1422,7 @@ Format character Description Example output
always ... | Fix typo in documentation | https://api.github.com/repos/django/django/pulls/13755 | 2020-12-08T21:19:44Z | 2021-01-04T06:34:54Z | 2021-01-04T06:34:54Z | 2021-01-04T06:35:02Z | 241 | django/django | 51,030 |
Python 3 - pathod.language.base | diff --git a/.travis.yml b/.travis.yml
index bdfb465504..5f065d536d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,9 +22,9 @@ matrix:
git:
depth: 9999999
- python: 3.5
- env: SCOPE="netlib test/mitmproxy/script test/pathod/test_utils.py test/pathod/test_log.py test/pathod/test_language_gene... | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/1209 | 2016-06-04T13:03:20Z | 2016-06-04T13:57:22Z | 2016-06-04T13:57:22Z | 2016-07-07T11:13:33Z | 988 | mitmproxy/mitmproxy | 28,286 | |
Handle exception in modbus slave sensor | diff --git a/homeassistant/components/modbus/sensor.py b/homeassistant/components/modbus/sensor.py
index 8363de3adf1d..d4f3d1f28b6c 100644
--- a/homeassistant/components/modbus/sensor.py
+++ b/homeassistant/components/modbus/sensor.py
@@ -101,6 +101,9 @@ async def async_update(self, now: datetime | None = None) -> None... | <!--
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/67472 | 2022-03-02T10:26:50Z | 2022-03-02T17:49:57Z | 2022-03-02T17:49:57Z | 2022-03-03T20:01:56Z | 650 | home-assistant/core | 38,764 |
Fix the problem of not using the decoding method corresponding to the base model in peft mode | diff --git a/fastchat/model/model_adapter.py b/fastchat/model/model_adapter.py
index 6578f8441a..af9a41af28 100644
--- a/fastchat/model/model_adapter.py
+++ b/fastchat/model/model_adapter.py
@@ -370,10 +370,14 @@ def get_generate_stream_function(model: torch.nn.Module, model_path: str):
from fastchat.serve.inferen... | <!-- 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?
<!-- Please give a short summary of the change and the problem ... | https://api.github.com/repos/lm-sys/FastChat/pulls/2865 | 2023-12-27T01:58:57Z | 2023-12-28T07:18:26Z | 2023-12-28T07:18:26Z | 2023-12-28T07:18:26Z | 235 | lm-sys/FastChat | 41,584 |
Pin dependencies in compatibility tests. | diff --git a/certbot-compatibility-test/Dockerfile b/certbot-compatibility-test/Dockerfile
index bb9359ce839..fe55a68a663 100644
--- a/certbot-compatibility-test/Dockerfile
+++ b/certbot-compatibility-test/Dockerfile
@@ -8,8 +8,8 @@ MAINTAINER Brad Warren <bmw@eff.org>
# TODO: Install non-default Python versions for... | Travis tests will fail until this is merged.
We now use tools/pip_install_editable.sh which installs our packages using the
pinned versions from certbot-auto.
We also use letsencrypt-auto-source/letsencrypt-auto instead of certbot-auto in
the root to:
1. Make sure OS bootstrappers are up to date with master.... | https://api.github.com/repos/certbot/certbot/pulls/5004 | 2017-08-08T18:02:38Z | 2017-08-08T22:31:42Z | 2017-08-08T22:31:42Z | 2017-08-08T22:31:44Z | 684 | certbot/certbot | 1,879 |
add datetime hashing for st.cache_data and st.cache_resource | diff --git a/lib/streamlit/runtime/caching/hashing.py b/lib/streamlit/runtime/caching/hashing.py
index 06ee14619fe9..c9c7230c1e1e 100644
--- a/lib/streamlit/runtime/caching/hashing.py
+++ b/lib/streamlit/runtime/caching/hashing.py
@@ -15,6 +15,7 @@
"""Hashing for st.cache_data and st.cache_resource."""
import collect... | <!--
⚠️ BEFORE CONTRIBUTING PLEASE READ OUR CONTRIBUTING GUIDELINES!
https://github.com/streamlit/streamlit/wiki/Contributing
-->
## Describe your changes
Previously hashing of `datetime` objects happens via calling `__reduce__`, but that fails when datetime object was aware (containing information about the t... | https://api.github.com/repos/streamlit/streamlit/pulls/6812 | 2023-06-07T16:04:36Z | 2023-06-21T17:35:35Z | 2023-06-21T17:35:35Z | 2023-11-01T23:58:10Z | 1,094 | streamlit/streamlit | 21,783 |
Update install.sh | diff --git a/install.sh b/install.sh
index 6cdc8a63..afdfcef3 100644
--- a/install.sh
+++ b/install.sh
@@ -39,7 +39,7 @@ INSTALL_DIR="/usr/share/doc/hackingtool"
BIN_DIR="/usr/bin/"
if [ $choice == 1 ]; then
echo "[*] Checking Internet Connection .."
- wget -q --tries=10 --timeout=20 --spider http://google.com
+ w... | wget option will not work with http but instead with https - or remove the entire line, the program will not install. | https://api.github.com/repos/Z4nzu/hackingtool/pulls/69 | 2020-07-23T20:39:00Z | 2020-07-24T08:16:11Z | 2020-07-24T08:16:10Z | 2020-07-24T08:16:11Z | 159 | Z4nzu/hackingtool | 9,879 |
support --keysize N cmdline param to give RSA key size | diff --git a/letsencrypt/client/client.py b/letsencrypt/client/client.py
index dd4e23c6e24..763178d19e2 100644
--- a/letsencrypt/client/client.py
+++ b/letsencrypt/client/client.py
@@ -330,7 +330,7 @@ def validate_key_csr(privkey, csr=None):
"The key and CSR do not match")
-def init_key():
+def... | also: improve tests for usual key sizes
note: I would have liked -b N for the bitsize, but -b is already used otherwise.
i ran tox, no issues, also did practical tests and got certificates issued with 1024, 2048, 3072, 4096 and 8192 bits. the latter is ofc a bit slow, but I think we only should check the lower bounda... | https://api.github.com/repos/certbot/certbot/pulls/175 | 2015-01-23T02:41:22Z | 2015-01-23T23:24:34Z | 2015-01-23T23:24:34Z | 2016-05-06T19:21:49Z | 895 | certbot/certbot | 669 |
#1282 git misspelled | diff --git a/tests/rules/test_no_command.py b/tests/rules/test_no_command.py
index 0df4590b2..96f0f069a 100644
--- a/tests/rules/test_no_command.py
+++ b/tests/rules/test_no_command.py
@@ -21,7 +21,8 @@ def history_without_current(mocker):
('vom file.py', 'vom: not found'),
('fucck', 'fucck: not found'),
... | The function git_support can not be useful if a command has the word "git" misspelled.
The purpose of this rule is to unfuck the commands like: gti commit -m 'message'.
Without this rule, for example, if you try to unfuck this command the result will be:
git commit -m message. This means that the quotation marks do ... | https://api.github.com/repos/nvbn/thefuck/pulls/1292 | 2022-05-03T19:31:37Z | 2022-06-13T21:29:15Z | 2022-06-13T21:29:15Z | 2023-10-30T19:15:55Z | 463 | nvbn/thefuck | 30,620 |
Fix Bug if input size is different than 128 | diff --git a/plugins/train/model/villain.py b/plugins/train/model/villain.py
index 90c202032f..e662f60bd5 100644
--- a/plugins/train/model/villain.py
+++ b/plugins/train/model/villain.py
@@ -38,7 +38,7 @@ def encoder(self):
tmp_x = var_x
res_cycles = 8 if self.config.get("lowmem", False) else 16
... | At the moment if the input size is different than 128 the model structure building fails on this line: `var_x = add([var_x, tmp_x])`https://github.com/deepfakes/faceswap/blob/master/plugins/train/model/villain.py#L41
This is because the number of filters in `var_x` and `tmp_x` are different. On line 37 and 38, `tmp_... | https://api.github.com/repos/deepfakes/faceswap/pulls/960 | 2020-01-09T11:24:54Z | 2020-01-10T12:05:13Z | 2020-01-10T12:05:13Z | 2020-01-10T13:01:52Z | 178 | deepfakes/faceswap | 18,889 |
Update cls bias init | diff --git a/models/yolo.py b/models/yolo.py
index e5ee3fd57db..85c8d43258e 100644
--- a/models/yolo.py
+++ b/models/yolo.py
@@ -201,7 +201,7 @@ def _initialize_biases(self, cf=None): # initialize biases into Detect(), cf is
for mi, s in zip(m.m, m.stride): # from
b = mi.bias.view(m.na, -1) # c... | Increased numerical precision. Returns 1.0 probability for single-class datasets now. Addresses https://github.com/ultralytics/yolov5/issues/5357
```python
torch.sigmoid(torch.tensor([math.log(0.6 / (1 - 0.999999))]))
Out[19]: tensor([1.0000])
```
## 🛠️ PR Summary
<sub>Made with ❤️ by [Ultralytics Actions](htt... | https://api.github.com/repos/ultralytics/yolov5/pulls/5520 | 2021-11-05T12:16:17Z | 2021-11-05T12:18:46Z | 2021-11-05T12:18:46Z | 2024-01-19T14:38:22Z | 263 | ultralytics/yolov5 | 25,662 |
Bump exllamav2 version to 0.0.7 | diff --git a/requirements.txt b/requirements.txt
index 27cdaeec13..0137eac14f 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,7 +2,7 @@ accelerate==0.24.*
colorama
datasets
einops
-exllamav2==0.0.6; platform_system != "Darwin" and platform_machine != "x86_64"
+exllamav2==0.0.7; platform_system != "Darwin"... | ## Checklist:
- [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines).
| https://api.github.com/repos/oobabooga/text-generation-webui/pulls/4417 | 2023-10-29T22:35:36Z | 2023-10-31T22:12:14Z | 2023-10-31T22:12:14Z | 2023-10-31T22:12:15Z | 3,547 | oobabooga/text-generation-webui | 26,013 |
Bump actions/setup-python from 2 to 3 | diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
index 560835dab2..e5b40a95be 100644
--- a/.github/workflows/benchmark.yml
+++ b/.github/workflows/benchmark.yml
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- - uses: actions/setup-p... | Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-python/releases">actions/setup-python's releases</a>.</em></p>
<blockquote>
<h2>v3.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update ... | https://api.github.com/repos/httpie/cli/pulls/1307 | 2022-02-28T14:21:00Z | 2022-03-01T14:17:41Z | 2022-03-01T14:17:41Z | 2022-03-01T14:17:42Z | 844 | httpie/cli | 34,015 |
Change neptune.ml to neptune.ai | diff --git a/README.md b/README.md
index c96f2ab7..b36f27b1 100644
--- a/README.md
+++ b/README.md
@@ -1656,7 +1656,7 @@ be
* [Sacred](https://github.com/IDSIA/sacred) - Python tool to help you configure, organize, log and reproduce experiments. Like a notebook lab in the context of Chemistry/Biology. The community h... | Neptune.ai is now the correct address. Thanks! | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/808 | 2021-09-02T08:43:38Z | 2021-09-02T17:06:50Z | 2021-09-02T17:06:50Z | 2021-09-02T17:06:50Z | 640 | josephmisiti/awesome-machine-learning | 52,057 |
Add mechanism to delete CF resources of deleted stacks | diff --git a/localstack/services/cloudformation/cloudformation_listener.py b/localstack/services/cloudformation/cloudformation_listener.py
index d935472d0b975..e29602169a672 100644
--- a/localstack/services/cloudformation/cloudformation_listener.py
+++ b/localstack/services/cloudformation/cloudformation_listener.py
@@ ... | Add mechanism to delete CF resources of deleted stacks - addresses #999 | https://api.github.com/repos/localstack/localstack/pulls/1888 | 2019-12-19T22:17:00Z | 2019-12-19T22:43:50Z | 2019-12-19T22:43:50Z | 2019-12-19T22:43:53Z | 3,038 | localstack/localstack | 29,021 |
Add x-api-key to allowed CORS headers to enable access from Web app | diff --git a/localstack/services/cloudformation/engine/template_deployer.py b/localstack/services/cloudformation/engine/template_deployer.py
index eb0da5973a20f..b0c59f8eb4377 100644
--- a/localstack/services/cloudformation/engine/template_deployer.py
+++ b/localstack/services/cloudformation/engine/template_deployer.py... | Add `x-api-key` to the list of allowed CORS headers, to enable passing this header from the LocalStack Web app.
This header is used, among others, for API Gateway and AppSync GraphQL APIs. For AppSync, we've recently extended our resource browser to make requests directly from the Web app. Currently this requires st... | https://api.github.com/repos/localstack/localstack/pulls/8769 | 2023-07-28T16:40:07Z | 2023-07-29T12:15:31Z | 2023-07-29T12:15:31Z | 2023-07-29T12:15:34Z | 400 | localstack/localstack | 29,388 |
Update conversation.py | diff --git a/fastchat/conversation.py b/fastchat/conversation.py
index 33387ad69e..c66ee18127 100644
--- a/fastchat/conversation.py
+++ b/fastchat/conversation.py
@@ -228,8 +228,7 @@ def to_gradio_chatbot(self):
def to_openai_api_messages(self):
"""Convert the conversation to OpenAI chat completion form... | OpenAI chat completion API does NOT require the prompt at the start of the `system` message (e.g., do not include `<|im_start|>system\n`) - just the system message itself.
Docs: https://platform.openai.com/docs/guides/gpt/chat-completions-api
<!-- Thank you for your contribution! -->
<!-- Please add a reviewer... | https://api.github.com/repos/lm-sys/FastChat/pulls/2306 | 2023-08-24T21:44:05Z | 2023-08-25T01:52:50Z | 2023-08-25T01:52:50Z | 2023-08-25T01:52:50Z | 164 | lm-sys/FastChat | 41,463 |
Remove a test per @kennethreitz in IRC | diff --git a/test_requests.py b/test_requests.py
index 425e357094..e3f8627f77 100644
--- a/test_requests.py
+++ b/test_requests.py
@@ -76,10 +76,6 @@ def test_params_are_added_before_fragment(self):
self.assertEqual(request.url,
"http://example.com/path?key=value&a=b#fragment")
- def test_HTT... | The test suite is moving from the httpbin pattern (which hits the network) to depending on the request.prepare method (which doesn't). Here's a start ...
:rocket:
| https://api.github.com/repos/psf/requests/pulls/1137 | 2013-01-24T01:36:17Z | 2013-01-24T01:37:13Z | 2013-01-24T01:37:13Z | 2021-09-08T18:01:26Z | 149 | psf/requests | 32,052 |
Adding Manning Publication's books and one course to respective lists | diff --git a/books.md b/books.md
index f78cc02a..d888ebfb 100644
--- a/books.md
+++ b/books.md
@@ -31,10 +31,14 @@ The following is a list of free, open source books on machine learning, statisti
* [Bayesian Reasoning and Machine Learning](http://web4.cs.ucl.ac.uk/staff/D.Barber/pmwiki/pmwiki.php?n=Brml.HomePage) Book... | Hello,
I was wondering if you would consent to adding the books and course that I have added to the respective resource lists on your page.
Thanks for your consideration. | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/433 | 2017-10-08T07:21:01Z | 2017-10-12T14:13:12Z | 2017-10-12T14:13:12Z | 2017-10-12T16:12:46Z | 736 | josephmisiti/awesome-machine-learning | 52,105 |
[3.8] bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453) | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 29810c4df1cc5b..88aa37d4318285 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -95,7 +95,7 @@ jobs:
build_win32:
name: 'Windows (x86)'
- runs-on: windows-latest
+ runs-on: windows-2019
needs: ... | Curly brackets were never allowed in namespace URIs
according to RFC 3986, and so-called namespace-validating
XML parsers have the right to reject them a invalid URIs.
libexpat >=2.4.5 has become strcter in that regard due to
related security issues; with ET.XML instantiating a
namespace-aware parser under the h... | https://api.github.com/repos/python/cpython/pulls/31470 | 2022-02-21T14:48:59Z | 2022-02-22T20:57:53Z | 2022-02-22T20:57:53Z | 2022-02-22T20:58:07Z | 1,187 | python/cpython | 4,024 |
Fix publish docker image | diff --git a/.github/workflows/publish-workflow.yaml b/.github/workflows/publish-workflow.yaml
index 8b3aae9d86..634aef5385 100644
--- a/.github/workflows/publish-workflow.yaml
+++ b/.github/workflows/publish-workflow.yaml
@@ -28,6 +28,7 @@ jobs:
uses: docker/build-push-action@v5
with:
cont... | https://api.github.com/repos/xtekky/gpt4free/pulls/1310 | 2023-12-06T11:20:03Z | 2023-12-06T11:20:19Z | 2023-12-06T11:20:19Z | 2023-12-06T11:20:19Z | 248 | xtekky/gpt4free | 38,145 | |
Fix facebook extractor | diff --git a/src/you_get/common.py b/src/you_get/common.py
index c14026dcd3..0a8e160c34 100644
--- a/src/you_get/common.py
+++ b/src/you_get/common.py
@@ -900,7 +900,7 @@ def script_main(script_name, download, download_playlist = None):
sys.exit(1)
def url_to_module(url):
- from .extractors import ne... | Previously would throw error if there is no hd_src
Modified to use json parser and check if hd_src is None
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/soimort/you-get/514)
<!-- Reviewable:end -->
| https://api.github.com/repos/soimort/you-get/pulls/514 | 2015-04-12T14:00:22Z | 2015-05-13T15:04:39Z | 2015-05-13T15:04:39Z | 2015-05-13T15:05:09Z | 1,384 | soimort/you-get | 21,112 |
[autoparallel] fix parameters sharding bug | diff --git a/colossalai/auto_parallel/passes/runtime_preparation_pass.py b/colossalai/auto_parallel/passes/runtime_preparation_pass.py
index bb419be35e55..e63bfdfe730c 100644
--- a/colossalai/auto_parallel/passes/runtime_preparation_pass.py
+++ b/colossalai/auto_parallel/passes/runtime_preparation_pass.py
@@ -426,8 +42... | ## 📌 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/2716 | 2023-02-15T04:21:00Z | 2023-02-15T04:25:50Z | 2023-02-15T04:25:50Z | 2023-02-15T04:25:50Z | 440 | hpcaitech/ColossalAI | 11,362 |
check that the message content is a string before calling strip() | diff --git a/interpreter/core/llm/utils/convert_to_openai_messages.py b/interpreter/core/llm/utils/convert_to_openai_messages.py
index bc3962704..5775a185c 100644
--- a/interpreter/core/llm/utils/convert_to_openai_messages.py
+++ b/interpreter/core/llm/utils/convert_to_openai_messages.py
@@ -170,7 +170,8 @@ def convert... | ### Describe the changes you have made:
Checks the new message content's type before attempting to call `strip()`. In cases where a screenshot is being sent, `content` will be a list, not a string.
### Reference any relevant issues (e.g. "Fixes #000"):
- Fixes #1116
### Pre-Submission Checklist (optional but ... | https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/1117 | 2024-03-22T21:09:18Z | 2024-03-24T07:47:09Z | 2024-03-24T07:47:09Z | 2024-03-29T20:02:58Z | 170 | OpenInterpreter/open-interpreter | 40,693 |
Add rope-scaling parameters to export_model.py | diff --git a/model/model_training/tools/export_model.py b/model/model_training/tools/export_model.py
index d41d56fb6f..8ce456085e 100644
--- a/model/model_training/tools/export_model.py
+++ b/model/model_training/tools/export_model.py
@@ -17,6 +17,10 @@ def parse_args():
parser.add_argument("--cache_dir", type=str... | Add two new command line parameters which when present override the model's rope-scaling configuration:
`--rope_scaling_type`: linear, dynamic (default="linear")
`--rope_scaling_factor`: set rope scaling factor (float >1.0) | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3618 | 2023-07-31T07:47:58Z | 2023-08-08T10:02:53Z | 2023-08-08T10:02:53Z | 2023-08-08T10:02:54Z | 373 | LAION-AI/Open-Assistant | 36,868 |
Fix #2897 - Add `extra_files` option to `flask run` CLI | diff --git a/CHANGES.rst b/CHANGES.rst
index 6a179bdff1..2a6641c65d 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -49,6 +49,9 @@ Unreleased
not installed, or if the given path isn't a file. :issue:`2937`
- Signaling support has a stub for the ``connect_via`` method when
the Blinker library is not installed... | Fix #2897
To define a list of files the reloader should watch additionally to the modules
as in ``extra_files`` argument used in the ``app.run`` and ``werkzeug.serving.run_simple``
you can either use the ``--extra-files`` (or multiple ``-f``) option or define the
``FLASK_RUN_EXTRA_FILES`` environment variable.
... | https://api.github.com/repos/pallets/flask/pulls/2898 | 2018-08-31T22:11:54Z | 2019-05-24T14:32:46Z | 2019-05-24T14:32:46Z | 2020-11-14T02:09:35Z | 1,024 | pallets/flask | 20,718 |
Add lambda-ml | diff --git a/README.md b/README.md
index ec6dca22..d06f3736 100644
--- a/README.md
+++ b/README.md
@@ -233,6 +233,7 @@ For a list of free machine learning books available for download, go [here](http
* [clortex](https://github.com/nupic-community/clortex) - General Machine Learning library using Numenta’s Cortical Lea... | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/325 | 2016-10-26T19:03:20Z | 2016-10-27T14:51:18Z | 2016-10-27T14:51:18Z | 2016-10-27T14:51:21Z | 214 | josephmisiti/awesome-machine-learning | 51,869 | |
Using uppercase C to 'clear' display mode, because lowercase 'c' is used for css | diff --git a/libmproxy/console/flowview.py b/libmproxy/console/flowview.py
index b2c4614754..bf0070fc6b 100644
--- a/libmproxy/console/flowview.py
+++ b/libmproxy/console/flowview.py
@@ -637,11 +637,10 @@ def view_prev_flow(self, flow):
return self._view_nextprev_flow("prev", flow)
def change_this_displ... | Ran 319 tests in 30.566s
OK
| https://api.github.com/repos/mitmproxy/mitmproxy/pulls/403 | 2014-11-07T16:03:44Z | 2014-11-10T16:32:06Z | 2014-11-10T16:32:06Z | 2014-11-10T16:37:32Z | 291 | mitmproxy/mitmproxy | 28,322 |
Fix bug identified in #1817, comment 17340049 | diff --git a/sklearn/hmm.py b/sklearn/hmm.py
index 2b3c86d326d4c..3e60a85fc0645 100644
--- a/sklearn/hmm.py
+++ b/sklearn/hmm.py
@@ -560,12 +560,15 @@ def _accumulate_sufficient_statistics(self, stats, seq, framelogprob,
stats['start'] += posteriors[0]
if 't' in params:
n_observations... | Here's the bug report:
https://github.com/scikit-learn/scikit-learn/issues/1817#issuecomment-17340048
| https://api.github.com/repos/scikit-learn/scikit-learn/pulls/2524 | 2013-10-15T19:02:53Z | 2013-10-25T08:06:44Z | 2013-10-25T08:06:44Z | 2014-06-13T11:38:25Z | 662 | scikit-learn/scikit-learn | 46,184 |
[MRG] IterativeImputer reorder estimator | diff --git a/sklearn/impute.py b/sklearn/impute.py
index b2459a003b16f..3bb0bdd9eff15 100644
--- a/sklearn/impute.py
+++ b/sklearn/impute.py
@@ -433,15 +433,15 @@ class IterativeImputer(BaseEstimator, TransformerMixin):
Parameters
----------
- missing_values : int, np.nan, optional (default=np.nan)
- ... | As discussed in #11977, we want the `estimator` to be first to make the UI less confusing. Open to other changes here.
Paging @amueller and @jnothman | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/13153 | 2019-02-13T03:07:20Z | 2019-02-13T05:42:04Z | 2019-02-13T05:42:04Z | 2019-02-13T05:52:36Z | 412 | scikit-learn/scikit-learn | 46,599 |
Upd Brazilian Vehicles and Prices: CORS from Unknown to No | diff --git a/README.md b/README.md
index d29b693757..92abdd5442 100644
--- a/README.md
+++ b/README.md
@@ -1682,7 +1682,7 @@ API | Description | Auth | HTTPS | CORS |
### Vehicle
API | Description | Auth | HTTPS | CORS |
|---|---|---|---|---|
-| [Brazilian Vehicles and Prices](https://deividfortuna.github.io/fipe/) ... | Updated cors to no
| https://api.github.com/repos/public-apis/public-apis/pulls/2976 | 2021-12-25T03:13:18Z | 2021-12-25T18:59:58Z | 2021-12-25T18:59:58Z | 2021-12-25T18:59:58Z | 300 | public-apis/public-apis | 35,580 |
Lexicon v3 compatibility | diff --git a/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py b/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py
index 674194fee68..658db6072f5 100644
--- a/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py
+++ b/certbot-dns-cloudxns/certbot_dns_cloudxns/dns_cloudxns.py
@@ -70,6 +70,7 @@ def _... | Lexicon will soon move to a new major version after my PR AnalogJ/lexicon#302 is merged. As discussed in #6472, this implies breaking changes that needs to be integrated in dns plugins that are backed by Lexicon.
This PR ensures that theses plugins will work both if Lexicon 2.x and Lexicon 3.x.
Tested on live API... | https://api.github.com/repos/certbot/certbot/pulls/6474 | 2018-11-05T21:23:57Z | 2018-11-05T22:07:10Z | 2018-11-05T22:07:10Z | 2018-11-05T22:10:31Z | 1,935 | certbot/certbot | 469 |
Added Convolutional Autoencoders for data assimilation reference | diff --git a/README.md b/README.md
index fb9f16fe..d4863604 100644
--- a/README.md
+++ b/README.md
@@ -1236,6 +1236,7 @@ be
* [MiniGrad](https://github.com/kennysong/minigrad) – A minimal, educational, Pythonic implementation of autograd (~100 loc).
* [Map/Reduce implementations of common ML algorithms](https://githu... | Adds link to application of deep learning to Numerical modelling problem of [Data Assimilation](https://en.wikipedia.org/wiki/Data_assimilation). Recently published [paper](https://arxiv.org/abs/2101.02121) accompanies the code. | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/767 | 2021-01-07T10:17:55Z | 2021-01-13T14:44:33Z | 2021-01-13T14:44:33Z | 2021-01-13T14:44:33Z | 325 | josephmisiti/awesome-machine-learning | 52,400 |
fixed the variable types in mailsender documentation | diff --git a/docs/topics/email.rst b/docs/topics/email.rst
index e73c7475360..d995894138e 100644
--- a/docs/topics/email.rst
+++ b/docs/topics/email.rst
@@ -63,10 +63,10 @@ uses `Twisted non-blocking IO`_, like the rest of the framework.
:type smtpport: int
:param smtptls: enforce using SMTP STARTTLS
- :... | The MailSender documentation had a minor error: `smtpport` was displayed as being boolean and `smtptls` and `smtpssl` did not have a type given.
| https://api.github.com/repos/scrapy/scrapy/pulls/976 | 2014-12-10T21:49:59Z | 2014-12-10T22:02:34Z | 2014-12-10T22:02:34Z | 2014-12-10T22:02:39Z | 159 | scrapy/scrapy | 34,453 |
feat(dashboards): Add dashboard widget resizing flag | diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py
index 9b3a3b26044e5..8e8bf8022c41c 100644
--- a/src/sentry/conf/server.py
+++ b/src/sentry/conf/server.py
@@ -1000,6 +1000,8 @@ def create_partitioned_queues(name):
"organizations:sentry-app-debugging": False,
# Enable data forwarding function... | https://api.github.com/repos/getsentry/sentry/pulls/30000 | 2021-11-12T20:50:29Z | 2021-11-15T15:12:11Z | 2021-11-15T15:12:11Z | 2021-12-01T00:01:49Z | 336 | getsentry/sentry | 44,206 | |
adding `_scheme` parameter to `url_for` | diff --git a/flask/helpers.py b/flask/helpers.py
index 6aea45c61a..a1c09cc57a 100644
--- a/flask/helpers.py
+++ b/flask/helpers.py
@@ -229,6 +229,9 @@ def external_url_handler(error, endpoint, **values):
that this is for building URLs outside the current application, and not for
handling 404 NotFound errors.
... | In order to better facilitate generation of URLs that make use of an HTTPS URL
scheme this patch adds a parameter with this specific purpose in mind. To
achieve this we explicitly pass in a param, `_scheme='https'`, and then set the
`url_scheme` attribute of our `MapAdapter` instance appropriately.
Importantly, `_exte... | https://api.github.com/repos/pallets/flask/pulls/667 | 2013-01-17T23:13:13Z | 2013-01-25T02:57:45Z | 2013-01-25T02:57:45Z | 2020-11-14T07:18:41Z | 672 | pallets/flask | 20,082 |
website: Fix Header.stories.js rendering add FlagsProvider | diff --git a/website/src/components/Header/Header.stories.jsx b/website/src/components/Header/Header.stories.jsx
index c3c6101828..5570f6fa74 100644
--- a/website/src/components/Header/Header.stories.jsx
+++ b/website/src/components/Header/Header.stories.jsx
@@ -1,5 +1,6 @@
import { SessionContext } from "next-auth/re... | Hi!
The story at `src/components/Header/Header.stories.jsx` is not loading correctly in when running storybook.
It needs to be wrapped in the `FlagsProvider` as is using the Flags component. If the `Flags` component is going to be used in more places it would be advisable to write a storybook decorator for it.
... | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/688 | 2023-01-13T17:47:16Z | 2023-01-13T23:15:00Z | 2023-01-13T23:15:00Z | 2023-01-13T23:15:05Z | 205 | LAION-AI/Open-Assistant | 37,463 |
modified to avoid type's mismatch and make like rest of the code | diff --git a/g4f/Provider/Bing.py b/g4f/Provider/Bing.py
index f8b06dd1f8..aa1b37b0b9 100644
--- a/g4f/Provider/Bing.py
+++ b/g4f/Provider/Bing.py
@@ -462,7 +462,7 @@ async def stream_generate(
response_txt = card.get('text')
if message.get('messageT... | https://api.github.com/repos/xtekky/gpt4free/pulls/1744 | 2024-03-22T17:36:23Z | 2024-03-23T10:44:00Z | 2024-03-23T10:44:00Z | 2024-03-23T10:44:12Z | 167 | xtekky/gpt4free | 37,848 | |
fix download_loader | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 442d6b10c722f..908c950ccb8bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# ChangeLog
+## Unreleased
+
+### Bug Fixes / Nits
+
+- Fixed errors about "no host supplied" with `download_loader` (#8723)
+
## [0.8.62.post1] - 2023-11-05
### Breaking Chan... | `download_loader` should not convert the remote path to a `Path` object, it was converting `https://....` to `https:/...` | https://api.github.com/repos/run-llama/llama_index/pulls/8723 | 2023-11-07T03:26:32Z | 2023-11-07T03:35:09Z | 2023-11-07T03:35:09Z | 2023-11-07T03:35:09Z | 367 | run-llama/llama_index | 6,358 |
Changed name of directory to save file to | diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst
index ff92d701f66..42d6d0d2297 100644
--- a/docs/intro/tutorial.rst
+++ b/docs/intro/tutorial.rst
@@ -121,7 +121,7 @@ define the three main, mandatory, attributes:
objects) and more URLs to follow (as :class:`~scrapy.http.Request` objects).
This is th... | The tutorial says to save to `dmoz/spiders` but this folder is non-existent. I have changed it to `tutorial/spiders` which makes sense in the tutorial.
| https://api.github.com/repos/scrapy/scrapy/pulls/375 | 2013-08-27T07:41:22Z | 2013-08-27T13:46:34Z | 2013-08-27T13:46:34Z | 2014-07-08T04:08:34Z | 158 | scrapy/scrapy | 34,616 |
Fix help typo | diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py
index 58250d75efd..2dc3de3d3ea 100644
--- a/letsencrypt/cli.py
+++ b/letsencrypt/cli.py
@@ -652,7 +652,7 @@ def prepare_and_parse_args(plugins, args, detect_defaults=False):
helpful.add(
"automation", "-q", "--quiet", dest="quiet", action="store_true",
... | https://api.github.com/repos/certbot/certbot/pulls/2774 | 2016-04-06T02:01:57Z | 2016-04-06T21:18:29Z | 2016-04-06T21:18:29Z | 2016-05-06T19:22:33Z | 155 | certbot/certbot | 3,200 | |
Clean up mountain car environment | diff --git a/gym/envs/classic_control/mountain_car.py b/gym/envs/classic_control/mountain_car.py
index 5dc7aa47be0..43421e5d937 100644
--- a/gym/envs/classic_control/mountain_car.py
+++ b/gym/envs/classic_control/mountain_car.py
@@ -2,7 +2,6 @@
http://incompleteideas.net/sutton/MountainCar/MountainCar1.cp
permalink: ... | https://api.github.com/repos/openai/gym/pulls/1961 | 2020-06-17T07:53:31Z | 2020-06-19T21:13:16Z | 2020-06-19T21:13:16Z | 2020-06-19T21:13:16Z | 1,872 | openai/gym | 5,600 | |
clear stream info | diff --git a/src/you_get/extractors/bilibili.py b/src/you_get/extractors/bilibili.py
index 49334d5bd7..c61a0567d0 100644
--- a/src/you_get/extractors/bilibili.py
+++ b/src/you_get/extractors/bilibili.py
@@ -141,6 +141,8 @@ def url_size(url, faker=False, headers={},err_value=0):
def prepare(self, **kwargs):
... | When download video consecutively, like ```you-get -I download.txt ...```, previous stream info is not clear, may cause download wrong video.
连续下载,例如使用-I模式时,前一个视频的信息未被清除,导致下载视频错误 | https://api.github.com/repos/soimort/you-get/pulls/2956 | 2022-04-07T19:11:30Z | 2022-04-19T14:58:25Z | 2022-04-19T14:58:25Z | 2022-04-20T02:05:28Z | 170 | soimort/you-get | 21,276 |
Support dynamic port on Lambda remote debugging | diff --git a/localstack/utils/container_utils/container_client.py b/localstack/utils/container_utils/container_client.py
index 9cdb3d6c700a8..d0e5830444b88 100644
--- a/localstack/utils/container_utils/container_client.py
+++ b/localstack/utils/container_utils/container_client.py
@@ -166,7 +166,7 @@ def add(
... | <!-- 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
This is solution for #9419
The differences in behavior are... | https://api.github.com/repos/localstack/localstack/pulls/9420 | 2023-10-20T10:09:54Z | 2024-01-11T12:48:49Z | 2024-01-11T12:48:49Z | 2024-01-14T06:45:27Z | 1,292 | localstack/localstack | 29,120 |
Added flow marking functionality in the console | diff --git a/libmproxy/console/__init__.py b/libmproxy/console/__init__.py
index 052ac7ddaa..3d20947b9a 100644
--- a/libmproxy/console/__init__.py
+++ b/libmproxy/console/__init__.py
@@ -48,6 +48,7 @@ def add_flow(self, f):
self.set_focus(0)
elif self.follow_focus:
self.set_focus(len(... | Some functionality in https://github.com/mitmproxy/mitmproxy/issues/623 was actually fairly trivial to implement. The following features are included
In the flow list view:
- Press 'm' to toggle an easily visible mark on the current flow.
- When the flow list is cleared with 'C', marked flows are not deleted.
- If all... | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/624 | 2015-06-11T17:31:06Z | 2015-06-12T01:53:07Z | 2015-06-12T01:53:07Z | 2015-06-12T02:01:30Z | 1,844 | mitmproxy/mitmproxy | 27,441 |
Update proxysql_manage_config.py | diff --git a/lib/ansible/modules/database/proxysql/proxysql_manage_config.py b/lib/ansible/modules/database/proxysql/proxysql_manage_config.py
index 45d80f6e9b5496..858d7546bf7546 100644
--- a/lib/ansible/modules/database/proxysql/proxysql_manage_config.py
+++ b/lib/ansible/modules/database/proxysql/proxysql_manage_con... | Incorrect example - wrong module used (proxysql_global_variables instead of proxysql_manage_config)
+label: docsite_pr
##### SUMMARY
<!--- Describe the change below, including rationale and design decisions -->
<!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue -->
##### ISSUE TYPE
<!---... | https://api.github.com/repos/ansible/ansible/pulls/47613 | 2018-10-25T11:26:42Z | 2018-10-26T01:35:02Z | 2018-10-26T01:35:02Z | 2019-07-22T17:04:54Z | 243 | ansible/ansible | 49,013 |
fix misformatting of floats with leading zeros | diff --git a/black.py b/black.py
index c899bde36db..d81c3548703 100644
--- a/black.py
+++ b/black.py
@@ -2564,7 +2564,9 @@ def format_int_string(text: str, allow_underscores: bool) -> str:
# No underscores for numbers <= 6 digits long.
return text
- return format(int(text), "3_")
+ # Avoid rem... | This is a bug in my previous code: it ended up turning "0.06" into "0.6".
The solution in this diff is a bit hacky, but it has the virtue of being correct, unlike the previous code.
It might be worth thinking about this part of the style some more: Should we even put underscores in the part of floats behind the d... | https://api.github.com/repos/psf/black/pulls/464 | 2018-08-20T04:14:23Z | 2018-08-20T15:19:25Z | 2018-08-20T15:19:25Z | 2018-08-20T15:19:29Z | 315 | psf/black | 23,654 |
[Doc][KubeRay] Improve Kueue/KubeRay priority scheduling doc | diff --git a/.vale/styles/Vocab/General/accept.txt b/.vale/styles/Vocab/General/accept.txt
index 208355bd18fb4..bf935d68f6987 100644
--- a/.vale/styles/Vocab/General/accept.txt
+++ b/.vale/styles/Vocab/General/accept.txt
@@ -12,3 +12,6 @@ URI[s]
[Pp]arallelization
[Pp]erformant
[Ss]ubclassing
+Kueue
+GKE
+namespace
... | <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
<!-- 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 P... | https://api.github.com/repos/ray-project/ray/pulls/43215 | 2024-02-16T01:17:45Z | 2024-02-23T19:32:14Z | 2024-02-23T19:32:14Z | 2024-02-23T19:32:14Z | 3,731 | ray-project/ray | 19,039 |
Bitbank :: fix fetchMyTrades | diff --git a/js/bitbank.js b/js/bitbank.js
index 391060ecf803..fd5765a1b0e7 100644
--- a/js/bitbank.js
+++ b/js/bitbank.js
@@ -723,8 +723,8 @@ module.exports = class bitbank extends Exchange {
const request = {};
let market = undefined;
if (symbol !== undefined) {
- request['pair']... | - fixes #14196 | https://api.github.com/repos/ccxt/ccxt/pulls/14197 | 2022-07-02T10:41:00Z | 2022-07-02T10:42:17Z | 2022-07-02T10:42:17Z | 2022-07-02T10:42:17Z | 136 | ccxt/ccxt | 13,118 |
zero_to_fp32.py: Handle a case where shape doesn't have numel attr | diff --git a/deepspeed/utils/zero_to_fp32.py b/deepspeed/utils/zero_to_fp32.py
index c98caae31534..49b846633d6e 100755
--- a/deepspeed/utils/zero_to_fp32.py
+++ b/deepspeed/utils/zero_to_fp32.py
@@ -248,6 +248,11 @@ def _zero2_merge_frozen_params(state_dict, zero_model_states):
print(f"Reconstructed Frozen fp32 st... | https://api.github.com/repos/microsoft/DeepSpeed/pulls/4842 | 2023-12-20T06:34:18Z | 2024-01-03T21:21:18Z | 2024-01-03T21:21:18Z | 2024-02-04T11:58:33Z | 297 | microsoft/DeepSpeed | 10,181 | |
Use climate enums in lookin | diff --git a/homeassistant/components/lookin/climate.py b/homeassistant/components/lookin/climate.py
index dd6e7c8cffaf4b..b8042cef72a302 100644
--- a/homeassistant/components/lookin/climate.py
+++ b/homeassistant/components/lookin/climate.py
@@ -7,21 +7,17 @@
from aiolookin import Climate, MeteoSensor
from aiolookin... | ## 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.
-->
As follow-up to #70319 / #70286
## T... | https://api.github.com/repos/home-assistant/core/pulls/70681 | 2022-04-25T13:19:48Z | 2022-04-26T04:29:37Z | 2022-04-26T04:29:37Z | 2022-04-27T05:11:10Z | 1,055 | home-assistant/core | 39,409 |
[Bot] Synchronize Submodule References | diff --git a/inference b/inference
index 4fba9a739e78..b71d8787ce3a 160000
--- a/inference
+++ b/inference
@@ -1 +1 @@
-Subproject commit 4fba9a739e786d65f6b9dba19e5fd6bfe8502c19
+Subproject commit b71d8787ce3a3982978f41ed597a41aad75bfd35
| Automated PR to update submodule commits | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/1499 | 2022-08-26T00:01:28Z | 2022-08-26T03:17:31Z | 2022-08-26T03:17:31Z | 2022-08-26T03:17:31Z | 108 | hpcaitech/ColossalAI | 11,399 |
Fixed #34243 -- Fixed timesince() crash with timezone-aware dates and interval longer than 1 month. | diff --git a/django/utils/timesince.py b/django/utils/timesince.py
index 701c49bab9424..f582d0e4f24a7 100644
--- a/django/utils/timesince.py
+++ b/django/utils/timesince.py
@@ -97,6 +97,7 @@ def timesince(d, now=None, reversed=False, time_strings=None, depth=2):
d.hour,
d.minute,
... | Fixes ticket-34243. | https://api.github.com/repos/django/django/pulls/16429 | 2023-01-05T11:41:37Z | 2023-01-05T15:38:20Z | 2023-01-05T15:38:20Z | 2023-01-05T15:38:20Z | 487 | django/django | 51,674 |
Add ansible cli options --ask-vault-password and --vault-pass-file | diff --git a/changelogs/fragments/63782-add-ansible-ask-vault-password-and-vault-password-file-options.yaml b/changelogs/fragments/63782-add-ansible-ask-vault-password-and-vault-password-file-options.yaml
new file mode 100644
index 00000000000000..6a4ea9413b57d3
--- /dev/null
+++ b/changelogs/fragments/63782-add-ansibl... | ##### SUMMARY
The ansible-playbook command provides 2 options to specify a vault password:
--ask-vault-pass
--vault-password-file
One option use 'pass', the other uses 'password'. I propose to use either pass or password for both option. For now I added the following options:
-- ask-vault-password
--vault-pass-... | https://api.github.com/repos/ansible/ansible/pulls/63782 | 2019-10-22T11:51:51Z | 2019-12-19T17:07:26Z | 2019-12-19T17:07:26Z | 2020-01-21T14:37:38Z | 866 | ansible/ansible | 48,839 |
Fix qq video error; Fix #1778 | diff --git a/src/you_get/extractors/qq.py b/src/you_get/extractors/qq.py
index f2c3d9ece1..c92b730193 100644
--- a/src/you_get/extractors/qq.py
+++ b/src/you_get/extractors/qq.py
@@ -14,6 +14,8 @@ def qq_download_by_vid(vid, title, output_dir='.', merge=True, info_only=False):
parts_ti = video_json['vl']['vi'][0][... | Enable you-get to deal with videos with keyid that > 11000
<!-- 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/1785)
<!-- Reviewable:end -->
| https://api.github.com/repos/soimort/you-get/pulls/1785 | 2017-03-22T11:20:28Z | 2017-04-01T19:47:04Z | 2017-04-01T19:47:04Z | 2017-04-01T19:47:30Z | 608 | soimort/you-get | 21,498 |
cli: allow --dry-run to be combined with --server | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 102eaf4bb53..fa8ca23793c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,8 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
### Changed
* Removed `--fast` flag from the test farm tests
+* `--server` may now be combined with `--dry-run`. Certb... | The value of --server will now be respected, except when it is the
default value, in which case it will be changed to the staging server,
preserving Certbot's existing behavior.
This change is a prerequisite to dry-run authz deactivation as suggested by @bmw in https://github.com/certbot/certbot/pull/7266#issuecom... | https://api.github.com/repos/certbot/certbot/pulls/7436 | 2019-10-09T02:43:19Z | 2019-10-09T22:09:26Z | 2019-10-09T22:09:26Z | 2019-10-09T22:09:27Z | 954 | certbot/certbot | 1,682 |
[toggo] Fix _VALID_URL to support toggolino | diff --git a/yt_dlp/extractor/toggo.py b/yt_dlp/extractor/toggo.py
index 4c03d1dc0b6..9f98cfaf0c2 100644
--- a/yt_dlp/extractor/toggo.py
+++ b/yt_dlp/extractor/toggo.py
@@ -4,7 +4,7 @@
class ToggoIE(InfoExtractor):
IE_NAME = 'toggo'
- _VALID_URL = r'https?://(?:www\.)?toggo\.de/[^/?#]+/folge/(?P<id>[^/?#]+)'... | adding support for "toggolino" videos
<!--
# 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 [x])
- Use *Preview* tab to see how your *pull request* will actually loo... | https://api.github.com/repos/yt-dlp/yt-dlp/pulls/3689 | 2022-05-09T08:55:34Z | 2022-05-09T11:42:22Z | 2022-05-09T11:42:22Z | 2022-05-09T11:42:23Z | 374 | yt-dlp/yt-dlp | 8,134 |
[MRG] Tackle remaining comments in #3411 | diff --git a/sklearn/linear_model/omp.py b/sklearn/linear_model/omp.py
index e80e2e47c6ce9..63e15e5d56368 100644
--- a/sklearn/linear_model/omp.py
+++ b/sklearn/linear_model/omp.py
@@ -569,15 +569,9 @@ def fit(self, X, y):
y = np.asarray(y)
n_features = X.shape[1]
- precompute = self.precompu... | A few comments were not tackled before #3411 was merged. Now is the pull request to do that.
| https://api.github.com/repos/scikit-learn/scikit-learn/pulls/3414 | 2014-07-17T15:41:06Z | 2014-07-17T15:57:37Z | 2014-07-17T15:57:37Z | 2014-07-19T09:10:48Z | 462 | scikit-learn/scikit-learn | 46,847 |
#4071 Mixin to prevent setting return_value after initializing certain Mock objects | diff --git a/certbot-apache/certbot_apache/tests/configurator_test.py b/certbot-apache/certbot_apache/tests/configurator_test.py
index db04bfcd168..23242d091dc 100644
--- a/certbot-apache/certbot_apache/tests/configurator_test.py
+++ b/certbot-apache/certbot_apache/tests/configurator_test.py
@@ -121,7 +121,8 @@ def tes... | Second of two candidate solutions to #4071. This involves an `ImmutableReturnMixin` to short-circuit attempts to set "return_value" on certain Mock objects which would otherwise bypass validity checks.
This covers more than the first candidate because the Mixin can be inherited alongside `mock.MagicMock` to create a... | https://api.github.com/repos/certbot/certbot/pulls/4963 | 2017-07-26T07:17:48Z | 2017-08-30T16:52:46Z | 2017-08-30T16:52:46Z | 2017-08-30T16:53:05Z | 2,802 | certbot/certbot | 1,479 |
Fix sglang worker | diff --git a/fastchat/model/model_adapter.py b/fastchat/model/model_adapter.py
index acdab09bd7..e519e66fbd 100644
--- a/fastchat/model/model_adapter.py
+++ b/fastchat/model/model_adapter.py
@@ -2198,7 +2198,7 @@ def match(self, model_path: str):
def get_default_conv_template(self, model_path: str) -> Conversation... | https://api.github.com/repos/lm-sys/FastChat/pulls/2953 | 2024-01-24T09:10:08Z | 2024-01-24T10:24:16Z | 2024-01-24T10:24:16Z | 2024-01-24T10:24:19Z | 807 | lm-sys/FastChat | 41,020 | |
remove cocalc; all non-authenticated access has been disabled | diff --git a/gpt4free/README.md b/gpt4free/README.md
index f3ba27ab70..73e7fa09f1 100644
--- a/gpt4free/README.md
+++ b/gpt4free/README.md
@@ -42,9 +42,6 @@ print(f'END')
response = gpt4free.Completion.create(Provider.Theb, prompt='Write a poem on Lionel Messi')
print(response)
-# usage cocalc
-response = gpt4free.... | Hi Gpt4free devs,
- cocalc is my website
- i have disabled *all* non-authenticated access, so gpt4free will no longer work with cocalc.
- it's better to remove it so you don't confuse your users, who might expect cocalc to work with gpt4free
Thanks! It wasn't my intention to have random use of GPT through our... | https://api.github.com/repos/xtekky/gpt4free/pulls/461 | 2023-05-05T05:12:12Z | 2023-05-07T20:00:00Z | 2023-05-07T20:00:00Z | 2023-05-07T20:24:56Z | 1,438 | xtekky/gpt4free | 38,154 |
Update stored spec object with kwargs | diff --git a/gym/envs/registration.py b/gym/envs/registration.py
index 197d47d9edc..11466a43cc7 100644
--- a/gym/envs/registration.py
+++ b/gym/envs/registration.py
@@ -1,4 +1,5 @@
import re
+import copy
import importlib
import warnings
@@ -59,7 +60,9 @@ def make(self, **kwargs):
env = cls(**_kwargs)
... | Let's consider a registered environment with kwargs:
https://github.com/openai/gym/blob/54f22cf4db2e43063093a1b15d968a57a32b6e90/gym/envs/__init__.py#L150-L156
When users create environment with `gym.make`, they can pass extra options that override the values of the default kwargs:
```python
>>> import gym
>... | https://api.github.com/repos/openai/gym/pulls/1866 | 2020-04-06T19:57:37Z | 2020-04-24T21:49:42Z | 2020-04-24T21:49:42Z | 2020-04-24T22:38:44Z | 344 | openai/gym | 5,331 |
Update MSSQL Injection.md | diff --git a/SQL Injection/MSSQL Injection.md b/SQL Injection/MSSQL Injection.md
index 35836c8675..28b870d43c 100644
--- a/SQL Injection/MSSQL Injection.md
+++ b/SQL Injection/MSSQL Injection.md
@@ -236,8 +236,7 @@ EXECUTE('EXECUTE(''sp_addsrvrolemember ''''hacker'''' , ''''sysadmin'''' '') AT
## References
* [Pe... | Broken link [Sqlinjectionwiki - MSSQL](http://www.sqlinjectionwiki.com/categories/1/mssql-sql-injection-cheat-sheet/) . | https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/260 | 2020-10-09T07:23:43Z | 2020-10-09T08:31:48Z | 2020-10-09T08:31:48Z | 2020-10-09T08:31:48Z | 404 | swisskyrepo/PayloadsAllTheThings | 8,315 |
process replay: add Ford Bronco Sport | diff --git a/selfdrive/test/process_replay/ref_commit b/selfdrive/test/process_replay/ref_commit
index 63db584c872a72..dcd2f7b224c881 100644
--- a/selfdrive/test/process_replay/ref_commit
+++ b/selfdrive/test/process_replay/ref_commit
@@ -1 +1 @@
-634d4ff195345a4a2508e497744aa08addec9237
+ec92fe65806256cb5180cfd5ec6089... | https://api.github.com/repos/commaai/openpilot/pulls/27112 | 2023-01-27T06:33:16Z | 2023-01-27T22:14:04Z | 2023-01-27T22:14:04Z | 2023-01-27T22:14:05Z | 723 | commaai/openpilot | 8,888 | |
[3.9] Use the zero argument form of super() in examples for Python3 docs. (GH-22314) | diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index de0f834551f5dd..5777a4c5031f85 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1188,7 +1188,7 @@ to the above, as in the following example::
class StyleAdapter(logging.LoggerAdapter):
... | (cherry picked from commit 52cd6d5e1b2bece0d8efb58b1af41071c914ebe6)
Co-authored-by: Andre Delfino <adelfino@gmail.com> | https://api.github.com/repos/python/cpython/pulls/25638 | 2021-04-26T22:14:11Z | 2021-04-26T22:16:20Z | 2021-04-26T22:16:20Z | 2021-04-26T22:16:24Z | 1,494 | python/cpython | 4,461 |
FRENCH FIXES | diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 397fb8f09..fe88b7893 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -68,4 +68,4 @@ The following people have contributed to the development of Rich:
- [Ke Sun](https://github.com/ksun212)
- [Qiming Xu](https://github.com/xqm32)
- [James Addison](https://git... | ## Type of changes
- [ ] Bug fix
- [ ] New feature
- [X] Documentation / docstrings
- [ ] Tests
- [ ] Other
## Checklist
- [X ] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [X ] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- [X ] I've adde... | https://api.github.com/repos/Textualize/rich/pulls/2887 | 2023-03-21T09:26:40Z | 2023-03-21T09:31:07Z | 2023-03-21T09:31:07Z | 2023-03-21T09:31:08Z | 2,973 | Textualize/rich | 48,042 |
因Python3.6以前的字典类型是无序的而导致的错误 | diff --git a/ppocr/modeling/architectures/rec_model.py b/ppocr/modeling/architectures/rec_model.py
index d0441c05da..9f8c779cf2 100755
--- a/ppocr/modeling/architectures/rec_model.py
+++ b/ppocr/modeling/architectures/rec_model.py
@@ -16,6 +16,8 @@
from __future__ import division
from __future__ import print_function... | 环境: docker hub上的paddlepaddle/paddle:latest-gpu-cuda10.1-cudnn7镜像(注意: 该镜像是python3.5)
问题: python3.6之前的dict类是无序的,导致tools/program.py文件中build函数里的fetch_name_list是无序的
造成现象: 验证时取得的preds可能是softmax后的分布结果,而不是decode后的结果,致使验证准确率计算不正确(有时正常,有时为空或0),影响训练,验证和推理脚本。
我只使用了字符识别的代码,所以其他部分在python3.6以下的版本可能也会出现相关的问题,需要开发者审核一下。
建议: 使用O... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/982 | 2020-10-21T09:15:31Z | 2020-10-21T11:52:22Z | 2020-10-21T11:52:22Z | 2020-11-13T06:46:17Z | 563 | PaddlePaddle/PaddleOCR | 42,760 |
Added wecantrack.com API | diff --git a/README.md b/README.md
index 0c0dfd2b2b..e43762e83e 100644
--- a/README.md
+++ b/README.md
@@ -806,6 +806,7 @@ API | Description | Auth | HTTPS | CORS |
| [Postmon](http://postmon.com.br) | An API to query Brazilian ZIP codes and orders easily, quickly and free | No | No | Unknown |
| [Sweden](https://dev... | 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] Your submissions are formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md)
- [X] Your additions are ordered alphabetically
- [X] Your s... | https://api.github.com/repos/public-apis/public-apis/pulls/1300 | 2020-06-25T07:25:09Z | 2021-04-26T23:59:28Z | 2021-04-26T23:59:27Z | 2021-04-26T23:59:28Z | 246 | public-apis/public-apis | 35,872 |
[deflakey] Deflakey test_actor_advanced.py | diff --git a/python/ray/tests/test_actor_advanced.py b/python/ray/tests/test_actor_advanced.py
index 5a7e30aae196a..765e2fdeda434 100644
--- a/python/ray/tests/test_actor_advanced.py
+++ b/python/ray/tests/test_actor_advanced.py
@@ -1060,13 +1060,9 @@ def graceful_exit():
state_after_ending = ray._private.stat... | Signed-off-by: Yi Cheng <74173148+iycheng@users.noreply.github.com>
<!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the ... | https://api.github.com/repos/ray-project/ray/pulls/40636 | 2023-10-24T18:08:01Z | 2023-10-24T20:30:33Z | 2023-10-24T20:30:33Z | 2023-10-24T20:30:33Z | 465 | ray-project/ray | 19,322 |
fix ACM DomainValidationOptions to support waiters | diff --git a/localstack/services/acm/provider.py b/localstack/services/acm/provider.py
index ecc5d75694bd1..2f3c45c637f18 100644
--- a/localstack/services/acm/provider.py
+++ b/localstack/services/acm/provider.py
@@ -20,9 +20,7 @@ def describe(describe_orig, self):
"ExtendedKeyUsages": [],
"Options": ... | Fixes the `DomainValidationOptions` for ACM's `DescribeCertificate` operation.
The previous implementation did not use the existing array of the cert in the CertBundle, but tried to resolve a non-existing attribute, which in the end wasn't set (since the `addenda` would only be used for non-existing keys in the result... | https://api.github.com/repos/localstack/localstack/pulls/5713 | 2022-03-21T15:56:35Z | 2022-03-22T07:59:36Z | 2022-03-22T07:59:36Z | 2022-03-22T07:59:40Z | 1,405 | localstack/localstack | 29,365 |
API/CLN: consolidate truncate into NDFrame (panel had a separate method) | diff --git a/doc/source/release.rst b/doc/source/release.rst
index af9611bb98fae..d331dc7e164fc 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -311,6 +311,7 @@ API Changes
- Provide __dir__ method (and local context) for tab completion / remove ipython completers code
(:issue:`4501`)
- S... | API: truncate error if before > after is now a ValueError (rather than AssertionError)
(related #5242)
| https://api.github.com/repos/pandas-dev/pandas/pulls/5244 | 2013-10-16T21:36:53Z | 2013-10-17T11:29:15Z | 2013-10-17T11:29:15Z | 2014-07-16T08:35:37Z | 1,515 | pandas-dev/pandas | 45,691 |
Switch from pycodestyle to flake8 for code style checks | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4e0dabc8bc..ff937094df 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -11,7 +11,7 @@ jobs:
python-version: 3.9
- run: python -m pip install --upgrade pip setuptools wheel
- run: make inst... | `flake8` does a little more than just checking PEP8 violations, and I think it is a good balance between `pycodestyle` and other tools like `pylint`. It will catch coding issues as well, but only what maters and without being too noisy for contributors.
WDYT @jakubroztocil? I am open to keep `pycodestyle` or to try ... | https://api.github.com/repos/httpie/cli/pulls/1083 | 2021-06-02T08:12:06Z | 2021-06-02T09:06:46Z | 2021-06-02T09:06:46Z | 2021-06-02T09:25:19Z | 1,078 | httpie/cli | 33,915 |
GitHub Workflows security hardening | diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 02ee95871cb..f5aab7b537b 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -3,8 +3,13 @@ name: Format the code
on:
workflow_dispatch:
+permissions: {}
jobs:
createPullRequest:
+ permissions:
+ ... | This PR adds explicit [permissions section](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions) to workflows. This is a security best practice because by default workflows run with [extended set of permissions](https://docs.github.com/en/actions/security-guides/automatic-t... | https://api.github.com/repos/keras-team/keras/pulls/17050 | 2022-09-19T21:31:07Z | 2022-09-30T18:58:06Z | 2022-09-30T18:58:06Z | 2022-09-30T18:58:06Z | 270 | keras-team/keras | 47,701 |
Allow Google DNS plugin to write multiple TXT record values | diff --git a/certbot-dns-google/certbot_dns_google/dns_google.py b/certbot-dns-google/certbot_dns_google/dns_google.py
index cea754c0624..ab8bf20de02 100644
--- a/certbot-dns-google/certbot_dns_google/dns_google.py
+++ b/certbot-dns-google/certbot_dns_google/dns_google.py
@@ -107,6 +107,15 @@ def add_txt_record(self, d... | Google API requires all the records in a RRset to be set as a list on a single call. To achieve this, this PR adds automatic check of pre-existing records, deletes the old ones, and adds them to the list with the new one created before making the API call.
Fixes an issue mentioned in comments of #5472 | https://api.github.com/repos/certbot/certbot/pulls/5652 | 2018-03-02T19:21:37Z | 2018-03-05T20:49:02Z | 2018-03-05T20:49:02Z | 2019-06-05T21:17:16Z | 2,377 | certbot/certbot | 1,256 |
Fix protocol separator typo. | diff --git a/docs/src/cors/tutorial001.py b/docs/src/cors/tutorial001.py
index 4ec8d01881fd6..b0a581d2e953d 100644
--- a/docs/src/cors/tutorial001.py
+++ b/docs/src/cors/tutorial001.py
@@ -6,8 +6,8 @@
origins = [
"http://localhost.tiangolo.com",
"https://localhost.tiangolo.com",
- "http:localhost",
- "... | https://api.github.com/repos/tiangolo/fastapi/pulls/647 | 2019-10-24T02:52:47Z | 2019-11-27T19:37:20Z | 2019-11-27T19:37:20Z | 2019-11-27T19:38:02Z | 139 | tiangolo/fastapi | 22,681 | |
Pin numpy version | diff --git a/requirements.txt b/requirements.txt
index 516ce4078..842219b0a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,7 +3,8 @@ umap-learn
visdom
librosa>=0.8.0
matplotlib>=3.3.0
-numpy>=1.14.0
+numpy==1.19.3; platform_system == "Windows"
+numpy==1.19.4; platform_system != "Windows"
scipy>=1.0.0
t... | Windows and Linux require different versions of numpy due to an unresolved Windows runtime bug. Reported in #596 | https://api.github.com/repos/CorentinJ/Real-Time-Voice-Cloning/pulls/597 | 2020-11-18T05:26:02Z | 2020-11-18T15:55:15Z | 2020-11-18T15:55:15Z | 2020-11-18T15:55:20Z | 128 | CorentinJ/Real-Time-Voice-Cloning | 27,375 |
[CBC Gem] Support 1080p shows | diff --git a/yt_dlp/extractor/cbc.py b/yt_dlp/extractor/cbc.py
index 413053499bf..392c7788488 100644
--- a/yt_dlp/extractor/cbc.py
+++ b/yt_dlp/extractor/cbc.py
@@ -11,11 +11,13 @@
compat_str,
)
from ..utils import (
+ int_or_none,
+ join_nonempty,
js_to_json,
- smuggle_url,
- try_get,
orde... | ## 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/1913 | 2021-12-07T05:29:34Z | 2021-12-09T11:47:57Z | 2021-12-09T11:47:57Z | 2021-12-25T02:01:49Z | 676 | yt-dlp/yt-dlp | 7,653 |
[Serve] fix flaky `test_autoscaling_policy` | diff --git a/python/ray/serve/_private/client.py b/python/ray/serve/_private/client.py
index 7c75f4da74c29..470dc6fd363c3 100644
--- a/python/ray/serve/_private/client.py
+++ b/python/ray/serve/_private/client.py
@@ -94,16 +94,22 @@ def __del__(self):
def __reduce__(self):
raise RayServeException(("Ray Se... | <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
<!-- 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 P... | https://api.github.com/repos/ray-project/ray/pulls/37527 | 2023-07-18T20:32:51Z | 2023-07-19T19:38:26Z | 2023-07-19T19:38:26Z | 2023-07-19T19:43:49Z | 435 | ray-project/ray | 19,648 |
removed Mixer, fixes #680 | diff --git a/data_bad_site.json b/data_bad_site.json
index 5e6b78c67..a97d716a0 100644
--- a/data_bad_site.json
+++ b/data_bad_site.json
@@ -407,6 +407,15 @@
"urlMain": "https://www.zomato.com/",
"username_claimed": "deepigoyal",
"username_unclaimed": "noonewouldeverusethis7"
+ },
+ "mixer.com": { ... | because it has shut down | https://api.github.com/repos/sherlock-project/sherlock/pulls/682 | 2020-07-27T10:25:58Z | 2020-07-27T10:28:29Z | 2020-07-27T10:28:29Z | 2020-07-27T10:30:31Z | 686 | sherlock-project/sherlock | 36,279 |
Update developing_api.rst | diff --git a/docs/docsite/rst/dev_guide/developing_api.rst b/docs/docsite/rst/dev_guide/developing_api.rst
index bb2cbc43426a48..302f388e8c7f39 100644
--- a/docs/docsite/rst/dev_guide/developing_api.rst
+++ b/docs/docsite/rst/dev_guide/developing_api.rst
@@ -1,6 +1,8 @@
Python API
==========
+.. note:: This documen... | ##### SUMMARY
<!--- Describe the change, including rationale and design decisions -->
<!---
If you are fixing an existing issue, please include "Fixes #nnn" in your
commit message and your description; but you should still explain what
the change does.
-->
##### ISSUE TYPE
<!--- Pick one below and delete th... | https://api.github.com/repos/ansible/ansible/pulls/25922 | 2017-06-20T18:39:57Z | 2017-08-07T18:40:29Z | 2017-08-07T18:40:29Z | 2019-04-26T21:33:37Z | 164 | ansible/ansible | 49,339 |
Fix a few more typos | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 2e26d74dd..c0170b4fe 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -2821,7 +2821,7 @@ In traditional C and C++ code, plain `T*` is used for many weakly-related purpos
* Identify an array with a length specified separately
* Identify a lo... | F.22: Fix typos
C.128: Update the title in the ToC, to match the new title from commit f0e29f0
Con.1: Fix typo
T.84: Fix typo
NR.2: Remove duplicated word from title (single single) | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/803 | 2016-11-22T15:16:44Z | 2016-11-22T15:51:14Z | 2016-11-22T15:51:14Z | 2016-11-22T16:44:37Z | 908 | isocpp/CppCoreGuidelines | 15,586 |
Add display of context when input was generated | diff --git a/modules/text_generation.py b/modules/text_generation.py
index fd017e2c1d..9b2c233dc4 100644
--- a/modules/text_generation.py
+++ b/modules/text_generation.py
@@ -270,5 +270,5 @@ def generate_with_streaming(**kwargs):
traceback.print_exc()
finally:
t1 = time.time()
- print(f"Ou... | Not sure if I did this right but it does move with the conversation and seems to match value.
Output generated in 12.97 seconds (15.34 tokens/s, 199 tokens, context 4)
Output generated in 4.07 seconds (2.21 tokens/s, 9 tokens, context 1848)
Easier to see for OOM and benchmarks, etc. | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/538 | 2023-03-24T13:58:00Z | 2023-03-25T14:56:18Z | 2023-03-25T14:56:18Z | 2023-03-25T23:11:22Z | 212 | oobabooga/text-generation-webui | 26,256 |
[2.9] pipe: update docs for Popen with shell=True usage | diff --git a/changelogs/fragments/70261_pipe_lookup.yml b/changelogs/fragments/70261_pipe_lookup.yml
new file mode 100644
index 00000000000000..cc10e8c36bd18e
--- /dev/null
+++ b/changelogs/fragments/70261_pipe_lookup.yml
@@ -0,0 +1,2 @@
+minor_changes:
+- pipe lookup - update docs for Popen with shell=True usages (htt... | ##### SUMMARY
pipe lookup plugin uses Popen with shell=True intentionally.
This is considered a security issue if user input is not validated.
Updated docs to reflect this information for the user. Also, added
Bandit B602 documentation link for further reading.
Fixes: #70159
Signed-off-by: Abhijeet Kasurde <akasurde... | https://api.github.com/repos/ansible/ansible/pulls/70603 | 2020-07-13T16:15:49Z | 2020-07-17T21:41:32Z | 2020-07-17T21:41:32Z | 2021-02-08T09:01:37Z | 650 | ansible/ansible | 48,936 |
📌 Pin SQLAlchemy range for tests, as it doesn't use SemVer | diff --git a/pyproject.toml b/pyproject.toml
index 2f057f5aa844e..66cb00345b608 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -53,7 +53,7 @@ test = [
"requests >=2.24.0,<3.0.0",
"httpx >=0.14.0,<0.15.0",
"email_validator >=1.1.1,<2.0.0",
- "sqlalchemy >=1.3.18,<2.0.0",
+ "sqlalchemy >=1.3.18,... | 📌 Pin SQLAlchemy range for tests, as it doesn't use SemVer and I forgot (or didn't know?) that when I pinned it the first time.
This only affects FastAPI internal tests... and by accident, [Pydantic tests](https://github.com/samuelcolvin/pydantic/pull/2584). :grimacing: :see_no_evil: | https://api.github.com/repos/tiangolo/fastapi/pulls/3001 | 2021-03-27T16:32:31Z | 2021-03-27T16:36:08Z | 2021-03-27T16:36:08Z | 2021-03-27T17:47:51Z | 204 | tiangolo/fastapi | 22,920 |
fix omp flag | diff --git a/deploy/cpp_infer/CMakeLists.txt b/deploy/cpp_infer/CMakeLists.txt
index 466c2be8f7..0f751a22ce 100644
--- a/deploy/cpp_infer/CMakeLists.txt
+++ b/deploy/cpp_infer/CMakeLists.txt
@@ -52,20 +52,29 @@ include_directories(${OpenCV_INCLUDE_DIRS})
if (WIN32)
add_definitions("/DGOOGLE_GLOG_DLL_DECL=")
- ... | **machine:Linux i9**
**Compile option: WITH_MKL ON**
**mkldnn 0
cpu_math_library_num_threads 1**
```
./ocr_system /home/li/repo/PaddleOCR/deploy/cpp_infer/tools/config.txt /home/li/repo/PaddleOCR/doc/imgs/12.jpg
```
花费了17.8732秒
**mkldnn 0
cpu_math_library_num_threads 8**
```
./ocr_system /home/li/repo/Pa... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/871 | 2020-09-27T13:53:37Z | 2020-09-29T10:55:50Z | 2020-09-29T10:55:50Z | 2020-09-29T10:55:50Z | 1,032 | PaddlePaddle/PaddleOCR | 42,255 |
bpo-41180: Fixes documentation from earlier change | diff --git a/Doc/library/marshal.rst b/Doc/library/marshal.rst
index 458c0d53a225ef..24f9dc1689da4a 100644
--- a/Doc/library/marshal.rst
+++ b/Doc/library/marshal.rst
@@ -76,13 +76,18 @@ The module defines these functions:
format), raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. The
file must be ... |
<!-- issue-number: [bpo-41180](https://bugs.python.org/issue41180) -->
https://bugs.python.org/issue41180
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/26972 | 2021-06-30T16:46:01Z | 2021-06-30T17:53:13Z | 2021-06-30T17:53:13Z | 2021-06-30T17:53:17Z | 339 | python/cpython | 4,221 |
Allow for easier subclassing | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c34e9e91..2fbe9aedc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic ... | ## Type of changes
Allow for DRY:er subclasses by allowing us to reuse `Heading.create`
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation / docstrings
- [ ] Tests
- [x] Other
## Checklist
- [x] I've run the latest [black](https://github.com/ambv/black) with default args on new code.
- [ ] I've updated ... | https://api.github.com/repos/Textualize/rich/pulls/93 | 2020-05-26T13:35:52Z | 2020-05-26T14:52:20Z | 2020-05-26T14:52:20Z | 2020-05-26T14:52:20Z | 292 | Textualize/rich | 48,639 |
📝 Tweak default suggested configs for generating clients | diff --git a/docs/en/docs/advanced/generate-clients.md b/docs/en/docs/advanced/generate-clients.md
index fb9aa643e261a..e8d771f7123f4 100644
--- a/docs/en/docs/advanced/generate-clients.md
+++ b/docs/en/docs/advanced/generate-clients.md
@@ -87,7 +87,7 @@ It could look like this:
"description": "",
"main": "index.... | 📝 Tweak default suggested configs for generating clients | https://api.github.com/repos/tiangolo/fastapi/pulls/10736 | 2023-11-30T20:43:11Z | 2023-11-30T20:48:01Z | 2023-11-30T20:48:01Z | 2023-11-30T20:48:02Z | 412 | tiangolo/fastapi | 22,667 |
Fixed broken link to QUnit docs. | diff --git a/docs/internals/contributing/writing-code/javascript.txt b/docs/internals/contributing/writing-code/javascript.txt
index be0e43a3b6875..54f05da20af51 100644
--- a/docs/internals/contributing/writing-code/javascript.txt
+++ b/docs/internals/contributing/writing-code/javascript.txt
@@ -106,7 +106,7 @@ Django'... | https://api.github.com/repos/django/django/pulls/8454 | 2017-05-03T06:47:42Z | 2017-05-03T11:32:00Z | 2017-05-03T11:32:00Z | 2017-05-03T11:34:39Z | 169 | django/django | 51,577 | |
Improve warning reporting in LARS test | diff --git a/sklearn/linear_model/tests/test_least_angle.py b/sklearn/linear_model/tests/test_least_angle.py
index 4dc69f63ee6ba..0644dcc864fed 100644
--- a/sklearn/linear_model/tests/test_least_angle.py
+++ b/sklearn/linear_model/tests/test_least_angle.py
@@ -451,16 +451,23 @@ def test_lars_cv():
assert not hasat... | This should improve the error message for the failures reported on the Debian AMD64 continuous integration (see #12548). | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/12597 | 2018-11-15T15:37:02Z | 2019-05-20T22:35:01Z | 2019-05-20T22:35:01Z | 2019-12-08T18:18:26Z | 372 | scikit-learn/scikit-learn | 46,007 |
Add missing slash in selecting dynamically-loaded content documentation | diff --git a/docs/topics/dynamic-content.rst b/docs/topics/dynamic-content.rst
index ea5d0621060..79f502593b3 100644
--- a/docs/topics/dynamic-content.rst
+++ b/docs/topics/dynamic-content.rst
@@ -263,7 +263,7 @@ The following is a simple snippet to illustrate its usage within a Scrapy spider
async with as... | I've been reading scrapy documentation and I've realized that a slash is missing in one of the examples. This PR adds the missing slash in the "selecting dynamically-loaded content" documentation. | https://api.github.com/repos/scrapy/scrapy/pulls/5890 | 2023-04-09T14:47:14Z | 2023-04-10T12:14:50Z | 2023-04-10T12:14:50Z | 2023-05-08T22:28:39Z | 149 | scrapy/scrapy | 34,972 |
Removes Python 3.8 support | diff --git a/oss_setup.py b/oss_setup.py
index 07db3105ccb..096eb6ff91a 100644
--- a/oss_setup.py
+++ b/oss_setup.py
@@ -66,7 +66,7 @@
packages=setuptools.find_packages(),
install_requires=[],
# Supported Python versions
- python_requires=">=3.8",
+ python_requires=">=3.9",
# PyPI package info... | https://api.github.com/repos/keras-team/keras/pulls/18332 | 2023-08-02T22:23:44Z | 2023-08-02T22:27:23Z | 2023-08-02T22:27:23Z | 2023-08-02T22:27:51Z | 207 | keras-team/keras | 47,292 | |
DOC Adds changed model entry for _approximate_mode | diff --git a/doc/whats_new/v1.0.rst b/doc/whats_new/v1.0.rst
index 1418bcbdf37f0..6ece2f16b6e93 100644
--- a/doc/whats_new/v1.0.rst
+++ b/doc/whats_new/v1.0.rst
@@ -324,6 +324,10 @@ random sampling procedures.
:class:`tree.DecisionTreeRegressor` can be impacted by a fix in the handling
of rounding errors. Previou... | <!--
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/23291 | 2022-05-05T21:21:57Z | 2022-05-06T12:09:34Z | 2022-05-06T12:09:34Z | 2022-05-06T12:09:43Z | 204 | scikit-learn/scikit-learn | 46,212 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.