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
Add `macos-latest` runner for CoreML benchmarks
diff --git a/models/common.py b/models/common.py index 2b61307ad46..825a4c4e263 100644 --- a/models/common.py +++ b/models/common.py @@ -514,8 +514,7 @@ def forward(self, im, augment=False, visualize=False): conf, cls = y['confidence'].max(1), y['confidence'].argmax(1).astype(np.float) ...
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> <!-- Thank you for submitting a YOLOv5 🚀 Pull Request! We want to make contributing to YOLOv5 as easy and transparent as possible. A few tips to get you started: - Search existing YOLOv5 [PRs](https://github.com/ultralytics/yolov5/pull) to see if a simi...
https://api.github.com/repos/ultralytics/yolov5/pulls/9453
2022-09-17T10:41:28Z
2022-09-17T22:57:49Z
2022-09-17T22:57:49Z
2024-01-19T05:51:28Z
220
ultralytics/yolov5
25,577
Change TWISTED_REACTOR in the default template.
diff --git a/docs/topics/settings.rst b/docs/topics/settings.rst index a711fd197ab..0b1ef71cfa3 100644 --- a/docs/topics/settings.rst +++ b/docs/topics/settings.rst @@ -1642,6 +1642,11 @@ install the default reactor defined by Twisted for the current platform. This is to maintain backward compatibility and avoid possi...
Fixes #5590
https://api.github.com/repos/scrapy/scrapy/pulls/5679
2022-10-14T16:04:51Z
2022-10-15T09:54:59Z
2022-10-15T09:54:59Z
2022-10-15T09:55:03Z
567
scrapy/scrapy
34,207
[autoparallel] add gpt2 performance test
diff --git a/tests/test_auto_parallel/test_tensor_shard/test_gpt/gpt_modules.py b/tests/test_auto_parallel/test_tensor_shard/test_gpt/gpt_modules.py index b66ad1949d49..22a2371311f9 100644 --- a/tests/test_auto_parallel/test_tensor_shard/test_gpt/gpt_modules.py +++ b/tests/test_auto_parallel/test_tensor_shard/test_gpt/...
### What does this PR do 1. To compare the performance with the gpt2 demo in CAI, GPT2LMHeadModel is added into gpt2_modules.py. 2. Add gpt2 performance test in this PR, we could use this test to measure the auto parallel system performance on gpt2 model.
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/2194
2022-12-25T10:58:22Z
2022-12-26T13:56:59Z
2022-12-26T13:56:59Z
2022-12-26T13:56:59Z
2,509
hpcaitech/ColossalAI
11,065
Rewrite LazyFrames.__getitem__ to only decompress if needed
diff --git a/gym/wrappers/frame_stack.py b/gym/wrappers/frame_stack.py index c51c61efb09..30ca76c909c 100644 --- a/gym/wrappers/frame_stack.py +++ b/gym/wrappers/frame_stack.py @@ -6,57 +6,62 @@ class LazyFrames(object): - r"""Ensures common frames are only stored once to optimize memory use. + r"""Ensures ...
This is a relatively small PR. It adds the `LazyFrames.last_frame` property for efficient extraction of the last frame contained in a `LazyFrames` frame stack. This is particularly useful when you want to insert frames into an experience-replay buffer without duplication. A counter-argument against adding this pr...
https://api.github.com/repos/openai/gym/pulls/1906
2020-05-08T02:07:45Z
2020-06-05T22:01:05Z
2020-06-05T22:01:05Z
2020-06-06T00:00:10Z
964
openai/gym
5,914
Allow BackMsg<->ForwardMsg association for easier performance testing
diff --git a/lib/streamlit/runtime/app_session.py b/lib/streamlit/runtime/app_session.py index d1493ec7bd6c..0fda069e1c22 100644 --- a/lib/streamlit/runtime/app_session.py +++ b/lib/streamlit/runtime/app_session.py @@ -153,6 +153,8 @@ def __init__( self._session_state = SessionState() self._user_info ...
## 📚 Context For some performance work that we're doing, we'd like to be able to more easily associate `ForwardMsg`s with the `BackMsg`s that triggered the script run that created them. In order to do this, we allow a new `debug_last_backmsg_id` field to be set in a `BackMsg` so that all `ForwardMsg`s that ar...
https://api.github.com/repos/streamlit/streamlit/pulls/5169
2022-08-16T01:35:06Z
2022-08-18T22:11:41Z
2022-08-18T22:11:41Z
2023-05-26T23:34:13Z
1,386
streamlit/streamlit
22,232
Add typing to binary_exponentiation_3.py
diff --git a/maths/binary_exponentiation_3.py b/maths/binary_exponentiation_3.py index dd4e70e74129..9cd143e09207 100644 --- a/maths/binary_exponentiation_3.py +++ b/maths/binary_exponentiation_3.py @@ -11,7 +11,7 @@ """ -def b_expo(a, b): +def b_expo(a: int, b: int) -> int: res = 1 while b > 0: ...
### Describe your change: * [ ] 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 is all my own work -- I have not ...
https://api.github.com/repos/TheAlgorithms/Python/pulls/9477
2023-10-02T14:31:26Z
2023-10-02T14:41:34Z
2023-10-02T14:41:34Z
2023-10-02T14:41:39Z
203
TheAlgorithms/Python
29,924
Fix misplaced paren in docs
diff --git a/flask/ctx.py b/flask/ctx.py index 8472c920c2..ec8e787eb0 100644 --- a/flask/ctx.py +++ b/flask/ctx.py @@ -170,7 +170,7 @@ def __init__(self, username, remote_addr=None): self.remote_addr = remote_addr Alternatively you can also just test any of the context bound objects - (such a...
https://api.github.com/repos/pallets/flask/pulls/3196
2019-05-13T21:12:29Z
2019-05-16T15:28:59Z
2019-05-16T15:28:59Z
2020-11-14T02:21:37Z
145
pallets/flask
20,026
[Core] Reduce surfacing scary `Failed to get the resource load:` messages upon node failures
diff --git a/src/ray/gcs/gcs_server/gcs_server.cc b/src/ray/gcs/gcs_server/gcs_server.cc index 26fefdb2666ce..fc08dfe1fde8b 100644 --- a/src/ray/gcs/gcs_server/gcs_server.cc +++ b/src/ray/gcs/gcs_server/gcs_server.cc @@ -292,8 +292,8 @@ void GcsServer::InitGcsResourceManager(const GcsInitData &gcs_init_data) { ...
<!-- 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/27094
2022-07-27T14:56:00Z
2022-07-27T16:35:57Z
2022-07-27T16:35:57Z
2022-07-27T16:35:57Z
196
ray-project/ray
19,375
refs(py3): Upgrade celery to 3.1.25
diff --git a/requirements-base.txt b/requirements-base.txt index 411b2b70e43b6..66d0a3ec1d2f8 100644 --- a/requirements-base.txt +++ b/requirements-base.txt @@ -1,7 +1,7 @@ beautifulsoup4>=4.7.1,<4.8 boto3>=1.4.1,<1.4.6 botocore<1.5.71 -celery>=3.1.8,<3.1.19 +celery>=3.1.25,<4.0.0 click>=5.0,<7.0 confluent-kafka==...
We want to get to 3.1.25 so that we have forwards compatibility with the celery 4.x message protocol, since a version of 4.x is required for python 3. This version requires: - billiard == 3.3.0.23. We don't even pin this here, but we're already pinned to this version in getsentry, so should be safe. - kombu == 3...
https://api.github.com/repos/getsentry/sentry/pulls/19753
2020-07-07T19:40:21Z
2020-07-08T20:19:03Z
2020-07-08T20:19:03Z
2023-04-03T23:39:21Z
293
getsentry/sentry
44,492
Made some grammatical corrections in README.MD
diff --git a/exercises/devops/README.md b/exercises/devops/README.md index 988a84cea..96648d944 100644 --- a/exercises/devops/README.md +++ b/exercises/devops/README.md @@ -72,7 +72,7 @@ A couple of thoughts: #### Tooling <details> -<summary>What are you taking into consideration when choosing a tool/technology?</s...
No changes to meaning.
https://api.github.com/repos/bregman-arie/devops-exercises/pulls/243
2022-05-19T08:00:50Z
2022-05-19T08:57:02Z
2022-05-19T08:57:02Z
2022-05-19T08:57:02Z
982
bregman-arie/devops-exercises
17,518
We don't try to add location blocks through a mechanism that checks REPEATABLE_DIRECTIVES, and it wouldn't work as an accurate check even if we did, so just remove it
diff --git a/certbot-nginx/certbot_nginx/parser.py b/certbot-nginx/certbot_nginx/parser.py index 3dc70f19bd1..5a6e9ceb5fd 100644 --- a/certbot-nginx/certbot_nginx/parser.py +++ b/certbot-nginx/certbot_nginx/parser.py @@ -559,7 +559,7 @@ def _update_or_add_directives(directives, insert_at_top, block): INCLUDE = 'in...
Part of #5438.
https://api.github.com/repos/certbot/certbot/pulls/5787
2018-03-23T23:32:52Z
2018-03-27T22:25:35Z
2018-03-27T22:25:35Z
2018-03-27T22:25:35Z
177
certbot/certbot
3,527
[docs] fix commonmarker security issue
diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index d2a0939d71a2..0534d934144c 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -14,7 +14,7 @@ GEM execjs coffee-script-source (1.11.1) colorator (1.1.0) - commonmarker (0.17.13) + commonmarker (0.23.4) ruby-enum (~> 0.5) c...
reference: https://github.com/github/cmark-gfm/security/advisories/GHSA-mc3g-88wq-6f4x
https://api.github.com/repos/microsoft/DeepSpeed/pulls/1892
2022-04-15T16:57:54Z
2022-04-15T19:11:45Z
2022-04-15T19:11:45Z
2022-04-15T19:11:48Z
146
microsoft/DeepSpeed
10,751
Add Keras utility for making user programs deterministic.
diff --git a/keras/api/golden/v2/tensorflow.keras.utils.pbtxt b/keras/api/golden/v2/tensorflow.keras.utils.pbtxt index 4796cb3fbe0..ad46dc1c3b5 100644 --- a/keras/api/golden/v2/tensorflow.keras.utils.pbtxt +++ b/keras/api/golden/v2/tensorflow.keras.utils.pbtxt @@ -100,6 +100,10 @@ tf_module { name: "serialize_kera...
Add Keras utility for making user programs deterministic.
https://api.github.com/repos/keras-team/keras/pulls/15243
2021-08-24T21:54:52Z
2021-08-25T17:35:45Z
2021-08-25T17:35:45Z
2021-08-25T17:35:45Z
1,029
keras-team/keras
47,489
refactor(makefile): :recycle: remove repetitive command
diff --git a/Makefile b/Makefile index 98d9213f59..65ee829ec0 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ COLOR_RESET=\033[0m COLOR_CYAN=\033[1;36m COLOR_GREEN=\033[1;32m -.PHONY: help install dev-install run +.PHONY: help install run .DEFAULT_GOAL := help @@ -17,11 +17,8 @@ help: @echo "Please use ...
Removing repetitive command `dev-install` because it does the same as `install`. Does not matter if you run `make install` or `make dev-install`, both do the same thing.
https://api.github.com/repos/gpt-engineer-org/gpt-engineer/pulls/451
2023-06-30T10:35:45Z
2023-07-02T13:22:07Z
2023-07-02T13:22:07Z
2023-07-02T13:22:07Z
245
gpt-engineer-org/gpt-engineer
33,076
add alias for use on mondays
diff --git a/README.md b/README.md index 29f409302..8845cf769 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ And add to `.bashrc` or `.zshrc`: ```bash alias fuck='$(thefuck $(fc -ln -1))' +# When you really need it +alias FUCK='fuck' ``` Or in `config.fish`:
https://api.github.com/repos/nvbn/thefuck/pulls/14
2015-04-17T23:31:23Z
2015-04-18T19:20:00Z
2015-04-18T19:20:00Z
2015-04-18T19:20:00Z
106
nvbn/thefuck
30,702
Strip slashes around baseUrlPath value
diff --git a/lib/streamlit/server/server_util.py b/lib/streamlit/server/server_util.py index bad079046bca..e00f56744387 100644 --- a/lib/streamlit/server/server_util.py +++ b/lib/streamlit/server/server_util.py @@ -149,5 +149,5 @@ def _get_s3_url_host_if_manually_set(): def make_url_path_regex(*path): """Get a ...
**Issue:** #521 **Description:** When constructing Tornado routes, strip any forward-slash characters on the value of server.baseUrlPath. Otherwise, routes with double slashes are generated, making them not match anything. The Report class already strips slashes when generating URLs, so the URLs printed to the c...
https://api.github.com/repos/streamlit/streamlit/pulls/523
2019-10-24T03:06:59Z
2019-10-24T23:54:14Z
2019-10-24T23:54:14Z
2019-10-25T01:06:25Z
174
streamlit/streamlit
22,537
gh-102356: Add trashcan macros to filter object dealloc
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 9e19af0ae90fc1..e7a79bc13b7f3d 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -926,6 +926,16 @@ def test_filter_pickle(self): f2 = filter(filter_char, "abcdeabcde") self.check_iter_pickle(f1, list(f...
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` gh-NNNNN: Summary of the changes made ``` Where: gh-NNNNN refers to the GitHub issue number. Most PRs will require an issue number. Trivial...
https://api.github.com/repos/python/cpython/pulls/102426
2023-03-04T19:57:48Z
2023-03-05T11:00:42Z
2023-03-05T11:00:42Z
2023-03-09T10:43:22Z
674
python/cpython
3,803
Fix PR08, RT02, RT03, and SA01 on pandas.Index.fillna
diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py index aa22527d8c2d7..d2887c6652635 100644 --- a/pandas/core/indexes/base.py +++ b/pandas/core/indexes/base.py @@ -2126,13 +2126,18 @@ def fillna(self, value=None, downcast=None): Scalar value to use to fill holes (e.g. 0). ...
- [x] closes #https://github.com/pandanistas/pandanistas_sprint_ui2020/issues/5 - [ ] tests added / passed - [x] passes `black pandas` - [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/32355
2020-02-29T05:15:36Z
2020-03-04T15:41:32Z
2020-03-04T15:41:32Z
2020-03-04T15:41:38Z
255
pandas-dev/pandas
44,930
Update miaopai api
diff --git a/src/you_get/extractors/yixia.py b/src/you_get/extractors/yixia.py index ff45730d66..d3d1ef350e 100644 --- a/src/you_get/extractors/yixia.py +++ b/src/you_get/extractors/yixia.py @@ -7,6 +7,24 @@ from json import loads import re +#---------------------------------------------------------------------- +d...
完善秒拍抓取的问题
https://api.github.com/repos/soimort/you-get/pulls/2648
2018-10-25T03:15:08Z
2018-10-28T12:28:12Z
2018-10-28T12:28:12Z
2018-10-28T12:28:22Z
508
soimort/you-get
21,123
Implement CIDR forbidden blacklist
diff --git a/shadowsocks/asyncdns.py b/shadowsocks/asyncdns.py index 6f60dc983..6fee6b986 100644 --- a/shadowsocks/asyncdns.py +++ b/shadowsocks/asyncdns.py @@ -233,18 +233,6 @@ def parse_response(data): return None -def is_ip(address): - for family in (socket.AF_INET, socket.AF_INET6): - try: - ...
In these commits I implemented a simple IPNetwork class, provide shadowsocks ability to use CIDR format to ban subnet.
https://api.github.com/repos/shadowsocks/shadowsocks/pulls/279
2015-01-31T15:06:56Z
2015-02-01T01:00:08Z
2015-02-01T01:00:08Z
2015-02-01T01:00:31Z
1,933
shadowsocks/shadowsocks
24,632
Add ZAP FileUpload AddOn to Tools (Upload Insecure Files Page)
diff --git a/Upload Insecure Files/README.md b/Upload Insecure Files/README.md index e5593850f4..a0eff1656c 100644 --- a/Upload Insecure Files/README.md +++ b/Upload Insecure Files/README.md @@ -21,6 +21,7 @@ Uploaded files may pose a significant risk if not handled correctly. A remote at ## Tools - [Fuxploider](ht...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/448
2021-10-20T00:08:27Z
2022-05-01T11:00:25Z
2022-05-01T11:00:25Z
2022-05-01T11:00:25Z
187
swisskyrepo/PayloadsAllTheThings
8,819
Objects365 images GB vs zips GB
diff --git a/data/Objects365.yaml b/data/Objects365.yaml index 8e6326b3859..334c23c359c 100644 --- a/data/Objects365.yaml +++ b/data/Objects365.yaml @@ -4,7 +4,7 @@ # parent # ├── yolov5 # └── datasets -# └── Objects365 ← downloads here (712 GB) +# └── Objects365 ← downloads here (712 GB = 367G data + 345G...
@kalenmike ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhancements to Objects365 dataset configuration in YOLOv5. ### 📊 Key Changes - Updated the Objects365.yaml file, potentially refining the dataset paths or structure. - The specifi...
https://api.github.com/repos/ultralytics/yolov5/pulls/7335
2022-04-07T14:11:39Z
2022-04-07T14:12:45Z
2022-04-07T14:12:45Z
2024-01-19T11:33:11Z
170
ultralytics/yolov5
25,211
URL Reversing in Quickstart Doc #779
diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 3cb9b2f765..a10149ae08 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -236,8 +236,9 @@ below. It tells Flask to behave as though it is handling a request, even though we are interacting with it through a Python shell. Have a look at the exp...
Updated quickstart to make clear that URL reversing refers to the use of url_for() to build the URL. Issue #779
https://api.github.com/repos/pallets/flask/pulls/897
2013-10-30T00:45:43Z
2014-02-09T13:20:46Z
2014-02-09T13:20:46Z
2020-11-14T05:07:58Z
225
pallets/flask
20,598
[gemini] polish stateful_tensor_mgr
diff --git a/colossalai/gemini/stateful_tensor_mgr.py b/colossalai/gemini/stateful_tensor_mgr.py index 15f1217109d2..9ee1a6805c35 100644 --- a/colossalai/gemini/stateful_tensor_mgr.py +++ b/colossalai/gemini/stateful_tensor_mgr.py @@ -6,7 +6,6 @@ from colossalai.gemini.stateful_tensor import StatefulTensor, TensorStat...
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/876
2022-04-26T05:30:16Z
2022-04-26T07:05:04Z
2022-04-26T07:05:04Z
2022-04-26T07:05:04Z
1,259
hpcaitech/ColossalAI
10,974
404 error on a book link
diff --git a/books.md b/books.md index 3d4b47ee..e4fcf397 100644 --- a/books.md +++ b/books.md @@ -102,7 +102,6 @@ The following is a list of free and/or open source books on machine learning, st ## Linear Algebra -* [Linear Algebra and its applications by Gilbert strang](http://www.math.hcmus.edu.vn/~bxthang/Line...
It seems that the professor doesn't work at that university anymore because his home page gives 404 either: http://www.math.hcmus.edu.vn/~bxthang/
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/745
2020-10-11T22:22:59Z
2020-10-12T14:15:22Z
2020-10-12T14:15:22Z
2020-10-12T14:15:22Z
197
josephmisiti/awesome-machine-learning
52,231
Filter warnings about tail unrecognized file system from test logs
diff --git a/localstack/utils/testutil.py b/localstack/utils/testutil.py index cf32d468fb10a..8ff69114b2d73 100644 --- a/localstack/utils/testutil.py +++ b/localstack/utils/testutil.py @@ -605,6 +605,9 @@ def get_log_events(function_name, delay_time): or "START" in raw_message or "END" in raw_...
Due to the bug fixed by this PR http://git.savannah.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=v8.24-111-g1118f32 this log message can appear if tail is executed in the context of lambda execution. This PR filters that message, until we can update the tail command in the lambda docker images.
https://api.github.com/repos/localstack/localstack/pulls/5050
2021-12-01T16:07:18Z
2021-12-02T09:48:53Z
2021-12-02T09:48:53Z
2021-12-02T09:48:56Z
190
localstack/localstack
28,582
chore(deps): bump jinja2 from 2.11.1 to 2.11.3
diff --git a/poetry.lock b/poetry.lock index bc2cf5b43..d9debe339 100644 --- a/poetry.lock +++ b/poetry.lock @@ -149,7 +149,7 @@ xdg_home = ["appdirs (>=1.4.0)"] [[package]] name = "jinja2" -version = "2.11.1" +version = "2.11.3" description = "A very fast and expressive template engine." category = "main" optio...
Bumps [jinja2](https://github.com/pallets/jinja) from 2.11.1 to 2.11.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pallets/jinja/releases">jinja2's releases</a>.</em></p> <blockquote> <h2>2.11.3</h2> <p>This contains a fix for a speed issue with the <code>urlize</code> fi...
https://api.github.com/repos/mingrammer/diagrams/pulls/456
2021-02-01T08:57:46Z
2021-02-10T19:48:28Z
2021-02-10T19:48:28Z
2021-02-10T19:48:38Z
3,201
mingrammer/diagrams
52,571
gtk_tray 优先使用 pygtk
diff --git a/code/default/launcher/gtk_tray.py b/code/default/launcher/gtk_tray.py index 9fba8e87a9..bf0bb3eab5 100644 --- a/code/default/launcher/gtk_tray.py +++ b/code/default/launcher/gtk_tray.py @@ -24,6 +24,13 @@ enable_appind = True try: + import pygtk + pygtk.require('2.0') + import gtk + ...
#9994 修改中,基于PyGObject的实现在某些系统上会导致设置页面打不开,原因未知,因此改回默认使用PyGTK。 fix #10046 fix #10080 fix #10112 fix #10113 fix #10193
https://api.github.com/repos/XX-net/XX-Net/pulls/10225
2018-03-27T05:51:47Z
2018-03-27T06:54:19Z
2018-03-27T06:54:18Z
2018-03-27T12:37:32Z
503
XX-net/XX-Net
17,075
Fix the text.Span.__repr__ method
diff --git a/rich/text.py b/rich/text.py index 0ecdeae4b..52ecd1604 100644 --- a/rich/text.py +++ b/rich/text.py @@ -57,7 +57,7 @@ def __repr__(self) -> str: return ( f"Span({self.start}, {self.end}, {self.style!r})" if (isinstance(self.style, Style) and self.style._meta) - ...
Fixes Issue #1676 ## Type of changes - [x] Bug fix - [x] Tests ## 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 added tests for new code. - [x] I accept that @will...
https://api.github.com/repos/Textualize/rich/pulls/1677
2021-11-10T20:24:05Z
2021-11-15T15:46:41Z
2021-11-15T15:46:41Z
2021-11-15T16:26:41Z
156
Textualize/rich
48,546
ocelot gateway add
diff --git a/diagrams/onprem/network.py b/diagrams/onprem/network.py index 82a614991..67f5e7124 100644 --- a/diagrams/onprem/network.py +++ b/diagrams/onprem/network.py @@ -52,6 +52,10 @@ class Nginx(_Network): _icon = "nginx.png" +class Ocelot(_Network): + _icon = "ocelot.png" + + class Pfsense(_Network):...
https://api.github.com/repos/mingrammer/diagrams/pulls/263
2020-09-04T18:29:10Z
2020-09-05T15:43:32Z
2020-09-05T15:43:32Z
2020-09-05T15:43:32Z
353
mingrammer/diagrams
52,569
Add `DATASETS_DIR` global in general.py
diff --git a/utils/datasets.py b/utils/datasets.py index 1026731f3a4..b3e0dbb3523 100755 --- a/utils/datasets.py +++ b/utils/datasets.py @@ -27,7 +27,7 @@ from tqdm import tqdm from utils.augmentations import Albumentations, augment_hsv, copy_paste, letterbox, mixup, random_perspective -from utils.general import (L...
HUB fix for bug introduced in #6489 ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Refactoring dataset paths to use a standardized directory variable. ### 📊 Key Changes - Introduced `DATASETS_DIR` variable in `utils/general.py` to set a stan...
https://api.github.com/repos/ultralytics/yolov5/pulls/6578
2022-02-08T20:46:10Z
2022-02-08T21:20:44Z
2022-02-08T21:20:44Z
2024-01-19T12:59:42Z
1,114
ultralytics/yolov5
25,591
[BUG FIX] Deadlock issues when using multiprocessing
diff --git a/llama_index/ingestion/pipeline.py b/llama_index/ingestion/pipeline.py index 6e84cc4b3d053..fee44d6b20694 100644 --- a/llama_index/ingestion/pipeline.py +++ b/llama_index/ingestion/pipeline.py @@ -447,7 +447,7 @@ def run( "Setting `num_workers` down to the maximum CPU count." ...
# Description - Multiprocessing context by default "fork"'s (except on Windows) - This can create deadlock issue if fork is done at wrong time and worker processor is trying to acquire lock - To fix, we set context to "spawn" which will start the processor by using a fresh python interpretor rather than fork. F...
https://api.github.com/repos/run-llama/llama_index/pulls/10125
2024-01-18T15:20:48Z
2024-01-18T15:53:27Z
2024-01-18T15:53:27Z
2024-01-18T15:53:28Z
319
run-llama/llama_index
5,944
[AIRFLOW-4570] Remove future library (drop Python 2 support)
diff --git a/airflow/api/auth/backend/kerberos_auth.py b/airflow/api/auth/backend/kerberos_auth.py index f95f4d257191c..8a6a76f018a78 100644 --- a/airflow/api/auth/backend/kerberos_auth.py +++ b/airflow/api/auth/backend/kerberos_auth.py @@ -24,8 +24,6 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF ...
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-4570 - In case yo...
https://api.github.com/repos/apache/airflow/pulls/5324
2019-05-25T15:25:52Z
2019-05-25T16:58:34Z
2019-05-25T16:58:34Z
2019-05-25T16:58:34Z
1,485
apache/airflow
14,740
fix: fix syntax errors
diff --git a/modules/upscaler.py b/modules/upscaler.py index 3aee69db8d2..9d13ee99324 100644 --- a/modules/upscaler.py +++ b/modules/upscaler.py @@ -20,7 +20,7 @@ class Upscaler: filter = None model = None user_path = None - scalers: [] + scalers: list = [] tile = True def __init__(self...
## Description python syntax error. ## Screenshots/videos: ![image](https://github.com/AUTOMATIC1111/stable-diffusion-webui/assets/40930677/243aa6ca-f863-478f-a169-a433e774d711) ## Checklist: - [ ] I have read [contributing wiki page](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contribut...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/15179
2024-03-08T09:27:18Z
2024-03-16T15:45:01Z
2024-03-16T15:45:01Z
2024-03-16T15:45:01Z
114
AUTOMATIC1111/stable-diffusion-webui
40,047
Add reddit back in
diff --git a/removed_sites.json b/removed_sites.json index 65345fed8..3f5fcfbce 100644 --- a/removed_sites.json +++ b/removed_sites.json @@ -646,13 +646,6 @@ "username_claimed": "Matt-Riggsby", "username_unclaimed": "noonewouldeverusethis7" }, - "Reddit": { - "errorType": "status_code", - "url"...
Hello, The issue with reddit seems to be that they now return 404 status only if you pass a cookie in headers and they always expect a language header and return the error message in the corresponding language. This pr should fix the issue and make reddit working again.
https://api.github.com/repos/sherlock-project/sherlock/pulls/1132
2021-09-05T20:17:15Z
2021-09-06T05:13:02Z
2021-09-06T05:13:02Z
2021-09-06T08:06:15Z
861
sherlock-project/sherlock
36,319
Fixed #28889 -- Prevented double submission of admin forms.
diff --git a/django/contrib/admin/static/admin/js/change_form.js b/django/contrib/admin/static/admin/js/change_form.js index 96a4c62ef4c35..0ba16efef9818 100644 --- a/django/contrib/admin/static/admin/js/change_form.js +++ b/django/contrib/admin/static/admin/js/change_form.js @@ -1,9 +1,23 @@ +/*global gettext*/ 'use ...
This is the "You already submitted (alert)" approach for [ticket](https://code.djangoproject.com/ticket/28889) To run tests please do: `./runtests.py admin_views.test_prevent_double_submission --selenium=chrome,firefox` Thanks!
https://api.github.com/repos/django/django/pulls/15217
2021-12-20T03:10:54Z
2022-02-23T13:57:34Z
2022-02-23T13:57:34Z
2022-02-24T13:47:23Z
1,248
django/django
51,327
Disable CPU inference on PRs
diff --git a/.github/workflows/cpu-inference.yml b/.github/workflows/cpu-inference.yml index 2cf7c02923b9..521fe2b5bea4 100644 --- a/.github/workflows/cpu-inference.yml +++ b/.github/workflows/cpu-inference.yml @@ -1,13 +1,7 @@ name: cpu-inference on: - pull_request: - paths-ignore: - - 'docs/**' - - ...
Currently paused in the GitHub UI, so this does not have an impact on the current changes.
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4590
2023-10-31T16:49:32Z
2023-10-31T18:15:43Z
2023-10-31T18:15:43Z
2024-02-28T18:14:36Z
142
microsoft/DeepSpeed
10,819
Bump tailwindcss from 3.3.2 to 3.3.3 in /website
diff --git a/website/package-lock.json b/website/package-lock.json index 7ddd66afcb..91203feaf5 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -64,7 +64,7 @@ "sharp": "^0.32.1", "simplebar-react": "^3.2.4", "swr": "^2.2.0", - "tailwindcss": "^3.3.2", + ...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.3.2 to 3.3.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's releases</a>.</em></p> <blockquote> <h2>v3.3.3</h2> <h3>Fixed</h3> <ul> <li>Fix issue where so...
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3601
2023-07-24T18:54:40Z
2023-07-24T20:53:26Z
2023-07-24T20:53:26Z
2023-07-24T20:53:27Z
687
LAION-AI/Open-Assistant
37,795
A solution to xelatex error converting to xdv
diff --git a/manimlib/ctex_template.tex b/manimlib/ctex_template.tex index 41edd9683e..016bc3ccd6 100644 --- a/manimlib/ctex_template.tex +++ b/manimlib/ctex_template.tex @@ -1,4 +1,5 @@ \documentclass[preview]{standalone} +\usepackage[UTF8]{ctex} \usepackage[english]{babel} \usepackage{amsmath} @@ -16,7 +17,6 @@ ...
This may solve some xelatex errors, like #1055 #1027 etc. If `\usepackage[UTF8]{ctex}` doesn’t be placed at the top of `ctex_template.tex`, it may cause xelatex error even TexLive or MiKTeX is installed correctly.
https://api.github.com/repos/3b1b/manim/pulls/1187
2020-07-28T15:13:00Z
2020-09-30T12:54:47Z
2020-09-30T12:54:47Z
2020-09-30T12:54:48Z
167
3b1b/manim
18,584
Save a csv containing the loss while training
diff --git a/modules/hypernetworks/hypernetwork.py b/modules/hypernetworks/hypernetwork.py index b6c06d49e6c..2751a8c8d14 100644 --- a/modules/hypernetworks/hypernetwork.py +++ b/modules/hypernetworks/hypernetwork.py @@ -5,6 +5,7 @@ import sys import traceback import tqdm +import csv import torch @@ -174...
**Describe what this pull request is trying to achieve.** This will make it so that the loss is written to a csv file along with the epoch and epoch step in the case of textual inversion, and just the step for hypernetworks. Using this one could graph the loss and see how well the model is learning. The times when t...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/2430
2022-10-12T21:48:00Z
2022-10-14T19:44:00Z
2022-10-14T19:44:00Z
2022-10-14T19:44:00Z
1,428
AUTOMATIC1111/stable-diffusion-webui
39,907
修复whl包没有use_zero_copy_run参数的问题
diff --git a/paddleocr.py b/paddleocr.py index 65bca7ae24..d3d73cb1b9 100644 --- a/paddleocr.py +++ b/paddleocr.py @@ -129,6 +129,7 @@ def str2bool(v): parser.add_argument("--det", type=str2bool, default=True) parser.add_argument("--rec", type=str2bool, default=True) + parser.add_argument("--use_zero_cop...
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/623
2020-08-27T07:12:12Z
2020-08-28T03:55:24Z
2020-08-28T03:55:24Z
2020-08-31T03:05:03Z
182
PaddlePaddle/PaddleOCR
41,952
Resolve CVE-2023-32681 by accepting requests>=2.31.0
diff --git a/setup.py b/setup.py index 8b2fd8361934d..8d807b1912f84 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ "tenacity>=8.2.0,<9.0.0", "openai>=0.26.4", "pandas", - "requests<2.30.0", + "urllib3<2", "fsspec>=2023.5.0", "typing-inspect==0.8.0", "typing_extensions==4.5.0"...
Accepting `requests>=2.31.0` to resolve [CVE-2023-32681 (Unintended leak of Proxy-Authorization header)](https://github.com/psf/requests/security/advisories/GHSA-j8r2-6x86-q33q). `requests` was previously pinned to `<2.30.0` by #2099 because requests version (2.30.0) breaks download_loader in llama_hub. I think the ...
https://api.github.com/repos/run-llama/llama_index/pulls/3833
2023-05-24T02:32:06Z
2023-05-25T19:09:33Z
2023-05-25T19:09:33Z
2023-05-25T21:32:07Z
143
run-llama/llama_index
6,172
Added emoji zwj sequences
diff --git a/blns.json b/blns.json index 75d5973..4a3a85d 100644 --- a/blns.json +++ b/blns.json @@ -156,6 +156,7 @@ "🐵 🙈 🙉 🙊", "❤️ 💔 💌 💕 💞 💓 💗 💖 💘 💝 💟 💜 💛 💚 💙", "✋🏿 💪🏿 👐🏿 🙌🏿 👏🏿 🙏🏿", + "👨‍👩‍👦 👨‍👩‍👧‍👦 👨‍👨‍👦 👩‍👩‍👧 👨‍👦 👨‍👧‍👦 👩‍👦 👩‍👧‍👦", "🚾 🆒 🆓 🆕 🆖 �...
The following are the recommended emoji zwj sequences, which use a U+200D ZERO WIDTH JOINER (ZWJ) to join the characters into a single glyph if available. When not available, the ZWJ characters are ignored and a fallback sequence of separate emoji is displayed. The example sequences consist of up to 7 characters per...
https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls/211
2020-05-24T17:42:29Z
2020-05-26T02:39:04Z
2020-05-26T02:39:04Z
2020-05-26T02:39:04Z
645
minimaxir/big-list-of-naughty-strings
4,804
Raise InvalidUrl if host starts with '.' character.
diff --git a/requests/models.py b/requests/models.py index e7d292d580..d86388182b 100644 --- a/requests/models.py +++ b/requests/models.py @@ -403,7 +403,7 @@ def prepare_url(self, url, params): host = self._get_idna_encoded_host(host) except UnicodeError: raise InvalidURL...
Closes #5367 Attempting to get `http://.example.com` results in a `UnicodeError` but should be raise `InvalidUrl` as attempting to get `http://*example.com`. I've added `InvalidUrl` tests for `http://.example.com` and `http://*example.com`.
https://api.github.com/repos/psf/requests/pulls/5414
2020-04-05T16:52:04Z
2021-12-29T01:39:37Z
2021-12-29T01:39:36Z
2022-03-29T08:05:38Z
284
psf/requests
32,043
Suppress `torch` AMP-CPU warnings
diff --git a/utils/torch_utils.py b/utils/torch_utils.py index ca91ff6b4ad..c5257c6ebfe 100644 --- a/utils/torch_utils.py +++ b/utils/torch_utils.py @@ -9,6 +9,7 @@ import platform import subprocess import time +import warnings from contextlib import contextmanager from copy import deepcopy from pathlib import Pa...
This is a torch bug, but they seem unable or unwilling to fix it so I'm creating a suppression in YOLOv5. Resolves https://github.com/ultralytics/yolov5/issues/6692 ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhancement of model traini...
https://api.github.com/repos/ultralytics/yolov5/pulls/6706
2022-02-19T15:44:34Z
2022-02-19T15:48:34Z
2022-02-19T15:48:34Z
2024-01-19T12:43:30Z
394
ultralytics/yolov5
25,216
[extractor/rai] fix for #4690
diff --git a/yt_dlp/extractor/rai.py b/yt_dlp/extractor/rai.py index dc911069dc4..6ed8227eb6f 100644 --- a/yt_dlp/extractor/rai.py +++ b/yt_dlp/extractor/rai.py @@ -156,7 +156,7 @@ def get_format_info(tbr): br = int_or_none(tbr) if len(fmts) == 1 and not br: br = fmts[0].get('...
### Description of your *pull request* and other information Stupid error by me introduced in a previous PR Fixes #4690 ### Before submitting a *pull request* make sure you have: - [x] At least skimmed through [contributing guidelines](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#developer-i...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/4700
2022-08-18T20:57:18Z
2022-08-18T20:58:59Z
2022-08-18T20:58:59Z
2022-10-20T09:49:29Z
171
yt-dlp/yt-dlp
7,630
Fix capitalization of Dropbox
diff --git a/README.md b/README.md index eb64419c48..266f8b168d 100644 --- a/README.md +++ b/README.md @@ -1723,7 +1723,7 @@ Handy metrics based on numbers above: | Amazon | [Amazon architecture](http://highscalability.com/amazon-architecture) | | Cinchcast | [Producing 1,500 hours of audio every day](http://highscal...
Dropbox is officially one word according to the company. This makes the entry in the table match all other mentions of the company in README.md
https://api.github.com/repos/donnemartin/system-design-primer/pulls/511
2021-02-23T03:06:20Z
2021-05-09T18:20:50Z
2021-05-09T18:20:50Z
2021-05-09T18:21:00Z
389
donnemartin/system-design-primer
36,723
Fixing link to C.146 to be valid, and a link to ??? to be unlinked
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 989d59aaf..7d02e9e96 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7376,8 +7376,9 @@ the former (`dynamic_cast`) is far harder to implement correctly in general. Consider: struct B { - const char* name {"B"}; - virt...
Fixing stuff so that the script tests passes
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/934
2017-05-23T06:16:11Z
2017-05-24T02:55:07Z
2017-05-24T02:55:07Z
2017-05-24T02:55:07Z
1,298
isocpp/CppCoreGuidelines
15,651
Improve no_command
diff --git a/tests/rules/test_no_command.py b/tests/rules/test_no_command.py index 559837881..0839213f6 100644 --- a/tests/rules/test_no_command.py +++ b/tests/rules/test_no_command.py @@ -9,16 +9,27 @@ def command_found(): return b'''No command 'aptget' found, did you mean: Command 'apt-get' from package 'apt'...
This PR fixes a couple of limitations of the no_command rule: `/usr/lib/command-not-found` suggests commands from uninstalled packages, so we filter out commands that aren't installed. In many cases taking the first installed suggestion is inappropriate -- for example, if the broken command is `bish`, on my system t...
https://api.github.com/repos/nvbn/thefuck/pulls/36
2015-04-18T21:41:45Z
2015-04-19T12:51:39Z
2015-04-19T12:51:39Z
2015-04-20T20:31:39Z
1,364
nvbn/thefuck
30,655
Revert "move text encoder to GPU (#360)"
diff --git a/fooocus_version.py b/fooocus_version.py index 024361b73..e83c613ba 100644 --- a/fooocus_version.py +++ b/fooocus_version.py @@ -1 +1 @@ -version = '2.0.4' +version = '2.0.3' diff --git a/modules/patch.py b/modules/patch.py index 09ec6fc26..084749566 100644 --- a/modules/patch.py +++ b/modules/patch.py @@ -...
This reverts commit 7700276b5013ff6a4ce9776bfe6b6919326654b0. This seems to influence result quality.
https://api.github.com/repos/lllyasviel/Fooocus/pulls/361
2023-09-13T11:55:07Z
2023-09-13T11:55:22Z
2023-09-13T11:55:22Z
2023-09-13T12:00:59Z
192
lllyasviel/Fooocus
7,215
Upgrade pinned Python dependencies
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3fad8b28a1d85..638e07407f84e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: - id: ruff-format - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v4.6.0 hooks:...
This PR upgrades all the pinned Python dependencies.
https://api.github.com/repos/localstack/localstack/pulls/10619
2024-04-09T05:02:30Z
2024-04-09T06:37:50Z
2024-04-09T06:37:50Z
2024-04-09T06:37:51Z
3,441
localstack/localstack
28,542
[3.8] bpo-38239: Fix test_gdb for Link Time Optimization (LTO) (GH-16422)
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index e07d3273a4552d..e1060330550e34 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -255,8 +255,15 @@ def get_gdb_repr(self, source, # gdb can insert additional '\n' and space characters in various places # in its output, depend...
(cherry picked from commit 64b4a3a2deabcd4103fac2759a311fe94159b4d1) Co-authored-by: Victor Stinner <vstinner@redhat.com> <!-- issue-number: [bpo-38239](https://bugs.python.org/issue38239) --> https://bugs.python.org/issue38239 <!-- /issue-number -->
https://api.github.com/repos/python/cpython/pulls/16424
2019-09-26T14:54:28Z
2019-09-26T15:13:40Z
2019-09-26T15:13:40Z
2019-09-26T15:34:07Z
523
python/cpython
4,468
Use new SensorDeviceClass enum in bmp280
diff --git a/homeassistant/components/bmp280/sensor.py b/homeassistant/components/bmp280/sensor.py index 21ab71e5ce63..3721bffaf682 100644 --- a/homeassistant/components/bmp280/sensor.py +++ b/homeassistant/components/bmp280/sensor.py @@ -8,9 +8,8 @@ import voluptuous as vol from homeassistant.components.sensor imp...
## 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. --> ## Type of change <!-- What typ...
https://api.github.com/repos/home-assistant/core/pulls/61320
2021-12-09T07:10:06Z
2021-12-09T07:28:38Z
2021-12-09T07:28:38Z
2021-12-10T09:01:45Z
377
home-assistant/core
38,990
Typo in super() 77acc99
diff --git a/manimlib/mobject/coordinate_systems.py b/manimlib/mobject/coordinate_systems.py index 4d3fc235d5..442a36d745 100644 --- a/manimlib/mobject/coordinate_systems.py +++ b/manimlib/mobject/coordinate_systems.py @@ -284,7 +284,7 @@ class NumberPlane(Axes): } def __init__(self, **kwargs): - sup...
Hello, I believe there was a typo in commit 77acc99. Changing this allows to run the following example from Todd Zimmerman's tutorial. ```python class SimpleField(Scene): CONFIG = { "plane_kwargs" : { "color" : RED }, } def construct(self): plane = NumberPlane(**self.pl...
https://api.github.com/repos/3b1b/manim/pulls/877
2020-02-09T10:45:00Z
2020-02-13T06:38:22Z
2020-02-13T06:38:22Z
2020-02-13T06:38:22Z
133
3b1b/manim
18,459
Update urllib3
diff --git a/AUTHORS.rst b/AUTHORS.rst index 31b2c2e297..62e01116eb 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -140,3 +140,4 @@ Patches and Suggestions - Matt Spitz @mattspitz - Vikram Oberoi @voberoi - Can Ibanoglu <can.ibanoglu@gmail.com> @canibanoglu +- Thomas Weißschuh <thomas@t-8ch.de> @t-8ch diff --git a/re...
... and use the opportunity to add myself to `AUTHORS.rst`
https://api.github.com/repos/psf/requests/pulls/1726
2013-11-04T18:57:04Z
2013-11-04T21:55:58Z
2013-11-04T21:55:58Z
2021-09-08T23:06:15Z
3,871
psf/requests
32,884
[zattoo] Fix video information extraction (closes #17175)
diff --git a/youtube_dl/extractor/zattoo.py b/youtube_dl/extractor/zattoo.py index fb167c19855..9c9024799ad 100644 --- a/youtube_dl/extractor/zattoo.py +++ b/youtube_dl/extractor/zattoo.py @@ -93,28 +93,30 @@ def _extract_cid(self, video_id, channel_name): def _extract_cid_and_video_info(self, video_id): ...
## 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/17542
2018-09-11T14:43:17Z
2018-09-23T14:34:48Z
2018-09-23T14:34:48Z
2018-09-23T14:34:48Z
489
ytdl-org/youtube-dl
50,508
🌐 Add German translation for `docs/de/docs/reference/middleware.md`
diff --git a/docs/de/docs/reference/middleware.md b/docs/de/docs/reference/middleware.md new file mode 100644 index 0000000000000..d8d2d50fc911e --- /dev/null +++ b/docs/de/docs/reference/middleware.md @@ -0,0 +1,45 @@ +# Middleware + +Es gibt mehrere Middlewares, die direkt von Starlette bereitgestellt werden. + +Lese...
← `reference/responses.md` (#10825) → `reference/openapi/*.md` (#10838) [German translation progress](https://github.com/tiangolo/fastapi/discussions/10582)
https://api.github.com/repos/tiangolo/fastapi/pulls/10837
2023-12-26T10:53:02Z
2024-03-30T18:15:40Z
2024-03-30T18:15:40Z
2024-04-01T01:14:33Z
353
tiangolo/fastapi
22,922
Updating Russian Translation
diff --git a/website/public/locales/ru/chat.json b/website/public/locales/ru/chat.json new file mode 100644 index 0000000000..f72d80495c --- /dev/null +++ b/website/public/locales/ru/chat.json @@ -0,0 +1,4 @@ +{ + "back_to_chat_list": "Вернуться к диалогам", + "your_chats": "Ваши диалоги" +} diff --git a/website/publ...
Keeping up-to-date. New: ru/chat.json Modified: ru/labelling.json ru/message.json ru/stats.json ru/tasks.json
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/2069
2023-03-14T19:25:35Z
2023-03-15T06:11:23Z
2023-03-15T06:11:23Z
2023-03-15T22:04:14Z
1,214
LAION-AI/Open-Assistant
37,480
Use g:pymode_python-defined interpreter if defined and exists, otherwise use existing defaults
diff --git a/plugin/black.vim b/plugin/black.vim index 0a26aa0eab..10f0cfe005 100644 --- a/plugin/black.vim +++ b/plugin/black.vim @@ -37,10 +37,17 @@ if !exists("g:black_skip_string_normalization") endif python3 << endpython3 +import os import sys import vim def _get_python_binary(exec_prefix): + try: + d...
This is helpful when using custom-compiled interpreters, or alternative Python interpreters in non-standard locations
https://api.github.com/repos/psf/black/pulls/666
2019-01-10T15:15:40Z
2019-05-07T17:28:57Z
2019-05-07T17:28:57Z
2019-05-07T17:29:06Z
175
psf/black
23,635
update_1
diff --git a/20_Day/20_python_package_manager.md b/20_Day/20_python_package_manager.md index df0d0aef..833a93b6 100644 --- a/20_Day/20_python_package_manager.md +++ b/20_Day/20_python_package_manager.md @@ -22,15 +22,15 @@ - [📘 Day 20](#%f0%9f%93%98-day-20) - [Python PIP - Python Package Manager](#python-pip---pyt...
https://api.github.com/repos/Asabeneh/30-Days-Of-Python/pulls/41
2020-05-17T11:16:28Z
2020-05-17T13:27:39Z
2020-05-17T13:27:39Z
2020-05-17T13:27:39Z
3,382
Asabeneh/30-Days-Of-Python
26,846
Modified the formatting of question_gen_query
diff --git a/llama_index/llama_dataset/generator.py b/llama_index/llama_dataset/generator.py index 3d1fa4e91947d..1f424a803835d 100644 --- a/llama_index/llama_dataset/generator.py +++ b/llama_index/llama_dataset/generator.py @@ -72,11 +72,7 @@ def __init__( self.text_qa_template = text_qa_template or DEFAULT_T...
# Description This PR tries to correct the formatting issue of the default question_gen_query string. Without modification the Query Generation prompt looks like, ``` ...... Given the context information and not prior knowledge. generate only questions based on the below query. You are a Teacher/Professor. Your...
https://api.github.com/repos/run-llama/llama_index/pulls/10308
2024-01-27T08:14:39Z
2024-01-27T16:27:03Z
2024-01-27T16:27:03Z
2024-01-27T16:27:03Z
256
run-llama/llama_index
6,233
ci: Update macos runner
diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index fdb9f498008..61f1857f88c 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: tests: - runs-on: macos-10.15 + runs-on: macos-11 strat...
The GitHub Actions macos-10.15 runner image is now deprecated, and GitHub Actions has begun to temporarily fail jobs referencing it during brownout periods. The image will be fully unsupported by 2022-12-01, which is just about a month away. This change updates the macOS runner image to the latest generally-availabl...
https://api.github.com/repos/scrapy/scrapy/pulls/5695
2022-10-27T01:47:13Z
2022-10-27T07:45:43Z
2022-10-27T07:45:43Z
2022-10-27T14:33:22Z
122
scrapy/scrapy
35,057
Fix in docs for error introduced in #1218
diff --git a/docs/topics/link-extractors.rst b/docs/topics/link-extractors.rst index f9b25ae6383..8253e76507b 100644 --- a/docs/topics/link-extractors.rst +++ b/docs/topics/link-extractors.rst @@ -79,7 +79,7 @@ LxmlLinkExtractor extensions that should be ignored when extracting links. If not given, it...
https://api.github.com/repos/scrapy/scrapy/pulls/1233
2015-05-14T23:12:15Z
2015-05-14T23:31:39Z
2015-05-14T23:31:39Z
2015-05-14T23:48:40Z
163
scrapy/scrapy
34,725
[extractor/opencast] Add ltitools interface to OpencastPlaylistIE and fix Tests
diff --git a/yt_dlp/extractor/opencast.py b/yt_dlp/extractor/opencast.py index fa46757f7b6..235ca341c48 100644 --- a/yt_dlp/extractor/opencast.py +++ b/yt_dlp/extractor/opencast.py @@ -105,10 +105,9 @@ def _parse_mediapackage(self, video): class OpencastIE(OpencastBaseIE): - _VALID_URL = r'''(?x) - ...
### Description I'm the original author of the Opencast Extractor (bwildenhain then took care of it further so that it would be merged into yt-dlp. Thanks again for that), and I want to make an update to the extractor. Opencast now has a new "interface" to access playlists, and that is now used more often than the ...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/6371
2023-02-27T16:27:09Z
2023-03-09T16:21:40Z
2023-03-09T16:21:40Z
2023-03-09T16:21:40Z
1,081
yt-dlp/yt-dlp
7,535
add profiling to Debugging Tools section
diff --git a/README.md b/README.md index e64479727..759258359 100644 --- a/README.md +++ b/README.md @@ -844,6 +844,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [pyringe](https://github.com/google/pyringe) - Debugger capable of attaching to and injecting code into Python proc...
https://api.github.com/repos/vinta/awesome-python/pulls/234
2014-10-09T08:36:26Z
2014-10-09T08:46:48Z
2014-10-09T08:46:47Z
2014-10-09T08:46:48Z
237
vinta/awesome-python
27,317
Allow unified_strdate to handle "*3rd" in date strings.
diff --git a/test/test_utils.py b/test/test_utils.py index 3920542bb43..0db37d9d88e 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -340,6 +340,8 @@ def test_unified_dates(self): self.assertEqual(unified_strdate('July 15th, 2013'), '20130715') self.assertEqual(unified_strdate('September 1s...
## 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/23199
2019-11-25T00:22:11Z
2019-11-26T17:08:38Z
2019-11-26T17:08:38Z
2020-08-26T01:48:37Z
433
ytdl-org/youtube-dl
50,552
Fix documentation typo.
diff --git a/requests/adapters.py b/requests/adapters.py index 0adca690cd..77badc7fa3 100644 --- a/requests/adapters.py +++ b/requests/adapters.py @@ -289,7 +289,7 @@ def send(self, request, stream=False, timeout=None, verify=True, cert=None, prox :param stream: (optional) Whether to stream the request content...
Fairly sure that 'vert' should be 'cert' :)
https://api.github.com/repos/psf/requests/pulls/1722
2013-11-04T01:59:41Z
2013-11-04T02:16:22Z
2013-11-04T02:16:22Z
2021-09-08T22:01:02Z
182
psf/requests
32,420
Add MYSQL Wide byte injection
diff --git a/SQL Injection/MySQL Injection.md b/SQL Injection/MySQL Injection.md index 5d19b43350..54a352e433 100644 --- a/SQL Injection/MySQL Injection.md +++ b/SQL Injection/MySQL Injection.md @@ -22,6 +22,7 @@ * [Using SLEEP in a subselect](#using-sleep-in-a-subselect) * [Using conditional statements](#u...
Add MYSQL Wide byte injection, it can test in Sqli-labs Less-32, writeup (chinese): https://www.cnblogs.com/zhengna/p/12660680.html see: https://github.com/Audi-1/sqli-labs/blob/master/Less-32/index.php
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/672
2023-09-13T15:35:18Z
2023-09-14T08:25:13Z
2023-09-14T08:25:13Z
2023-09-14T08:25:13Z
715
swisskyrepo/PayloadsAllTheThings
8,385
[radiko] Fix extractor
diff --git a/yt_dlp/extractor/radiko.py b/yt_dlp/extractor/radiko.py index 651cfe63b1e..dbb74871509 100644 --- a/yt_dlp/extractor/radiko.py +++ b/yt_dlp/extractor/radiko.py @@ -1,26 +1,22 @@ -import re import base64 -import calendar -import datetime +import re +import urllib.parse from .common import InfoExtractor ...
<!-- # 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 look like --> ### Before submitting a ...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/3655
2022-05-06T01:48:27Z
2022-05-07T15:47:51Z
2022-05-07T15:47:51Z
2022-05-07T15:47:51Z
1,436
yt-dlp/yt-dlp
8,031
Use super().__init__ instead of explicitly calling named super-class.
diff --git a/acme/acme/standalone.py b/acme/acme/standalone.py index cd2caa22107..5dfb271367e 100644 --- a/acme/acme/standalone.py +++ b/acme/acme/standalone.py @@ -34,10 +34,9 @@ def __init__(self, *args: Any, **kwargs: Any) -> None: else: self.address_family = socket.AF_INET self.certs ...
I think it's largely a question of style/preference. For speed, `super().__init__` is *slower*, but probably more correct if you inherit from those classes. ## Pull Request Checklist - [X] If the change being made is to a [distributed component](https://certbot.eff.org/docs/contributing.html#code-components-and-l...
https://api.github.com/repos/certbot/certbot/pulls/9166
2022-01-09T20:40:51Z
2022-01-09T21:50:44Z
2022-01-09T21:50:44Z
2022-01-09T22:38:38Z
1,559
certbot/certbot
160
Add models to pull request template
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 1f3555466..6c1eefb08 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,6 @@ ### Describe the changes you have made: -### Reference any relevant issue (Fixes #123) +### Reference any re...
### Describe the changes you have made: I added AI language models to the pull request template. - [x] I have performed a self-review of my code: ### I have tested the code on the following OS: - [ ] Windows - [ ] MacOS - [x] Linux
https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/423
2023-09-18T03:24:19Z
2023-09-18T20:23:59Z
2023-09-18T20:23:59Z
2023-09-18T20:24:15Z
207
OpenInterpreter/open-interpreter
40,695
logging: log timestamps as local timezone instead of UTC
diff --git a/certbot/log.py b/certbot/log.py index f7c7b126cbe..38c06133507 100644 --- a/certbot/log.py +++ b/certbot/log.py @@ -19,7 +19,6 @@ import os import sys import tempfile -import time import traceback from acme import messages @@ -148,7 +147,6 @@ def setup_log_file_handler(config, logfile, fmt): ha...
fix for #5604 -- localtime should be used [by default](https://docs.python.org/2/library/logging.html#logging.Formatter.formatTime).
https://api.github.com/repos/certbot/certbot/pulls/5607
2018-02-22T07:45:31Z
2018-03-21T22:41:34Z
2018-03-21T22:41:34Z
2018-03-21T22:47:07Z
320
certbot/certbot
1,275
build: One command per upload
diff --git a/.travis.yml b/.travis.yml index 26c0c15d148dde..9ff9f17065f1f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,13 +52,13 @@ after_failure: - dmesg | tail -n 100 after_script: - - zeus upload -t "text/xml+xunit" .artifacts/*.junit.xml - -t "text/xml+coverage" .artifacts/*.coverage.xml - -t "t...
https://api.github.com/repos/getsentry/sentry/pulls/9188
2018-07-25T13:09:03Z
2018-07-25T13:40:11Z
2018-07-25T13:40:11Z
2020-12-21T16:09:13Z
418
getsentry/sentry
44,440
Added < and > to list of quesitons.
diff --git a/README.md b/README.md index 432d00d0e..b56983b85 100644 --- a/README.md +++ b/README.md @@ -2513,6 +2513,13 @@ These are files directly not displayed after performing a standard ls direct lis `ls -a` </b></details> +<details> +<summary>What do > and < do in terms of input and output for programs?</summ...
Added in > and < for Linux, as well as yes command (yes XYZ repeats XYZ in the console, useful for repetitive input)
https://api.github.com/repos/bregman-arie/devops-exercises/pulls/132
2021-06-30T01:07:25Z
2021-06-30T12:20:00Z
2021-06-30T12:20:00Z
2021-06-30T12:20:00Z
174
bregman-arie/devops-exercises
17,398
add RCE via Apache logs in log poisoning
diff --git a/File Inclusion/README.md b/File Inclusion/README.md index 8bb0a16d11..cc4a67fc64 100644 --- a/File Inclusion/README.md +++ b/File Inclusion/README.md @@ -345,6 +345,22 @@ In some cases you can also send the email with the `mail` command line. mail -s "<?php system($_GET['cmd']);?>" www-data@10.10.10.10....
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/362
2021-05-10T09:48:23Z
2021-05-10T11:13:34Z
2021-05-10T11:13:34Z
2021-05-10T12:52:57Z
246
swisskyrepo/PayloadsAllTheThings
8,847
add unittest for multiple username
diff --git a/sherlock/tests/test_multiple_usernames.py b/sherlock/tests/test_multiple_usernames.py new file mode 100644 index 000000000..12aac41f2 --- /dev/null +++ b/sherlock/tests/test_multiple_usernames.py @@ -0,0 +1,17 @@ +import imp +import unittest +import sys +sys.path.append('../') +import sherlock as sh + +che...
I created a unit test for the feature i made a few days ago for multiple usernames.
https://api.github.com/repos/sherlock-project/sherlock/pulls/1339
2022-05-08T11:24:34Z
2022-05-09T21:12:12Z
2022-05-09T21:12:12Z
2022-06-20T11:33:54Z
218
sherlock-project/sherlock
36,442
Fix pylint issues - broken master
diff --git a/docs/build_docs.py b/docs/build_docs.py index 120a90e7586f8..f0486ebea03d4 100755 --- a/docs/build_docs.py +++ b/docs/build_docs.py @@ -137,19 +137,17 @@ def build_docs_for_packages( all_spelling_errors: Dict[str, List[SpellingError]] = defaultdict(list) for package_no, package_name in enumerate(...
``` ************* Module publish_docs docs/publish_docs.py:92:18: E1120: No value for argument 'verbose' in constructor call (no-value-for-parameter) ``` <!-- 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 ...
https://api.github.com/repos/apache/airflow/pulls/13427
2021-01-02T03:07:03Z
2021-01-02T10:52:26Z
2021-01-02T10:52:26Z
2021-01-02T10:52:27Z
1,041
apache/airflow
14,492
Added fingerprint for Hyundai Elantra 2021
diff --git a/selfdrive/car/hyundai/values.py b/selfdrive/car/hyundai/values.py index be94e264ab327d..026281a3f5a8a9 100644 --- a/selfdrive/car/hyundai/values.py +++ b/selfdrive/car/hyundai/values.py @@ -654,7 +654,10 @@ class Buttons: (Ecu.transmission, 0x7e1, None): [b'\xf1\x816U2V8051\x00\x00\xf1\x006U2V0_C2\x00...
This fingerprint started popping up on my 2021 Hyundai Elantra SEL (non-hybrid). <!-- Please copy and paste the relevant template --> <!--- ***** Template: Car bug fix ***** **Description** [](A description of the bug and the fix. Also link any relevant issues.) **Verification** [](Explain how you tested th...
https://api.github.com/repos/commaai/openpilot/pulls/22256
2021-09-16T22:42:30Z
2021-09-17T23:59:58Z
2021-09-17T23:59:58Z
2021-09-17T23:59:58Z
842
commaai/openpilot
9,047
Add parameters to limit replace to certain section of the file
diff --git a/lib/ansible/modules/files/replace.py b/lib/ansible/modules/files/replace.py index 059d05d9724f3f..5bfc7274ef0cef 100644 --- a/lib/ansible/modules/files/replace.py +++ b/lib/ansible/modules/files/replace.py @@ -57,6 +57,22 @@ - The string to replace regexp matches. May contain backreferences ...
##### SUMMARY Add parameters `after` and `before` to limit the replacement/removals of lines to a certain section of the file. - The parameter `after` defines after which line the replacements/removals should start until the end of file - The parameter `before` defines before which line the replacements/removals s...
https://api.github.com/repos/ansible/ansible/pulls/22535
2017-03-12T01:00:15Z
2017-03-16T21:34:58Z
2017-03-16T21:34:58Z
2019-04-26T20:56:01Z
1,130
ansible/ansible
48,925
Profiles~
diff --git a/interpreter/terminal_interface/profiles.yaml b/interpreter/terminal_interface/profiles.yaml new file mode 100644 index 000000000..aff44a2f9 --- /dev/null +++ b/interpreter/terminal_interface/profiles.yaml @@ -0,0 +1,13 @@ +default: + llm.model: "gpt-4-1106-preview" + llm.context_window: 128000 + llm.max...
### Describe the changes you have made: ### Reference any relevant issues (e.g. "Fixes #000"): ### Pre-Submission Checklist (optional but appreciated): - [ ] I have included relevant documentation updates (stored in /docs) - [x] I have read `docs/CONTRIBUTING.md` - [ ] I have read `docs/ROADMAP.md` ### OS...
https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/933
2024-01-16T20:57:50Z
2024-01-18T07:20:11Z
2024-01-18T07:20:11Z
2024-01-18T07:20:12Z
1,735
OpenInterpreter/open-interpreter
40,835
[extractor/tiktok] TikTokBaseIE update api hostname
diff --git a/yt_dlp/extractor/tiktok.py b/yt_dlp/extractor/tiktok.py index 1bbf88495e6..95223f5de95 100644 --- a/yt_dlp/extractor/tiktok.py +++ b/yt_dlp/extractor/tiktok.py @@ -30,7 +30,7 @@ class TikTokBaseIE(InfoExtractor): _WORKING_APP_VERSION = None _APP_NAME = 'trill' _AID = 1180 - _API_HOSTNAME ...
**IMPORTANT**: PRs without the template will be CLOSED ### Description of your *pull request* and other information </details> <!-- Explanation of your *pull request* in arbitrary form goes here. Please **make sure the description explains the purpose and effect** of your *pull request* and is worded well e...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/5690
2022-12-02T08:33:02Z
2022-12-02T09:38:00Z
2022-12-02T09:38:00Z
2022-12-02T10:40:08Z
218
yt-dlp/yt-dlp
7,587
[MRG+1] split data using _safe_split in _permutaion_test_scorer to fix error…
diff --git a/sklearn/cross_validation.py b/sklearn/cross_validation.py index a4a1e3d65c7ca..03c74b88f5f28 100644 --- a/sklearn/cross_validation.py +++ b/sklearn/cross_validation.py @@ -1756,8 +1756,10 @@ def _permutation_test_score(estimator, X, y, cv, scorer): """Auxiliary function for permutation_test_score""" ...
… when using Pandas DataFrame/Series Related to issue #5696
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/5697
2015-11-02T23:57:53Z
2016-12-29T01:46:53Z
2016-12-29T01:46:53Z
2016-12-29T08:26:12Z
904
scikit-learn/scikit-learn
46,754
Update README.rst
diff --git a/README.rst b/README.rst index 8a59d6d3ba..2c68568ebc 100644 --- a/README.rst +++ b/README.rst @@ -895,7 +895,7 @@ Colors and Formatting --------------------- Syntax highlighting is applied to HTTP headers and bodies (where it makes -sense). You can choose your prefered color scheme via the ``--style`` ...
Fix a simple typo
https://api.github.com/repos/httpie/cli/pulls/387
2015-10-07T17:18:06Z
2015-10-07T17:41:24Z
2015-10-07T17:41:24Z
2015-10-07T17:41:35Z
141
httpie/cli
34,144
My solution to the problem
diff --git a/Project Euler/Problem 01/sol4.py b/Project Euler/Problem 01/sol4.py new file mode 100644 index 000000000000..0f5dc370b441 --- /dev/null +++ b/Project Euler/Problem 01/sol4.py @@ -0,0 +1,32 @@ +def mulitples(limit): + xmulti = [] + zmulti = [] + z = 3 + x = 5 + temp = 1 + while True...
Looks kind of bad compared to the other ones huh
https://api.github.com/repos/TheAlgorithms/Python/pulls/244
2018-01-21T08:28:22Z
2018-01-22T01:46:12Z
2018-01-22T01:46:12Z
2018-01-22T01:46:12Z
428
TheAlgorithms/Python
30,171
Add project: Upgini
diff --git a/README.md b/README.md index 17d3eddd..9f4c6bba 100644 --- a/README.md +++ b/README.md @@ -1220,6 +1220,7 @@ be * [Shapash](https://github.com/MAIF/shapash) : Shapash is a Python library that provides several types of visualization that display explicit labels that everyone can understand. * [Eurybia](htt...
Hi! I added Upgini library. It's a python library for automated data & feature enrichment for machine learning: automatically searches through thousands of ready-to-use features from public and community shared data sources and enriches your training dataset with only the accuracy improving features License: BSD-3 ...
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/866
2022-06-27T18:44:42Z
2022-06-29T20:04:24Z
2022-06-29T20:04:24Z
2022-06-29T20:04:24Z
254
josephmisiti/awesome-machine-learning
52,486
changing describe_parameters call to use paginator
diff --git a/lib/ansible/modules/cloud/amazon/aws_ssm_parameter_store.py b/lib/ansible/modules/cloud/amazon/aws_ssm_parameter_store.py index f075456a6635df..7265dfda79c9d3 100644 --- a/lib/ansible/modules/cloud/amazon/aws_ssm_parameter_store.py +++ b/lib/ansible/modules/cloud/amazon/aws_ssm_parameter_store.py @@ -185,7...
##### SUMMARY updated create_update_parameter() to use a paginator for the describe_parameter method when updating an existing parameter. I ran into an issue where the parameter I needed to update was not in the first result set of items returned by: client.get_parameter(Name=args['Name'], WithDecryption=True) See...
https://api.github.com/repos/ansible/ansible/pulls/45632
2018-09-13T19:25:35Z
2018-09-14T19:17:16Z
2018-09-14T19:17:16Z
2019-07-22T16:39:09Z
237
ansible/ansible
49,022
[XHamster] test case fix
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py index 68652a22fc7..d1bc992fd95 100644 --- a/youtube_dl/extractor/xhamster.py +++ b/youtube_dl/extractor/xhamster.py @@ -39,7 +39,7 @@ class XHamsterIE(InfoExtractor): 'uploader': 'Ruseful2011', 'duration': 893, ...
### Before submitting a *pull request* make sure you have: - [x] At least skimmed through [adding new extractor tutorial](https://github.com/rg3/youtube-dl#adding-support-for-a-new-site) and [youtube-dl coding conventions](https://github.com/rg3/youtube-dl#youtube-dl-coding-conventions) sections - [x] [Searched](http...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/15656
2018-02-20T11:22:32Z
2018-02-20T15:18:50Z
2018-02-20T15:18:50Z
2018-02-20T20:20:28Z
240
ytdl-org/youtube-dl
50,340
Bump peter-evans/create-or-update-comment from 3.0.2 to 3.1.0
diff --git a/.github/workflows/diff_shades_comment.yml b/.github/workflows/diff_shades_comment.yml index b86bd93410e..49fd376d85e 100644 --- a/.github/workflows/diff_shades_comment.yml +++ b/.github/workflows/diff_shades_comment.yml @@ -41,7 +41,7 @@ jobs: - name: Create or update PR comment if: steps...
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 3.0.2 to 3.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/peter-evans/create-or-update-comment/releases">peter-evans/create-or-update-comment's releases</a>.</em></...
https://api.github.com/repos/psf/black/pulls/3966
2023-10-23T06:14:08Z
2023-10-23T14:42:50Z
2023-10-23T14:42:50Z
2023-10-23T14:42:51Z
207
psf/black
23,638
Should redirect API docs for mongo to a notebook
diff --git a/docs/conf.py b/docs/conf.py index 6bd587d2acba7..97cc30b66d54b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -115,6 +115,7 @@ "core_modules/supporting_modules/callbacks/root": "/en/stable/module_guides/observability/callbacks/root.html", "core_modules/supporting_modules/evaluation/root": "/en/s...
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Fixes # (issue) ## Type of Change Please delete options that are not relevant. - [ ] Bug fix (non-breaking change wh...
https://api.github.com/repos/run-llama/llama_index/pulls/11053
2024-02-20T22:04:50Z
2024-02-20T23:45:30Z
2024-02-20T23:45:30Z
2024-02-20T23:45:30Z
177
run-llama/llama_index
5,964
Fix CartPole being made instead of Pendulum
diff --git a/gym/envs/classic_control/pendulum.py b/gym/envs/classic_control/pendulum.py index 1c65ddbd98a..d979b242084 100644 --- a/gym/envs/classic_control/pendulum.py +++ b/gym/envs/classic_control/pendulum.py @@ -64,7 +64,7 @@ class PendulumEnv(gym.Env): `g=10.0`. ``` - gym.make('CartPole-v1', g=9.81...
https://api.github.com/repos/openai/gym/pulls/2607
2022-02-11T01:51:03Z
2022-02-11T15:01:28Z
2022-02-11T15:01:28Z
2022-02-11T15:01:29Z
147
openai/gym
5,451
Added txpostgres, py2neo, telephus, txredis
diff --git a/README.md b/README.md index dd0f87834..ed6a944a1 100644 --- a/README.md +++ b/README.md @@ -291,11 +291,15 @@ long, literate-programming-style documentation generator. * [mysql-connector-python](https://pypi.python.org/pypi/mysql-connector-python) - A pure Python MySQL driver from Oracle (in case you ...
https://api.github.com/repos/vinta/awesome-python/pulls/128
2014-07-10T13:55:24Z
2014-07-12T13:06:42Z
2014-07-12T13:06:42Z
2014-07-12T13:06:42Z
391
vinta/awesome-python
26,962
LogCameraInfo: remove unused variables
diff --git a/selfdrive/loggerd/loggerd.h b/selfdrive/loggerd/loggerd.h index 170f37049d624e..0101a91a5e0198 100644 --- a/selfdrive/loggerd/loggerd.h +++ b/selfdrive/loggerd/loggerd.h @@ -44,8 +44,6 @@ const int SEGMENT_LENGTH = LOGGERD_TEST ? atoi(getenv("LOGGERD_SEGMENT_LENGTH")) struct LogCameraInfo { CameraType ...
<!-- Please copy and paste the relevant template --> <!--- ***** Template: Car bug fix ***** **Description** [](A description of the bug and the fix. Also link any relevant issues.) **Verification** [](Explain how you tested this bug fix.) **Route** Route: [a route with the bug fix] --> <!--- ***** T...
https://api.github.com/repos/commaai/openpilot/pulls/23142
2021-12-06T13:07:54Z
2021-12-06T13:25:28Z
2021-12-06T13:25:28Z
2021-12-06T13:25:56Z
413
commaai/openpilot
9,138
[twitch:vod] Support links to VoDs from the schedule tab
diff --git a/yt_dlp/extractor/twitch.py b/yt_dlp/extractor/twitch.py index 9b333f6f675..3b2d2c57d6a 100644 --- a/yt_dlp/extractor/twitch.py +++ b/yt_dlp/extractor/twitch.py @@ -194,7 +194,8 @@ class TwitchVodIE(TwitchBaseIE): https?:// (?: (?:(?...
Add support for Twitch URLs of the following format: ``` https://www.twitch.tv/<CHANNEL>/schedule?vodID=<ID> ``` These URLs appear when selecting a past broadcast in the schedule tab and clicking "Copy Link" in the pop-up. ![image](https://github.com/yt-dlp/yt-dlp/assets/320854/f0e3c83d-8035-4af3-aad6-08662e96...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/7071
2023-05-18T11:23:21Z
2023-05-29T14:30:20Z
2023-05-29T14:30:20Z
2023-05-30T03:04:28Z
298
yt-dlp/yt-dlp
7,544
Revert "replaced PenalizedLoss function with keras alternative"
diff --git a/lib/model/losses.py b/lib/model/losses.py index 439096fb4b..66b6873310 100644 --- a/lib/model/losses.py +++ b/lib/model/losses.py @@ -167,17 +167,47 @@ def extract_image_patches(self, x, ksizes, ssizes, padding='same', patches = K.permute_dimensions(patches, [0, 1, 2, 4, 5, 3]) return...
Reverts deepfakes/faceswap#665 This implementation of Keras Penalized Loss leads to the following tensorflow errors: ```2019-03-30 23:22:04.305508: E tensorflow/core/grappler/optimizers/dependency_optimizer.cc:666] Iteration = 0, topological sort failed with message: The graph couldn't be sorted in topological or...
https://api.github.com/repos/deepfakes/faceswap/pulls/687
2019-03-31T18:28:48Z
2019-03-31T18:29:42Z
2019-03-31T18:29:42Z
2019-04-03T18:17:00Z
576
deepfakes/faceswap
18,595
Add Ambrosia
diff --git a/README.md b/README.md index 6d3df9eb..99931942 100644 --- a/README.md +++ b/README.md @@ -1764,6 +1764,7 @@ be * [MLEM](https://github.com/iterative/mlem) - Version and deploy your ML models following GitOps principles * [DockerDL](https://github.com/matifali/dockerdl) - Ready to use deeplearning docker ...
Add Ambrosia, a tool for cleaning text datasets.
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/942
2023-05-30T02:56:00Z
2023-05-30T12:59:13Z
2023-05-30T12:59:13Z
2023-05-30T12:59:13Z
198
josephmisiti/awesome-machine-learning
51,736
[launcher] validate passwordless-ssh works when using hostfile launching
diff --git a/deepspeed/launcher/runner.py b/deepspeed/launcher/runner.py index 2b717d71db75..551d24e0e1d1 100755 --- a/deepspeed/launcher/runner.py +++ b/deepspeed/launcher/runner.py @@ -351,7 +351,22 @@ def main(args=None): args.exclude) env = os.environ.copy() ...
Validate that passwordless ssh is working properly if the user is launching with an active hostfile. This prevents a confusing password prompt if ssh isn't setup properly as well. /cc @awan-10
https://api.github.com/repos/microsoft/DeepSpeed/pulls/1832
2022-03-14T21:10:15Z
2022-03-14T21:51:46Z
2022-03-14T21:51:46Z
2022-03-14T21:51:46Z
296
microsoft/DeepSpeed
10,366
[idefics] fix vision's `hidden_act`
diff --git a/src/transformers/models/idefics/configuration_idefics.py b/src/transformers/models/idefics/configuration_idefics.py index 0d3fa7a589c31..12d710d726dc0 100644 --- a/src/transformers/models/idefics/configuration_idefics.py +++ b/src/transformers/models/idefics/configuration_idefics.py @@ -57,7 +57,7 @@ class...
Thanks to @rwightman's discovery this PR is fixing vision config's `hidden_act` to `gelu`. It looks like we messed things up when splitting the original config into 3 groups during the porting and inherited `clip`'s default config. Whereas the model used during training was using `gelu` as can be seen here. https://...
https://api.github.com/repos/huggingface/transformers/pulls/25787
2023-08-27T21:56:01Z
2023-08-28T14:37:37Z
2023-08-28T14:37:37Z
2023-08-28T14:38:08Z
341
huggingface/transformers
12,695
Update ML-DL Projects 2022
diff --git a/ML-DL Projects 2022 b/ML-DL Projects 2022 index fa241595..a4683b24 100644 --- a/ML-DL Projects 2022 +++ b/ML-DL Projects 2022 @@ -1,6 +1,7 @@ Heart_Disease_Preditor Boston/California/Banglore_House_Price_Prectictor Car_Price/Sales_Predictor +Cat Image Classifier CreditCard_Fraud/Scam_Predictor Custo...
Hi there, I've added the Cat Image Classifier project to this repository ML-DL Projects 2022. The project includes a logistic regression model and a deep neural network model that can recognize cats in images. I've also included instructions for building and training the models. Github link: https://github.com/mu...
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/926
2023-04-04T17:40:28Z
2023-04-12T00:39:49Z
2023-04-12T00:39:49Z
2023-04-12T00:39:50Z
123
josephmisiti/awesome-machine-learning
52,471
Added SQL injection for bypassing logins.
diff --git a/blns.txt b/blns.txt index 70ff0d5..4a53cf6 100644 --- a/blns.txt +++ b/blns.txt @@ -474,6 +474,7 @@ perl -e 'print "<IMG SRC=java\0script:alert(\"XSS\")>";' > out 1;DROP TABLE users 1'; DROP TABLE users-- +' OR 1 == 1; # Server Code Injection #
or other true/false checks that aren't sanitized.
https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls/54
2015-08-19T02:18:44Z
2015-08-19T03:36:40Z
2015-08-19T03:36:40Z
2015-08-19T03:36:40Z
105
minimaxir/big-list-of-naughty-strings
4,902
Remove ref counting dependencies on ray.get()
diff --git a/python/ray/_raylet.pyx b/python/ray/_raylet.pyx index 8e9f6541d070e..a1f18591283f5 100644 --- a/python/ray/_raylet.pyx +++ b/python/ray/_raylet.pyx @@ -139,6 +139,20 @@ else: if PY3: from ray.async_compat import sync_to_async + +def set_internal_config(dict options): + cdef: + unordered_m...
<!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> ## Why are these changes needed? Long chains of task dependencies can cause the reference counter to grow indefinitely, as revealed by `test_many_tasks`. ## Rel...
https://api.github.com/repos/ray-project/ray/pulls/6412
2019-12-10T05:12:34Z
2019-12-11T02:11:35Z
2019-12-11T02:11:35Z
2019-12-11T05:54:09Z
3,924
ray-project/ray
19,370