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
[gym.vector]: add `terminal_observation` to `info`
diff --git a/gym/vector/async_vector_env.py b/gym/vector/async_vector_env.py index 331dfcd5568..e8b1f537de8 100644 --- a/gym/vector/async_vector_env.py +++ b/gym/vector/async_vector_env.py @@ -413,6 +413,7 @@ def _worker(index, env_fn, pipe, parent_pipe, shared_memory, error_queue): elif command == "step":...
This PR follows up with #1632 and adds the `terminal_observation` to `info` in the vectorized environments at the end of an env's episode. The key `terminal_observation` is consistent with SB3's vectorized environment. See ![image](https://user-images.githubusercontent.com/5555347/141665286-0af06f00-6440-4a52-95ce-2...
https://api.github.com/repos/openai/gym/pulls/2484
2021-11-14T02:38:28Z
2021-11-14T13:57:45Z
2021-11-14T13:57:45Z
2022-01-27T22:32:14Z
663
openai/gym
5,113
Bump actions/setup-python from 4.7.0 to 5.0.0
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3a358a290a..b35a32d13a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - name: Set up Python - ...
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.7.0 to 5.0.0. <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>v5.0.0</h2> <h2>What's Changed</h2> <p>In sc...
https://api.github.com/repos/psf/requests/pulls/6599
2023-12-11T16:07:16Z
2023-12-11T16:11:07Z
2023-12-11T16:11:07Z
2023-12-11T16:11:08Z
435
psf/requests
32,146
BUG: fix reverse comparison operations for Categorical
diff --git a/doc/source/whatsnew/v0.15.1.txt b/doc/source/whatsnew/v0.15.1.txt index e96adc2bd9559..486ba9cbadd7f 100644 --- a/doc/source/whatsnew/v0.15.1.txt +++ b/doc/source/whatsnew/v0.15.1.txt @@ -186,6 +186,7 @@ Bug Fixes - Bug in selecting from a ``Categorical`` with ``.iloc`` (:issue:`8623`) - Bug in groupby-t...
This PR fixes #8658 and also adds `pd.lib.unbox_if_zerodim` that extracts values from zerodim arrays and adds detection of `pd.Period`, `datetime.date` and `datetime.time` in pd.lib.isscalar. I tried making `unbox_if_zerodim` usage more implicit but there's just too much to test when this is introduced (think every me...
https://api.github.com/repos/pandas-dev/pandas/pulls/8706
2014-11-02T07:59:54Z
2014-11-02T19:15:27Z
2014-11-02T19:15:27Z
2014-11-02T21:37:50Z
2,838
pandas-dev/pandas
45,610
Update redtube extractor (make title regex match current site)
diff --git a/youtube_dl/extractor/redtube.py b/youtube_dl/extractor/redtube.py index b1bde1e8117..deb3ad52cac 100644 --- a/youtube_dl/extractor/redtube.py +++ b/youtube_dl/extractor/redtube.py @@ -57,7 +57,7 @@ def _real_extract(self, url): if not info.get('title'): info['title'] = self._html_se...
### Before submitting a *pull request* make sure you have: - [ ] At least skimmed through [adding new extractor tutorial](https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site) and [youtube-dl coding conventions](https://github.com/ytdl-org/youtube-dl#youtube-dl-coding-conventions) sections - [x] [Sear...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/25208
2020-05-09T15:47:54Z
2020-05-19T19:11:06Z
2020-05-19T19:11:06Z
2020-05-19T19:11:06Z
250
ytdl-org/youtube-dl
49,964
[wakanim] Detect geo-restriction
diff --git a/yt_dlp/extractor/wakanim.py b/yt_dlp/extractor/wakanim.py index 22441c38ff6..a61a630e26f 100644 --- a/yt_dlp/extractor/wakanim.py +++ b/yt_dlp/extractor/wakanim.py @@ -33,12 +33,19 @@ class WakanimIE(InfoExtractor): 'url': 'https://www.wakanim.tv/de/v2/catalogue/episode/7843/sword-art-online-alici...
## 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/1429
2021-10-26T11:12:11Z
2021-10-26T16:35:20Z
2021-10-26T16:35:20Z
2021-10-26T16:35:20Z
299
yt-dlp/yt-dlp
8,203
Fix integrations with no uri (mocks)
diff --git a/localstack/services/apigateway/apigateway_listener.py b/localstack/services/apigateway/apigateway_listener.py index 6f73ecc14b611..bee8aea5e722c 100644 --- a/localstack/services/apigateway/apigateway_listener.py +++ b/localstack/services/apigateway/apigateway_listener.py @@ -302,7 +302,7 @@ def invoke_rest...
Fixes #3908. I've had some problems installing sasl on arch, so I haven't been able to reproduce this fix locally. I'd appreciate some help to validate this fix.
https://api.github.com/repos/localstack/localstack/pulls/3909
2021-04-20T23:29:00Z
2021-04-22T06:27:24Z
2021-04-22T06:27:24Z
2021-04-22T06:27:24Z
232
localstack/localstack
29,083
Point BERT pretraining tutorial to new perf tuning.
diff --git a/docs/_tutorials/bert-pretraining.md b/docs/_tutorials/bert-pretraining.md index f501f2e8088f..40ecdfc65b26 100755 --- a/docs/_tutorials/bert-pretraining.md +++ b/docs/_tutorials/bert-pretraining.md @@ -301,7 +301,9 @@ Note: generated with transformer kernel must to be loaded by the model with transfo...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/246
2020-05-29T21:38:15Z
2020-05-29T21:41:35Z
2020-05-29T21:41:34Z
2020-05-29T21:41:59Z
211
microsoft/DeepSpeed
10,624
add git-lfs support
diff --git a/README.md b/README.md index 4ff50cd23..141193eda 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,7 @@ following rules are enabled by default: * `git_fix_stash` &ndash; fixes `git stash` commands (misspelled subcommand and missing `save`); * `git_flag_after_filename` &ndash; fixes `fatal: bad flag '...
This is related to https://github.com/nvbn/thefuck/issues/1030
https://api.github.com/repos/nvbn/thefuck/pulls/1056
2020-02-24T16:43:34Z
2020-06-10T22:20:38Z
2020-06-10T22:20:38Z
2020-06-10T22:20:39Z
736
nvbn/thefuck
30,709
Corrects the solution for linux copy exercise
diff --git a/topics/linux/exercises/copy/solution.md b/topics/linux/exercises/copy/solution.md index c9d2b8c02..da3592686 100644 --- a/topics/linux/exercises/copy/solution.md +++ b/topics/linux/exercises/copy/solution.md @@ -17,9 +17,8 @@ touch /tmp/x cp x ~/ cp x y mkdir files -cp x files -cp y files +mv x files | ...
Fixes the solution of the copy exercise with regards to step 4. Originally it did not move x and y to the files directory, but instead, it copied them to files.
https://api.github.com/repos/bregman-arie/devops-exercises/pulls/10243
2023-12-03T23:04:11Z
2024-02-02T13:15:31Z
2024-02-02T13:15:31Z
2024-02-02T13:15:31Z
148
bregman-arie/devops-exercises
17,493
Update README.md to fix typo
diff --git a/README.md b/README.md index 3e0007fad4..ee3b2bf5e5 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Requests: HTTP for Humans™ **If you're interested in financially supporting Kenneth Reitz open source, consider [visiting this link](https://cash.me/$KennethReitz). Your support helps tremendously...
I noticed "Rquests" was used at the top of the readme instead of "Requests". If that was intentional then ignore this change.
https://api.github.com/repos/psf/requests/pulls/4802
2018-09-21T16:23:04Z
2018-09-21T16:27:13Z
2018-09-21T16:27:13Z
2021-09-01T00:11:56Z
189
psf/requests
32,109
DOC Check sha256 digests of tarballs in tutorial and examples before extraction
diff --git a/doc/tutorial/text_analytics/data/movie_reviews/fetch_data.py b/doc/tutorial/text_analytics/data/movie_reviews/fetch_data.py index e591aca0f241b..67def14889774 100644 --- a/doc/tutorial/text_analytics/data/movie_reviews/fetch_data.py +++ b/doc/tutorial/text_analytics/data/movie_reviews/fetch_data.py @@ -1,2...
Archives with previously lacking sha256 checks: - <del>`20Newsgroups/20news-bydate.tar.gz`</del> (update: `fetch_data.py` script deleted since actually unused) - `reuters21578-mld/reuters21578.tar.gz` - `movie-review-data/review_polarity.tar.gz` This is a security concern not to check the digests of tarballs be...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/24617
2022-10-10T09:46:57Z
2022-10-10T15:57:42Z
2022-10-10T15:57:42Z
2022-10-11T08:15:06Z
1,730
scikit-learn/scikit-learn
45,902
Added precision on the format, generation and breaking of NetNTLMv1
diff --git a/Methodology and Resources/Active Directory Attack.md b/Methodology and Resources/Active Directory Attack.md index 7e3648be5b..6c141f41ab 100644 --- a/Methodology and Resources/Active Directory Attack.md +++ b/Methodology and Resources/Active Directory Attack.md @@ -2094,9 +2094,9 @@ root@kali:~$ klist `...
Hello, I allow myself to propose some additions / clarifications concerning the format of NetNTLMv1 tokens, some technical details about their format, and the methods to break them (ShuckNT / Crack.Sh / KPA-attack, etc.). Hope this can help :)! Good day,
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/660
2023-07-25T09:35:37Z
2023-07-25T13:28:13Z
2023-07-25T13:28:13Z
2023-07-25T13:28:22Z
2,085
swisskyrepo/PayloadsAllTheThings
8,417
added gym-inventory to environments
diff --git a/docs/environments.md b/docs/environments.md index 5d2536dd92d..09451c61fd4 100644 --- a/docs/environments.md +++ b/docs/environments.md @@ -7,4 +7,11 @@ _**NOTICE**: Its possible that in time OpenAI will develop a full fledged reposi ## PGE: Parallel Game Engine PGE is a FOSS 3D engine for AI simulatio...
https://api.github.com/repos/openai/gym/pulls/355
2016-09-23T03:13:50Z
2016-09-23T04:26:41Z
2016-09-23T04:26:41Z
2016-09-23T04:26:44Z
224
openai/gym
5,128
Parameter type error
diff --git a/src/you_get/extractors/douyutv.py b/src/you_get/extractors/douyutv.py index 4bd0e14cf9..b7b15e742e 100644 --- a/src/you_get/extractors/douyutv.py +++ b/src/you_get/extractors/douyutv.py @@ -73,7 +73,7 @@ def douyutv_download(url, output_dir = '.', merge = True, info_only = False, **k print_info(site...
#you-get -du https://www.douyu.com/lpl [DEBUG] get_content: https://m.douyu.com/lpl ... Traceback (most recent call last): ... File "/usr/local/lib/python3.5/dist-packages/you_get/common.py", line 1574, in any_download m.download(url, **kwargs) File "/usr/local/lib/python3.5/dist-packages/you_get/extracto...
https://api.github.com/repos/soimort/you-get/pulls/2564
2018-02-11T17:17:02Z
2018-02-11T21:12:05Z
2018-02-11T21:12:05Z
2018-02-11T21:12:09Z
213
soimort/you-get
21,160
Update Plotly.js
diff --git a/frontend/package.json b/frontend/package.json index ac1f2cf39c28..79845486bbed 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -68,7 +68,7 @@ "node-emoji": "^1.10.0", "node-sass": "^4.14.1", "numbro": "^2.3.1", - "plotly.js": "^1.58.1", + "plotly.js": "^1.58.2", ...
🙈 followup to https://github.com/streamlit/streamlit/pull/2417 ... we usually don't patch this quickly but it appears this was a buggier release than usual.
https://api.github.com/repos/streamlit/streamlit/pulls/2444
2020-12-09T13:35:22Z
2020-12-09T17:36:09Z
2020-12-09T17:36:09Z
2021-07-24T00:36:54Z
571
streamlit/streamlit
21,767
remove prints
diff --git a/model/model_training/custom_datasets/qa_datasets.py b/model/model_training/custom_datasets/qa_datasets.py index 0c250c7727..e9a1a9f13e 100644 --- a/model/model_training/custom_datasets/qa_datasets.py +++ b/model/model_training/custom_datasets/qa_datasets.py @@ -458,7 +458,6 @@ def process_split( d...
Fix prints introduced by #2445
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/2446
2023-04-10T15:47:48Z
2023-04-11T09:14:12Z
2023-04-11T09:14:12Z
2023-04-11T09:14:13Z
281
LAION-AI/Open-Assistant
37,499
[crunchyroll:beta] follow browser api accesses more exactly
diff --git a/README.md b/README.md index 4e806e14c0a..285c0b78a0b 100644 --- a/README.md +++ b/README.md @@ -1774,7 +1774,7 @@ The following extractors use this feature: #### crunchyrollbeta * `format`: Which stream type(s) to extract. Default is `adaptive_hls` Eg: `crunchyrollbeta:format=vo_adaptive_hls` - * Po...
### Description of your *pull request* and other information Fixes #4452 Somewhat alters the usable values of the `format` extractor arg, but the values I expect might actually be in use (`adaptive_hls` and `adaptive_dash`) don't seem to change behavior. It's possible that while we're making yt-dlp follow the ...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/4555
2022-08-04T15:48:42Z
2022-08-04T18:05:59Z
2022-08-04T18:05:59Z
2022-08-04T18:14:16Z
512
yt-dlp/yt-dlp
7,737
Always add guest wifi qr code entity in AVM Fritz!Tools
diff --git a/homeassistant/components/fritz/image.py b/homeassistant/components/fritz/image.py index 597dd8ddb5390f..d14c562bd7652b 100644 --- a/homeassistant/components/fritz/image.py +++ b/homeassistant/components/fritz/image.py @@ -30,9 +30,6 @@ async def async_setup_entry( avm_wrapper.fritz_guest_wifi.get_...
<!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## 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...
https://api.github.com/repos/home-assistant/core/pulls/96435
2023-07-12T15:27:03Z
2023-07-12T18:54:49Z
2023-07-12T18:54:49Z
2023-07-14T16:02:01Z
2,329
home-assistant/core
38,974
Streamanity extractor
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index bb1e21a07ad..471caae79da 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -1346,6 +1346,7 @@ StoryFireSeriesIE, ) from .streamable import StreamableIE +from .streamanity import StreamanityIE fro...
## 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/984
2021-09-15T17:52:05Z
2021-09-16T18:15:10Z
2021-09-16T18:15:10Z
2021-09-16T18:15:10Z
784
yt-dlp/yt-dlp
7,416
Subaru: Add Impreza/Crosstrek 2020
diff --git a/docs/CARS.md b/docs/CARS.md index 9c762ee7bf5446..e4b7b3cac3c3ed 100644 --- a/docs/CARS.md +++ b/docs/CARS.md @@ -147,7 +147,7 @@ | Škoda | Scala 2020 | Driver Assistance | Stock | 0mph | 0mph | | Škoda | Superb 2015-18 | Driver A...
**Checklist** - [x] added to README - [x] test route added to [test_routes.py](https://github.com/commaai/openpilot/blob/master/selfdrive/test/test_routes.py) - [x] route with openpilot: 8bf7e79a3ce64055|2021-05-24--09-36-27 - [x] route with stock system: 8bf7e79a3ce64055|2021-05-24--09-58-54 2020+ Crosstrek and...
https://api.github.com/repos/commaai/openpilot/pulls/21011
2021-05-24T09:42:52Z
2021-12-15T23:13:32Z
2021-12-15T23:13:32Z
2022-04-07T14:00:55Z
3,991
commaai/openpilot
9,739
[peertube] Extract files also from `streamingPlaylists`
diff --git a/youtube_dl/extractor/peertube.py b/youtube_dl/extractor/peertube.py index c39d12728d4..c2ca71c71d3 100644 --- a/youtube_dl/extractor/peertube.py +++ b/youtube_dl/extractor/peertube.py @@ -450,6 +450,18 @@ class PeerTubeIE(InfoExtractor): 'tags': ['framasoft', 'peertube'], 'categor...
Another pull request in continuation of #26302. Re-requested due to DMCA take-down.
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/27728
2021-01-08T18:41:01Z
2021-01-08T20:09:39Z
2021-01-08T20:09:39Z
2021-01-09T15:09:43Z
482
ytdl-org/youtube-dl
50,302
ENH: display the original exception
diff --git a/setup.py b/setup.py index 9a92d6a6667c7..0e79dda3b5a59 100755 --- a/setup.py +++ b/setup.py @@ -3,8 +3,6 @@ # Copyright (C) 2007-2009 Cournapeau David <cournape@gmail.com> # 2010 Fabian Pedregosa <fabian.pedregosa@inria.fr> # License: 3-clause BSD -import subprocess - descr = """A set of ...
Display the original traceback when importing numpy or scipy fails in the setup.py Fixes #5905 Ping @amueller @ogrisel : is this a candidate for backport to a 0.17.1 (will we have an 0.17.1)?
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/5906
2015-11-23T07:54:20Z
2016-09-14T16:36:43Z
2016-09-14T16:36:43Z
2016-09-14T16:36:43Z
330
scikit-learn/scikit-learn
46,728
Added more ID word in common-columns.txt
diff --git a/data/txt/common-columns.txt b/data/txt/common-columns.txt index a3a52ce062c..1b2d7cbfb01 100644 --- a/data/txt/common-columns.txt +++ b/data/txt/common-columns.txt @@ -2674,6 +2674,7 @@ jeda jenis jml judul +jumlah kata_kunci kata_sandi katakunci @@ -2686,6 +2687,7 @@ kunci lahir nama nama_akun +n...
https://api.github.com/repos/sqlmapproject/sqlmap/pulls/4852
2021-10-08T06:56:19Z
2021-10-08T14:18:25Z
2021-10-08T14:18:25Z
2021-10-08T14:18:25Z
222
sqlmapproject/sqlmap
14,967
Bump @adobe/css-tools from 4.3.1 to 4.3.2 in /frontend
diff --git a/frontend/yarn.lock b/frontend/yarn.lock index e1de83f74b9f..6b7de6e5ab9d 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -26,9 +26,9 @@ tunnel "^0.0.6" "@adobe/css-tools@^4.0.1": - version "4.3.1" - resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.3.1.tgz#abfccb8c...
Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/adobe/css-tools/blob/main/History.md"><code>@​adobe/css-tools</code>'s changelog</a>.</em></p> <blockquote> <h1>4.3.2 / 2023-11-28</h1> <ul> <li>Fix re...
https://api.github.com/repos/streamlit/streamlit/pulls/7791
2023-12-01T05:18:22Z
2023-12-01T08:58:56Z
2023-12-01T08:58:56Z
2023-12-01T08:58:59Z
367
streamlit/streamlit
22,190
[Serve] Add gRPC util
diff --git a/python/ray/serve/BUILD b/python/ray/serve/BUILD index 68c057e623b2b..5cd110495c7e5 100644 --- a/python/ray/serve/BUILD +++ b/python/ray/serve/BUILD @@ -129,6 +129,14 @@ py_test( deps = [":serve_lib"], ) +py_test( + name = "test_grpc_util", + size = "small", + srcs = serve_tests_srcs, + ...
<!-- 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/38396
2023-08-14T05:09:15Z
2023-08-16T15:27:31Z
2023-08-16T15:27:31Z
2023-08-16T15:36:52Z
1,953
ray-project/ray
19,229
Update val.py `pad = 0.0 if task == 'speed' else 0.5`
diff --git a/val.py b/val.py index 6a0c95ac5ee..2cd8eba8744 100644 --- a/val.py +++ b/val.py @@ -147,8 +147,9 @@ def run(data, if not training: if device.type != 'cpu': model(torch.zeros(1, 3, imgsz, imgsz).to(device).type_as(next(model.parameters()))) # run once + pad = 0.0 if task =...
## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Improved dataloader padding configuration for speed tests in the YOLOv5 validation script. ### 📊 Key Changes - Added a conditional statement to set padding to 0.0 specifically when the task is ...
https://api.github.com/repos/ultralytics/yolov5/pulls/5121
2021-10-11T06:19:30Z
2021-10-11T06:20:43Z
2021-10-11T06:20:43Z
2024-01-19T15:10:21Z
236
ultralytics/yolov5
24,956
Add output folder icons
diff --git a/javascript/hints.js b/javascript/hints.js index 59dd770c790..96cd24d5df7 100644 --- a/javascript/hints.js +++ b/javascript/hints.js @@ -15,6 +15,7 @@ titles = { "\u267b\ufe0f": "Reuse seed from last generation, mostly useful if it was randomed", "\u{1f3a8}": "Add a random artist to the prompt.", ...
Adds icons on the first 3 tabs to directly open the corresponding images output directory.
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/1190
2022-09-27T21:03:15Z
2022-09-29T09:10:00Z
2022-09-29T09:10:00Z
2022-10-02T20:52:19Z
1,363
AUTOMATIC1111/stable-diffusion-webui
39,833
Add Language Identification API
diff --git a/README.md b/README.md index 67548cb292..031658d6ff 100644 --- a/README.md +++ b/README.md @@ -813,6 +813,7 @@ API | Description | Auth | HTTPS | CORS | | [Cloudmersive Natural Language Processing](https://www.cloudmersive.com/nlp-api) | Natural language processing and text analysis | `apiKey` | Yes | Yes ...
See #944 Thank you @BigLobsterito 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: - [ ] Your submissions are formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md) - [ ] Your additions a...
https://api.github.com/repos/public-apis/public-apis/pulls/1072
2019-10-06T11:41:30Z
2019-10-06T11:50:27Z
2019-10-06T11:50:27Z
2019-10-06T11:50:30Z
295
public-apis/public-apis
35,536
Perf
diff --git a/manimlib/animation/indication.py b/manimlib/animation/indication.py index 0c425b7f43..1ff261596e 100644 --- a/manimlib/animation/indication.py +++ b/manimlib/animation/indication.py @@ -9,6 +9,7 @@ from manimlib.animation.creation import ShowCreation from manimlib.animation.creation import ShowPartial f...
Small fix addressing why Tex/Text were slower than expected (plus one or two other minor changes)
https://api.github.com/repos/3b1b/manim/pulls/1607
2021-08-19T17:32:03Z
2021-08-19T17:33:47Z
2021-08-19T17:33:47Z
2021-08-19T17:33:51Z
1,270
3b1b/manim
18,253
TextSystem is imported correctly in paddleocr.py
diff --git a/paddleocr.py b/paddleocr.py index 166a4bd743..ce9d32deed 100644 --- a/paddleocr.py +++ b/paddleocr.py @@ -51,7 +51,7 @@ def _import_file(module_name, file_path, make_importable=False): from ppocr.utils.network import maybe_download, download_with_progressbar, is_link, confirm_model_dir_url from tools.inf...
### PR 类型 PR types <!-- One of [ New features | Bug fixes | Function optimization | Performance optimization | Breaking changes | Others ] --> ### PR 变化内容类型 PR changes <!-- One of [ Models | APIs | Docs | Others ] --> ### 描述 Description <!-- Describe what this PR does --> ### 提PR之前的检查 Check-list - [ ] 这个...
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/11847
2024-03-29T13:51:16Z
2024-04-01T06:21:32Z
2024-04-01T06:21:32Z
2024-04-01T07:17:18Z
234
PaddlePaddle/PaddleOCR
42,603
Fix - #1685 - pre-signed-url expiry after given timestamp,s3 object e…
diff --git a/localstack/services/s3/s3_listener.py b/localstack/services/s3/s3_listener.py index be212625e439c..2a86c7ef9de85 100644 --- a/localstack/services/s3/s3_listener.py +++ b/localstack/services/s3/s3_listener.py @@ -2,6 +2,8 @@ import re import logging import json +import time +from pytz import timezone im...
https://github.com/localstack/localstack/issues/1685 pre-signed-url expiry after given timestamp,s3 object expiry after timestamp
https://api.github.com/repos/localstack/localstack/pulls/2333
2020-04-21T23:07:23Z
2020-04-22T23:19:46Z
2020-04-22T23:19:46Z
2020-04-22T23:19:46Z
1,827
localstack/localstack
29,175
Make the API use FastAPI instead of Flask
diff --git a/g4f/__init__.py b/g4f/__init__.py index a2eec9e264..8a1cb3cdf4 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -115,4 +115,4 @@ def create(model : Union[Model, str], return result if stream else ''.join(result) if version_check: - check_pypi_version() \ No newline at end of file...
- Made the API ``__init__`` module use FastAPI. - Made the CLI mode compatible with the new API code. - Made the ``run`` module compatible with the new API code.
https://api.github.com/repos/xtekky/gpt4free/pulls/1213
2023-11-04T21:34:05Z
2023-11-05T18:16:12Z
2023-11-05T18:16:12Z
2023-11-13T11:40:23Z
3,912
xtekky/gpt4free
38,203
Fix bug in Hybrid Engine
diff --git a/deepspeed/runtime/hybrid_engine.py b/deepspeed/runtime/hybrid_engine.py index 0bddc6aeb9d4..46b1475cece9 100644 --- a/deepspeed/runtime/hybrid_engine.py +++ b/deepspeed/runtime/hybrid_engine.py @@ -318,7 +318,7 @@ def create_inference_module(self): self._orig_fwds_others = [] if self._c...
resolves #3454 @cmikeh2 @RezaYazdaniAminabadi
https://api.github.com/repos/microsoft/DeepSpeed/pulls/3497
2023-05-09T17:48:49Z
2023-05-12T21:40:48Z
2023-05-12T21:40:48Z
2023-05-12T21:40:54Z
167
microsoft/DeepSpeed
10,291
Support cpu tensors without direct device invocation
diff --git a/deepspeed/runtime/engine.py b/deepspeed/runtime/engine.py index c03fba2d7784..3cbc4c8414b7 100644 --- a/deepspeed/runtime/engine.py +++ b/deepspeed/runtime/engine.py @@ -120,21 +120,25 @@ def split_half_float_double_sparse(tensors): device_type = get_accelerator().device_name() - supported_types...
Motivation: Fix for reproducible issue #3837 on cpu. On cpus direct invocation of torch.cpu.tensor leads to dtype mismatch. Another way would be to have something like : ["torch.DoubleTensor" if device_type == 'cpu else '"torch.{}.DoubleTensor".format(device_type)] for all elements in the supported list , but that w...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/3842
2023-06-29T04:42:12Z
2024-01-05T15:18:53Z
2024-01-05T15:18:52Z
2024-01-05T15:18:53Z
1,160
microsoft/DeepSpeed
10,847
Added Grokking Artificial Intelligence Algorithms
diff --git a/courses.md b/courses.md index 6082c798..970f2529 100644 --- a/courses.md +++ b/courses.md @@ -36,3 +36,4 @@ The following is a list of free or paid online courses on machine learning, stat * [Math and Architectures of Deep Learning](https://www.manning.com/books/math-and-architectures-of-deep-learning) - ...
Hi, I am Branko from Manning Publications. I thought this book could be a good fit to the list. Thanks for considering it! Cheers
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/712
2020-09-01T12:40:52Z
2020-09-01T15:59:29Z
2020-09-01T15:59:29Z
2020-09-01T15:59:29Z
181
josephmisiti/awesome-machine-learning
51,807
Improving performance for PDF loader
diff --git a/ingest.py b/ingest.py index 293013846..0ca80743f 100755 --- a/ingest.py +++ b/ingest.py @@ -9,7 +9,7 @@ from langchain.document_loaders import ( CSVLoader, EverNoteLoader, - PDFMinerLoader, + PyMuPDFLoader, TextLoader, UnstructuredEmailLoader, UnstructuredEPubLoader, @@ -73,...
The PyMuPDF brings much better performance for PDF loading. https://pymupdf.readthedocs.io/en/latest/about.html#performance Here is a comparison article: https://medium.com/social-impact-analytics/comparing-4-methods-for-pdf-text-extraction-in-python-fd34531034f It's about **5x-30x faster** for text extraction....
https://api.github.com/repos/zylon-ai/private-gpt/pulls/660
2023-06-07T15:57:56Z
2023-06-11T17:10:09Z
2023-06-11T17:10:09Z
2023-06-11T17:10:09Z
360
zylon-ai/private-gpt
38,490
Backport PR #27777 on branch 0.25.x (Avoid calling S3File.s3)
diff --git a/doc/source/whatsnew/v0.25.1.rst b/doc/source/whatsnew/v0.25.1.rst index 637ac5c9c8bd1..01141122dde0a 100644 --- a/doc/source/whatsnew/v0.25.1.rst +++ b/doc/source/whatsnew/v0.25.1.rst @@ -104,7 +104,7 @@ MultiIndex I/O ^^^ -- +- Avoid calling ``S3File.s3`` when reading parquet, as this was removed in s...
Backport PR #27777: Avoid calling S3File.s3
https://api.github.com/repos/pandas-dev/pandas/pulls/27877
2019-08-12T19:11:06Z
2019-08-13T07:54:42Z
2019-08-13T07:54:42Z
2019-08-13T07:54:42Z
939
pandas-dev/pandas
44,779
add some badges to readme
diff --git a/README.md b/README.md index d612940ac3..a443a5d7a7 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,16 @@ <img width="auto" height="50px" src="https://github.com/LAION-AI/Open-Assistant/blob/main/assets/logo_crop.png"/> </h1> +<div align="center"> + +<a href="">![GitHub Repo stars](https://img.shiel...
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/442
2023-01-06T11:38:36Z
2023-01-06T11:51:33Z
2023-01-06T11:51:33Z
2023-01-06T11:51:40Z
314
LAION-AI/Open-Assistant
37,334
Update Books.md
diff --git a/books.md b/books.md index c869b856..c3acb539 100644 --- a/books.md +++ b/books.md @@ -1,5 +1,5 @@ The following is a list of free, open source books on machine learning, statistics, data-mining, etc. - +## List is Aweosome ## Machine-Learning / Data Mining * [The Hundred-Page Machine Learning Book](ht...
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/590
2019-02-17T14:21:26Z
2019-02-24T00:06:52Z
2019-02-24T00:06:52Z
2019-02-24T00:06:57Z
106
josephmisiti/awesome-machine-learning
51,786
Deprecated dockerface
diff --git a/README.md b/README.md index 99813381..9983e334 100644 --- a/README.md +++ b/README.md @@ -985,7 +985,7 @@ be * [OpenFace](https://cmusatyalab.github.io/openface/) - Free and open source face recognition with deep neural networks. * [PCV](https://github.com/jesolem/PCV) - Open source Python module for com...
No commits during 3 years. And looks like it is not so popular repository.
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/819
2021-10-04T14:59:32Z
2021-10-04T16:37:29Z
2021-10-04T16:37:29Z
2021-10-04T16:37:29Z
425
josephmisiti/awesome-machine-learning
51,829
build(deps): bump ccxt from 4.2.5 to 4.2.7
diff --git a/requirements_with_versions.txt b/requirements_with_versions.txt index e0fff1199a..4bd804a1be 100644 --- a/requirements_with_versions.txt +++ b/requirements_with_versions.txt @@ -81,7 +81,7 @@ Unidecode==1.3.7 Ball==0.2.9 pynput==1.7.6 gTTS==2.5.0 -ccxt==4.2.5 +ccxt==4.2.7 fitz==0.0.1.dev2 fastapi==0.1...
Bumps [ccxt](https://github.com/ccxt/ccxt) from 4.2.5 to 4.2.7. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ccxt/ccxt/commit/1ef3a8a91d7cf7ff9901ce03b52e82ca68659968"><code>1ef3a8a</code></a> 4.2.7</li> <li><a href="https://github.com/ccxt/ccxt/commit/fb7ac168b91f5b9ebfb8b4b67480b887a74c16...
https://api.github.com/repos/geekcomputers/Python/pulls/2076
2024-01-05T18:47:28Z
2024-01-06T10:36:57Z
2024-01-06T10:36:57Z
2024-01-06T10:37:05Z
147
geekcomputers/Python
31,088
remove russia in www.chess.com
diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index fea689746..fb5332b21 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -300,8 +300,8 @@ "Chess": { "errorMsg": "Missing page... somebody made a wrong move.", "errorType": "message", - "url": "htt...
make it to english instead of russia
https://api.github.com/repos/sherlock-project/sherlock/pulls/731
2020-08-19T21:06:34Z
2020-08-20T04:17:57Z
2020-08-20T04:17:57Z
2020-08-20T04:17:58Z
181
sherlock-project/sherlock
36,597
Bump onvif-zeep-async to 1.2.3
diff --git a/homeassistant/components/onvif/manifest.json b/homeassistant/components/onvif/manifest.json index 4b998bdd6cd0ff..ef4497fa284e9b 100644 --- a/homeassistant/components/onvif/manifest.json +++ b/homeassistant/components/onvif/manifest.json @@ -7,5 +7,5 @@ "documentation": "https://www.home-assistant.io/in...
~~needs https://github.com/hunterjm/python-onvif-zeep-async/pull/11 https://github.com/hunterjm/python-onvif-zeep-async/pull/12~~ Specifically not tagged for a patch release as the changes in https://github.com/home-assistant/core/pull/90216 should go out first. This should go into beta though. ## Proposed chang...
https://api.github.com/repos/home-assistant/core/pulls/90382
2023-03-27T20:57:57Z
2023-03-28T23:54:34Z
2023-03-28T23:54:34Z
2023-03-30T00:05:39Z
482
home-assistant/core
39,236
Adding Binary to Decimal Program
diff --git a/Binary_to_Decimal.py b/Binary_to_Decimal.py new file mode 100644 index 0000000000..345b401f51 --- /dev/null +++ b/Binary_to_Decimal.py @@ -0,0 +1,20 @@ +#Program to convert binary to decimal + +def binaryToDecimal(binary): + """ + >>> binaryToDecimal(111110000) + 496 + >>> binaryToDecimal(10100) + 20 + >>...
Program to convert binary to decimal
https://api.github.com/repos/geekcomputers/Python/pulls/1206
2020-10-26T09:54:47Z
2020-10-29T15:55:14Z
2020-10-29T15:55:13Z
2020-10-29T15:55:14Z
209
geekcomputers/Python
31,754
Update models.py
diff --git a/keras/models.py b/keras/models.py index f2653ad4ea6..2f48f1d209a 100644 --- a/keras/models.py +++ b/keras/models.py @@ -453,8 +453,8 @@ def compile(self, optimizer, loss, self._train = K.function(train_ins, [train_loss], updates=updates) self._train_with_acc = K.function(train_ins, [train...
I suggest model evaluation and test based on the _test functions to be also stateful (as _predict) for stateful recurrent networks.
https://api.github.com/repos/keras-team/keras/pulls/1411
2016-01-06T12:46:58Z
2016-01-06T18:55:16Z
2016-01-06T18:55:15Z
2016-01-06T18:55:16Z
355
keras-team/keras
47,642
Add intel gaudi to contributed HW in README
diff --git a/README.md b/README.md index 3ca332b80610..434a0dd53586 100755 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ DeepSpeed has been integrated with several different popular open-source DL fram | NVIDIA | [![nv-torch110-p40](https://github.com/microsoft/DeepSpeed/actions/workflows/nv-torch110-p40.yml/bad...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/5300
2024-03-20T08:30:48Z
2024-03-20T16:02:29Z
2024-03-20T16:02:29Z
2024-03-20T16:02:29Z
1,363
microsoft/DeepSpeed
10,133
Update Styler documentation for escaping HTML
diff --git a/doc/source/user_guide/style.ipynb b/doc/source/user_guide/style.ipynb index 2d4b0f6a7545e..f831723f44931 100644 --- a/doc/source/user_guide/style.ipynb +++ b/doc/source/user_guide/style.ipynb @@ -1621,7 +1621,9 @@ "source": [ "### HTML Escaping\n", "\n", - "Suppose you have to display HTML...
Adds a note to the docs about `Styler` and `escape` on untrusted HTML input.
https://api.github.com/repos/pandas-dev/pandas/pulls/57365
2024-02-11T16:38:59Z
2024-02-21T17:59:55Z
2024-02-21T17:59:55Z
2024-02-21T18:00:02Z
600
pandas-dev/pandas
45,562
Bump actions/checkout from 3 to 4
diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index b3e1f0b902..a1804597d7 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/check...
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v4.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update default runtime ...
https://api.github.com/repos/psf/black/pulls/3883
2023-09-11T06:56:46Z
2023-09-11T16:34:36Z
2023-09-11T16:34:36Z
2023-09-11T16:34:37Z
1,726
psf/black
24,413
Fixed typo in docs/topics/http/urls.txt.
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 4644ddea2b37e..4ee7a4e9ba713 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -736,7 +736,7 @@ the fully qualified name into parts and then tries the following lookup: setting the current application on the :attr:`requ...
https://api.github.com/repos/django/django/pulls/10224
2018-07-24T21:24:54Z
2018-07-24T22:35:59Z
2018-07-24T22:35:59Z
2018-07-24T22:35:59Z
194
django/django
50,761
Denormalization layer
diff --git a/keras/layers/preprocessing/normalization.py b/keras/layers/preprocessing/normalization.py index be052a59ec5..ef2252d7328 100644 --- a/keras/layers/preprocessing/normalization.py +++ b/keras/layers/preprocessing/normalization.py @@ -61,6 +61,7 @@ class Normalization(base_preprocessing_layer.PreprocessingLay...
@gadagashwini Solved #16284
https://api.github.com/repos/keras-team/keras/pulls/16350
2022-04-02T11:06:21Z
2022-04-08T19:06:45Z
2022-04-08T19:06:45Z
2022-04-09T08:13:27Z
1,201
keras-team/keras
47,710
[doc] add ColossalChat
diff --git a/README.md b/README.md index 3098d72b4591..77c3471d9d25 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ <li> <a href="#Colossal-AI-in-the-Real-World">Colossal-AI for Real World Applications</a> <ul> - <li><a href="#ChatGPT">ChatGPT: Low-cost ChatGPT Equivalent Implementation Process...
## 📌 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/3297
2023-03-28T18:28:53Z
2023-03-28T18:35:10Z
2023-03-28T18:35:10Z
2023-03-28T18:35:15Z
1,621
hpcaitech/ColossalAI
11,707
Add Hong Kong Observatory API
diff --git a/README.md b/README.md index fe6625dc6d..7ec9ae2763 100644 --- a/README.md +++ b/README.md @@ -1124,6 +1124,7 @@ API | Description | Auth | HTTPS | CORS | | [AviationWeather](https://www.aviationweather.gov/dataserver) | NOAA aviation weather forecasts and observations | No | Yes | Unknown | | [ColorfulCl...
<!-- Thank you for taking the time to work on a Pull Request for this project! --> <!-- To ensure your PR is dealt with swiftly please check the following: --> - [x] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md) - [x] My addition is ordered alphabetically - [x]...
https://api.github.com/repos/public-apis/public-apis/pulls/1993
2021-08-26T08:53:49Z
2021-09-01T05:53:54Z
2021-09-01T05:53:54Z
2021-09-02T13:09:14Z
288
public-apis/public-apis
35,550
docs: add certbot-dns-azure third-party plugin
diff --git a/certbot/docs/using.rst b/certbot/docs/using.rst index e38725ca373..cc061b62232 100644 --- a/certbot/docs/using.rst +++ b/certbot/docs/using.rst @@ -284,6 +284,7 @@ dns-ispconfig_ Y N DNS Authentication using ISPConfig as DNS server dns-clouddns_ Y N DNS Authentication using CloudDNS A...
https://github.com/certbot/certbot/pull/8727#issuecomment-815607549
https://api.github.com/repos/certbot/certbot/pulls/8796
2021-04-20T22:09:05Z
2021-04-22T19:38:18Z
2021-04-22T19:38:18Z
2021-04-22T19:38:19Z
331
certbot/certbot
1,794
gh-111881: Import doctest lazily in libregrtest
diff --git a/Lib/test/libregrtest/single.py b/Lib/test/libregrtest/single.py index ad75ef54a8c3f8..5c7bc7d40fb394 100644 --- a/Lib/test/libregrtest/single.py +++ b/Lib/test/libregrtest/single.py @@ -1,4 +1,3 @@ -import doctest import faulthandler import gc import importlib @@ -99,14 +98,18 @@ def regrtest_runner(res...
In most cases, doctest is not needed. So don't always import it at startup. <!-- 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 refer...
https://api.github.com/repos/python/cpython/pulls/111884
2023-11-09T13:57:37Z
2023-11-09T15:00:10Z
2023-11-09T15:00:10Z
2023-11-09T15:00:33Z
320
python/cpython
4,164
Add google Fonts
diff --git a/README.md b/README.md index ea63e30dc4..5028a69bea 100644 --- a/README.md +++ b/README.md @@ -448,6 +448,7 @@ API | Description | Auth | HTTPS | CORS | | [Gitter](https://developer.gitter.im/docs/welcome) | Chat for Developers | `OAuth` | Yes | Unknown | | [Glitterly](https://developers.glitterly.app) | ...
<!-- Thank you for taking the time to work on a Pull Request for this project! --> <!-- To ensure your PR is dealt with swiftly please check the following: --> - [x] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md) - [x] My addition is ordered alphabetically - [x]...
https://api.github.com/repos/public-apis/public-apis/pulls/2576
2021-10-16T13:29:59Z
2021-10-25T21:14:41Z
2021-10-25T21:14:41Z
2021-10-25T21:14:41Z
301
public-apis/public-apis
35,735
Add link to Black Playground
diff --git a/README.md b/README.md index 61cb88ae62..781890d69a 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ content instead. *Black* makes code review faster by producing the smallest diffs possible. +Try it out now using the [Black Playground](https://black.now.sh). + --- *Contents:* **[Installati...
Open to changing copy or placement.
https://api.github.com/repos/psf/black/pulls/437
2018-08-07T14:27:37Z
2018-08-17T15:36:58Z
2018-08-17T15:36:58Z
2018-08-17T15:37:01Z
339
psf/black
24,130
remove unnecessary space
diff --git a/docs/templates/plugin.rst.j2 b/docs/templates/plugin.rst.j2 index 1c63669f2db318..9514047aa5a2f5 100644 --- a/docs/templates/plugin.rst.j2 +++ b/docs/templates/plugin.rst.j2 @@ -162,7 +162,7 @@ Parameters {% if 'ini' in value %} <div> ini entries: ...
##### SUMMARY <!--- Describe the change below, including rationale and design decisions --> I saw a unnecessary space on each entries like `[paramiko_connection ]` in the docs <!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue --> ##### ISSUE TYPE <!--- Pick one below and delete the rest --> ...
https://api.github.com/repos/ansible/ansible/pulls/46462
2018-10-04T00:33:34Z
2018-10-04T00:47:32Z
2018-10-04T00:47:32Z
2019-07-22T16:50:33Z
181
ansible/ansible
49,062
Fix chart studio link in `st.plotly_chart` docstring
diff --git a/lib/streamlit/elements/plotly_chart.py b/lib/streamlit/elements/plotly_chart.py index b6056484ba50..b7efbbdfd71b 100644 --- a/lib/streamlit/elements/plotly_chart.py +++ b/lib/streamlit/elements/plotly_chart.py @@ -95,7 +95,7 @@ def plotly_chart( Use 'streamlit' to insert the plot and all its d...
## 📚 Context The `st.plotly_chart` docstring contains a [dead link](https://plotly.com/chart-studio/) to Plotly Chart Studio. - What kind of change does this PR introduce? - [x] Other, please describe: Doc improvement request ## 🧠 Description of Changes - Replaces the dead link in the plotly chart do...
https://api.github.com/repos/streamlit/streamlit/pulls/5017
2022-07-22T06:13:19Z
2022-07-22T14:30:28Z
2022-07-22T14:30:28Z
2023-05-26T23:34:03Z
194
streamlit/streamlit
21,848
Add gym-derk to environments
diff --git a/docs/environments.md b/docs/environments.md index 7aaeeed66d2..d647435643f 100644 --- a/docs/environments.md +++ b/docs/environments.md @@ -304,6 +304,12 @@ A simple environment using [PyBullet](http://github.com/bulletphysics/bullet3) t Learn more here: https://github.com/JacopoPan/gym-pybullet-drones ...
Hi, I'm the author of [Derk's Gym](https://gym.derkgame.com), which I implemented to be as compatible as possible with OpenAI gym. It's a multi-agent environment though, and as far as I can tell there's no clear consensus on how to handle that. I tried to model the API after the multiagent-particles-env. Would al...
https://api.github.com/repos/openai/gym/pulls/2044
2020-09-05T06:54:22Z
2020-09-25T23:14:29Z
2020-09-25T23:14:29Z
2020-09-26T10:16:26Z
252
openai/gym
5,221
Fix #1856
diff --git a/src/you_get/extractors/youku.py b/src/you_get/extractors/youku.py index ff23e70652..c3ad67eb0e 100644 --- a/src/you_get/extractors/youku.py +++ b/src/you_get/extractors/youku.py @@ -53,18 +53,14 @@ def trans_e(a, c): return result - def generate_ep(self, no, streamfileids, sid, token): - ...
It seems that the Youku's issue is that they put their fileids into corresponding segs, so I edited `generate_ep`. It needs more test before merge.
https://api.github.com/repos/soimort/you-get/pulls/1857
2017-04-15T16:15:20Z
2017-04-16T01:08:24Z
2017-04-16T01:08:24Z
2017-04-16T01:08:24Z
768
soimort/you-get
20,944
[docstring] misc arg doc corrections
diff --git a/src/transformers/configuration_bart.py b/src/transformers/configuration_bart.py index 3a28dd9e3726a..f36f877a29eb7 100644 --- a/src/transformers/configuration_bart.py +++ b/src/transformers/configuration_bart.py @@ -65,7 +65,7 @@ Typically set this to something large just in case (e.g., 512 or...
- fix docstring s/int/bool/ - correct arg description - fix num_labels to match reality
https://api.github.com/repos/huggingface/transformers/pulls/6932
2020-09-03T22:07:34Z
2020-09-04T14:09:43Z
2020-09-04T14:09:43Z
2020-09-04T20:33:03Z
424
huggingface/transformers
12,067
simplify URLFile
diff --git a/tools/lib/url_file.py b/tools/lib/url_file.py index be9c815c939014..77ed06322649c0 100644 --- a/tools/lib/url_file.py +++ b/tools/lib/url_file.py @@ -1,12 +1,10 @@ import logging import os +import socket import time -import threading from hashlib import sha256 -from urllib3 import PoolManager +from url...
* turn on keep alive in the recommended way * use built-in urllib3 retry functionality * `os.register_at_fork()` is a simpler way to replace the connection pool after forking
https://api.github.com/repos/commaai/openpilot/pulls/31365
2024-02-08T03:41:30Z
2024-02-08T18:24:45Z
2024-02-08T18:24:45Z
2024-02-08T18:24:46Z
986
commaai/openpilot
9,696
Removed old import aliases.
diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py index e4b010a4b228a..e90946fa161d3 100644 --- a/django/core/servers/basehttp.py +++ b/django/core/servers/basehttp.py @@ -12,7 +12,6 @@ import socket import sys from wsgiref import simple_server -from wsgiref.util import FileWrapper # N...
https://api.github.com/repos/django/django/pulls/4067
2015-02-05T23:43:33Z
2015-02-06T00:54:23Z
2015-02-06T00:54:26Z
2015-02-06T00:54:26Z
779
django/django
50,887
meta: Add deprecation warning for js globals in custom plugins
diff --git a/CHANGES b/CHANGES index 58ec87bfa3b73..7460167a26b77 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +Unreleased +---------- + +### Deprecation Warning + +There will be a future change to where the frontend bundle will be loaded asynchronously. This will be a breaking change that can affect custom plug...
This adds a breaking change notice to our changelog regarding custom plugins: The frontend bundle will be loaded asynchronously. This is a breaking change that can affect custom plugins that access certain globals in the django template. Please see https://forum.sentry.io/t/breaking-frontend-changes-for-custom-plugins...
https://api.github.com/repos/getsentry/sentry/pulls/26425
2021-06-07T17:24:38Z
2021-06-08T15:07:27Z
2021-06-08T15:07:27Z
2021-06-24T00:01:18Z
146
getsentry/sentry
44,176
SpiderMW doc typo: SWP request, response
diff --git a/docs/topics/spider-middleware.rst b/docs/topics/spider-middleware.rst index 05ad930a9f1..fc7cf734a19 100644 --- a/docs/topics/spider-middleware.rst +++ b/docs/topics/spider-middleware.rst @@ -5,8 +5,8 @@ Spider Middleware ================= The spider middleware is a framework of hooks into Scrapy's spi...
See word-diff: https://github.com/Digenis/scrapy/commit/show/4335420f40cbd4326ea939df755d98bf0f6fdd09/17a393a#diff-17a393aa4b57b33782da9b32c3422e73
https://api.github.com/repos/scrapy/scrapy/pulls/627
2014-03-06T14:18:10Z
2014-03-07T07:41:39Z
2014-03-07T07:41:39Z
2014-06-23T22:42:11Z
185
scrapy/scrapy
34,801
🌐 Fix typo in Chinese translation for `docs/zh/docs/benchmarks.md`
diff --git a/docs/zh/docs/benchmarks.md b/docs/zh/docs/benchmarks.md index 8991c72cd9b4b..71e8d483822ac 100644 --- a/docs/zh/docs/benchmarks.md +++ b/docs/zh/docs/benchmarks.md @@ -1,6 +1,6 @@ # 基准测试 -第三方机构 TechEmpower 的基准测试表明在 Uvicorn 下运行的 **FastAPI** 应用程序是 <a href="https://www.techempower.com/benchmarks/#section=t...
fix typo in `docs/zh/docs/benchmarks.md` line 3 `仅次与` to `仅次于` and; fix typo in `docs/zh/docs/index.md` line31 `比肩` to `并肩`
https://api.github.com/repos/tiangolo/fastapi/pulls/4269
2021-12-11T04:04:40Z
2023-01-07T14:33:29Z
2023-01-07T14:33:29Z
2023-01-07T14:33:30Z
600
tiangolo/fastapi
22,647
Fixed #30361 -- Increased the default timeout of watchman client to 5 seconds and made it customizable.
diff --git a/AUTHORS b/AUTHORS index 62268ff103edf..a27fb7b6d2d60 100644 --- a/AUTHORS +++ b/AUTHORS @@ -364,6 +364,7 @@ answer newbie questions, and generally made Django that much better: Jaap Roes <jaap.roes@gmail.com> Jack Moffitt <https://metajack.im/> Jacob Burch <jacobburch@gmail.com> + Jacob G...
https://api.github.com/repos/django/django/pulls/11263
2019-04-20T19:21:50Z
2019-04-26T11:35:53Z
2019-04-26T11:35:53Z
2019-04-26T11:35:53Z
1,150
django/django
51,059
Update supported models
diff --git a/README.md b/README.md index bfd7f8fe87..a600271628 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ An open platform for training, serving, and evaluating large language model base ## Contents - [Install](#install) -- [Vicuna Weights](#vicuna-weights) +- [Model Weights](#model-weights) - [Infe...
https://api.github.com/repos/lm-sys/FastChat/pulls/640
2023-04-29T11:48:28Z
2023-04-29T12:04:24Z
2023-04-29T12:04:24Z
2023-04-29T12:55:46Z
3,692
lm-sys/FastChat
41,663
Fix incorrect LLAMA_HUB_CONTENTS_URL
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1687342dea658..6ccad3293c789 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ ### Bug Fixes / Nits +- Fix bug in `download_utils.py` with pointing to wrong repo (#9215) - Use `azure_deployment` kwarg in `AzureOpenAILLM` (#9174) - Fix similarity score r...
# Description This PR fixes a bug that I introduced in `download_utils.py` when developing `LlamaDatasets`. I forgot to point the `LLAMA_HUB_URL` back to the correct branch, namely `main`. Fixes # (issue) ## Type of Change Please delete options that are not relevant. - [x] Bug fix (non-breaking change wh...
https://api.github.com/repos/run-llama/llama_index/pulls/9215
2023-11-29T17:16:22Z
2023-11-29T17:22:05Z
2023-11-29T17:22:05Z
2023-11-29T17:22:06Z
298
run-llama/llama_index
6,297
clean up graph search
diff --git a/graph_search.py b/graph_search.py index e76d2e39..e13fafa8 100644 --- a/graph_search.py +++ b/graph_search.py @@ -11,53 +11,39 @@ def __init__(self, graph): self.graph = graph def find_path(self, start, end, path=None): - self.start = start - self.end = end - self.path ...
https://api.github.com/repos/faif/python-patterns/pulls/152
2016-08-22T20:52:19Z
2016-08-23T17:31:09Z
2016-08-23T17:31:09Z
2016-08-23T17:31:09Z
667
faif/python-patterns
33,531
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 dee62f47b2bacc..ebe5d07f1ab3d8 100644 --- a/docs/docsite/rst/dev_guide/developing_api.rst +++ b/docs/docsite/rst/dev_guide/developing_api.rst @@ -27,6 +27,7 @@ This example is a simple demonstration that sho...
##### SUMMARY Fixes #17716 and #36110 ##### ISSUE TYPE - Docs Pull Request ##### COMPONENT NAME - API ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes below --> ansible 2.4.2.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/ho...
https://api.github.com/repos/ansible/ansible/pulls/37108
2018-03-07T10:14:44Z
2018-03-08T10:48:48Z
2018-03-08T10:48:48Z
2019-04-27T00:20:54Z
354
ansible/ansible
48,957
Update README.md
diff --git a/AWS Amazon Bucket S3/README.md b/AWS Amazon Bucket S3/README.md index 97b1fd6210..5abe5f91c6 100644 --- a/AWS Amazon Bucket S3/README.md +++ b/AWS Amazon Bucket S3/README.md @@ -52,6 +52,7 @@ By default the name of Amazon Bucket are like http://s3.amazonaws.com/[bucket_na http://s3.amazonaws.com/[bucket...
Find open buckets: https://buckets.grayhatwarfare.com/
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/462
2021-11-23T17:05:58Z
2022-04-18T19:02:50Z
2022-04-18T19:02:50Z
2022-04-18T19:02:51Z
153
swisskyrepo/PayloadsAllTheThings
8,449
Add GunPolicy.org API
diff --git a/README.md b/README.md index c1457e4f9a..9d94c0b162 100644 --- a/README.md +++ b/README.md @@ -845,6 +845,7 @@ API | Description | Auth | HTTPS | CORS | | [Federal Register](https://www.federalregister.gov/reader-aids/developer-resources) | The Daily Journal of the United States Government | No | Yes | Unk...
<!-- Thank you for taking the time to work on a Pull Request for this project! --> <!-- To ensure your PR is dealt with swiftly please check the following: --> - [X] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md) - [X] My addition is ordered alphabetically - [X]...
https://api.github.com/repos/public-apis/public-apis/pulls/2696
2021-10-24T21:09:54Z
2021-10-27T22:44:42Z
2021-10-27T22:44:42Z
2021-10-27T22:44:42Z
304
public-apis/public-apis
35,871
[Snyk] Security upgrade werkzeug from 1.0.1 to 2.2.3
diff --git a/utils/google_app_engine/additional_requirements.txt b/utils/google_app_engine/additional_requirements.txt index b6b496feaa7..d5b76758c87 100644 --- a/utils/google_app_engine/additional_requirements.txt +++ b/utils/google_app_engine/additional_requirements.txt @@ -2,3 +2,4 @@ pip==21.1 Flask==1.0.2 gunic...
<h3>Snyk has created this PR to fix one or more vulnerable packages in the `pip` dependencies of this project.</h3> #### Changes included in this PR - Changes to the following files to upgrade the vulnerable dependencies to a fixed version: - utils/google_app_engine/additional_requirements.txt <details> <summ...
https://api.github.com/repos/ultralytics/yolov5/pulls/10995
2023-02-16T08:44:37Z
2023-02-16T17:08:13Z
2023-02-16T17:08:13Z
2024-01-19T02:50:50Z
122
ultralytics/yolov5
25,544
Bump actions/setup-python from 4 to 5 in /.github/workflows
diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index b80a3a31c0a..aed7530e36d 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -22,7 +22,7 @@ jobs: model: [ yolov5n ] steps: - uses: actions/checkout@v4 - - uses: actions/s...
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. <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>v5.0.0</h2> <h2>What's Changed</h2> <p>In scope of t...
https://api.github.com/repos/ultralytics/yolov5/pulls/12493
2023-12-11T04:32:26Z
2023-12-11T12:47:09Z
2023-12-11T12:47:09Z
2024-01-19T00:53:55Z
375
ultralytics/yolov5
25,634
Adding zoomit.ir Site
diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index bfb1333db..543d3e48c 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2260,5 +2260,13 @@ "urlMain": "https://uid.me/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" ...
Adding zoomit.ir site with 2 commit 1. Add analysis site to data.json file 2. Update msg error and type
https://api.github.com/repos/sherlock-project/sherlock/pulls/1062
2021-05-11T11:56:38Z
2021-10-27T18:16:43Z
2021-10-27T18:16:43Z
2021-10-27T18:16:43Z
207
sherlock-project/sherlock
36,293
fix incorrect cpds
diff --git a/fooocus_extras/preprocessors.py b/fooocus_extras/preprocessors.py index ce31a7aff..b19a7cba9 100644 --- a/fooocus_extras/preprocessors.py +++ b/fooocus_extras/preprocessors.py @@ -37,6 +37,20 @@ def cpds(x): # See http://www.cse.cuhk.edu.hk/leojia/projects/color2gray/index.html # See https://docs...
https://api.github.com/repos/lllyasviel/Fooocus/pulls/589
2023-10-09T00:43:17Z
2023-10-09T00:43:23Z
2023-10-09T00:43:23Z
2023-10-09T00:43:27Z
368
lllyasviel/Fooocus
7,094
🌐 Fix Korean translation for `docs/ko/docs/index.md`
diff --git a/docs/ko/docs/index.md b/docs/ko/docs/index.md index d3d5d4e84008c..09f368ce96b82 100644 --- a/docs/ko/docs/index.md +++ b/docs/ko/docs/index.md @@ -386,7 +386,7 @@ item: Item --- -우리는 그저 수박 겉핡기만 했을 뿐인데 여러분은 벌써 어떻게 작동하는지 알고 있습니다. +우리는 그저 수박 겉 핥기만 했을 뿐인데 여러분은 벌써 어떻게 작동하는지 알고 있습니다. 다음 줄을 바꿔보십시오:
This modification corrects the spelling of '수박 겉핡기' to '수박 겉 핥기' in the Korean documentation. It enhances clarity and aligns with the standard linguistic practices.
https://api.github.com/repos/tiangolo/fastapi/pulls/11296
2024-03-15T06:21:37Z
2024-03-18T16:26:07Z
2024-03-18T16:26:07Z
2024-03-18T16:26:58Z
145
tiangolo/fastapi
22,946
Add support for Ollama LLM
diff --git a/fern/docs/pages/manual/llms.mdx b/fern/docs/pages/manual/llms.mdx index 059fb594e..7445bff19 100644 --- a/fern/docs/pages/manual/llms.mdx +++ b/fern/docs/pages/manual/llms.mdx @@ -102,3 +102,33 @@ or When the server is started it will print a log *Application startup complete*. Navigate to http://local...
Allow using Ollama as the LLM
https://api.github.com/repos/zylon-ai/private-gpt/pulls/1526
2024-01-21T15:05:35Z
2024-02-09T14:50:50Z
2024-02-09T14:50:50Z
2024-02-14T22:51:10Z
1,044
zylon-ai/private-gpt
38,493
Created tic_tak_toe.py
diff --git a/tic_tak_toe.py b/tic_tak_toe.py new file mode 100644 index 0000000000..2dec4034ed --- /dev/null +++ b/tic_tak_toe.py @@ -0,0 +1,128 @@ +import itertools +from colorama import Fore, Back, Style, init + +init() + +def win(current_game): + + def all_same(l): + if l.count(l[0])==len(l) and l[0]!=0: +...
a game tic_tak_toe made using python
https://api.github.com/repos/geekcomputers/Python/pulls/534
2019-10-01T05:23:32Z
2019-10-01T10:49:58Z
2019-10-01T10:49:58Z
2019-10-01T10:49:58Z
932
geekcomputers/Python
31,267
Fixed #26916 -- Fixed prefetch_related when using a cached_property as to_attr.
diff --git a/django/db/models/query.py b/django/db/models/query.py index cff7135ef6e8e..05f6ed370d6df 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -25,7 +25,7 @@ from django.db.models.sql.constants import CURSOR from django.utils import six, timezone from django.utils.deprecation import ...
Thanks Trac alias karyon for the report.
https://api.github.com/repos/django/django/pulls/6936
2016-07-19T18:57:29Z
2016-07-19T20:06:52Z
2016-07-19T20:06:52Z
2016-07-19T20:06:55Z
716
django/django
51,598
Implement Perp-Neg
diff --git a/comfy/samplers.py b/comfy/samplers.py index 39bc3774a4..35c9ccf059 100644 --- a/comfy/samplers.py +++ b/comfy/samplers.py @@ -251,7 +251,8 @@ def sampling_function(model, x, timestep, uncond, cond, cond_scale, model_option cond_pred, uncond_pred = calc_cond_uncond_batch(model, cond, uncond_, x, ...
Implement Perp-Neg as a sampler_cfg_function patch
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2303
2023-12-15T19:01:50Z
2023-12-15T19:54:08Z
2023-12-15T19:54:08Z
2023-12-15T19:54:08Z
956
comfyanonymous/ComfyUI
17,929
fix small typo
diff --git a/env_check.py b/env_check.py index 406f42e48d..c6407432d6 100644 --- a/env_check.py +++ b/env_check.py @@ -15,7 +15,7 @@ conffilename = os.path.join(confdir, conffile) # Set the variable conffilename by joining confdir and conffile together for env_check in open(conffilename): # Open the con...
fix one typo (from 'itsself' to 'itself')
https://api.github.com/repos/geekcomputers/Python/pulls/199
2017-07-14T11:08:40Z
2017-07-15T13:43:46Z
2017-07-15T13:43:46Z
2017-07-15T13:44:11Z
212
geekcomputers/Python
31,869
Refactor image preprocessing iterators to subclass Sequence.
diff --git a/examples/cifar10_cnn.py b/examples/cifar10_cnn.py index e3b4d722621..a78c5b47169 100644 --- a/examples/cifar10_cnn.py +++ b/examples/cifar10_cnn.py @@ -105,7 +105,8 @@ batch_size=batch_size), steps_per_epoch=x_train.shape[0] // batch_size, ...
CC @Dref360
https://api.github.com/repos/keras-team/keras/pulls/7853
2017-09-08T20:23:25Z
2017-09-08T22:47:00Z
2017-09-08T22:47:00Z
2017-12-25T09:12:07Z
3,731
keras-team/keras
47,604
cli-help: fix spelling
diff --git a/docs/cli-help.txt b/docs/cli-help.txt index e5f1fdcb47e..749983d0e89 100644 --- a/docs/cli-help.txt +++ b/docs/cli-help.txt @@ -147,7 +147,7 @@ security: HTTPS for the newly authenticated vhost. (default: None) --hsts Add the Strict-Transp...
https://api.github.com/repos/certbot/certbot/pulls/3207
2016-06-23T22:24:59Z
2016-06-24T00:09:11Z
2016-06-24T00:09:11Z
2016-06-24T00:10:22Z
154
certbot/certbot
2,418
Add error message to account registration error
diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md index 3dd1a9e2651..4258ac58087 100644 --- a/certbot/CHANGELOG.md +++ b/certbot/CHANGELOG.md @@ -22,6 +22,9 @@ Certbot adheres to [Semantic Versioning](https://semver.org/). agree with a non-existent Terms of Service ("None"). This bug is now fixed, so that ...
Fixes #9231 I've opted to have the first character of the error message to be lower case, as it's the first character after a colon. For me personally, that has to be lower case instead of upper case.
https://api.github.com/repos/certbot/certbot/pulls/9233
2022-03-12T21:38:13Z
2022-03-30T20:36:16Z
2022-03-30T20:36:15Z
2022-03-31T14:30:39Z
1,290
certbot/certbot
127
add falcon model, and lima linear dropout increase
diff --git a/model/model_training/configs/config.yaml b/model/model_training/configs/config.yaml index 97a72c951e..8266025a77 100644 --- a/model/model_training/configs/config.yaml +++ b/model/model_training/configs/config.yaml @@ -83,6 +83,7 @@ defaults: system_add_length: false per_digit_tokens: false is_rewa...
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3241
2023-05-27T16:47:39Z
2023-05-30T06:52:53Z
2023-05-30T06:52:53Z
2023-05-30T06:52:54Z
1,999
LAION-AI/Open-Assistant
37,263
Add nginx to these weird instructions
diff --git a/docs/install.rst b/docs/install.rst index 1f6a45e0716..a914586ff80 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -156,7 +156,7 @@ If you run Debian Stretch or Debian Sid, you can install certbot packages. sudo apt-get install certbot python-certbot-apache If you don't want to use the Apach...
These are probably made obsolete by the instruction generator, and they don't include Ubuntu...
https://api.github.com/repos/certbot/certbot/pulls/5243
2017-11-15T23:57:01Z
2017-11-27T22:49:20Z
2017-11-27T22:49:20Z
2017-11-27T22:49:24Z
173
certbot/certbot
1,808
Add Format Validation to CI
diff --git a/.travis.yml b/.travis.yml index 5d5c5e8ea0..e702877de6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,11 @@ before_install: - rvm install 2.4.0 install: - gem install awesome_bot +before_script: + - cd build script: - - awesome_bot README.md --allow-ssl --allow 403,302 + - ./main.sh afte...
So, right now the CI for this project tests every link in the README to make sure that it's living. This is great for removing dead links over time, but can cause a real headache for users who open a pull request only to see their changes "break" the build, when 99.9% of the time it is someone else's link that is causi...
https://api.github.com/repos/public-apis/public-apis/pulls/385
2017-07-10T05:50:06Z
2017-07-10T15:08:52Z
2017-07-10T15:08:52Z
2017-07-10T15:08:58Z
881
public-apis/public-apis
35,500
Add Netron
diff --git a/README.md b/README.md index 092567b9..1d1865ab 100644 --- a/README.md +++ b/README.md @@ -521,6 +521,7 @@ Further resources: * [TensorFlow.js](https://js.tensorflow.org/) - A WebGL accelerated, browser based JavaScript library for training and deploying ML models. * [JSMLT](https://github.com/jsmlt/jsmlt...
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/541
2018-10-12T06:43:55Z
2018-10-20T06:45:33Z
2018-10-20T06:45:33Z
2018-10-20T06:45:33Z
433
josephmisiti/awesome-machine-learning
52,357
bpo-38158: Removing non-existant member "doc" from PyType_Spec documentation
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 8f8367ab77c8c4..6416951ac5a94c 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -142,10 +142,6 @@ The following functions and structs are used to create Name of the type, used to set :c:member:`PyTypeObject.tp_name`. - .. c:member:: cons...
Just removing a couple lines. <!-- issue-number: [bpo-38158](https://bugs.python.org/issue38158) --> https://bugs.python.org/issue38158 <!-- /issue-number -->
https://api.github.com/repos/python/cpython/pulls/16142
2019-09-14T11:56:15Z
2019-09-15T06:50:05Z
2019-09-15T06:50:05Z
2019-09-15T06:53:45Z
174
python/cpython
4,529
ticksize - wazirx
diff --git a/js/wazirx.js b/js/wazirx.js index 263314769007..de3f49ed967a 100644 --- a/js/wazirx.js +++ b/js/wazirx.js @@ -2,6 +2,7 @@ const Exchange = require ('./base/Exchange'); const { ExchangeError, BadRequest, RateLimitExceeded, BadSymbol, ArgumentsRequired, PermissionDenied, InsufficientFunds, InvalidOrder }...
https://api.github.com/repos/ccxt/ccxt/pulls/13690
2022-06-07T14:21:06Z
2022-06-07T18:15:43Z
2022-06-07T18:15:43Z
2022-06-09T09:55:31Z
388
ccxt/ccxt
13,261
Respect model and lora directory settings when downloading files
diff --git a/modules/ui_model_menu.py b/modules/ui_model_menu.py index 8d6122d252..29f0b926c3 100644 --- a/modules/ui_model_menu.py +++ b/modules/ui_model_menu.py @@ -287,6 +287,12 @@ def download_model_wrapper(repo_id, specific_file, progress=gr.Progress(), retur yield ("Getting the output folder") ...
## Checklist: - [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines). Currently all downloaded files are placed in the same directory as the installation. This change makes them download to the folder specified by the user.
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/5842
2024-04-10T23:16:38Z
2024-04-11T04:55:02Z
2024-04-11T04:55:02Z
2024-04-11T04:55:02Z
172
oobabooga/text-generation-webui
26,377
Use partition numel
diff --git a/deepspeed/runtime/zero/partition_parameters.py b/deepspeed/runtime/zero/partition_parameters.py index 131d25faedc0..f86e050a0a10 100755 --- a/deepspeed/runtime/zero/partition_parameters.py +++ b/deepspeed/runtime/zero/partition_parameters.py @@ -910,8 +910,8 @@ def aligned_size(): def padding_size...
API to help avoid errors when manipulating partitioned parameters. Fix #2002
https://api.github.com/repos/microsoft/DeepSpeed/pulls/2011
2022-06-13T17:31:17Z
2022-06-20T15:32:01Z
2022-06-20T15:32:01Z
2022-06-20T23:39:09Z
1,941
microsoft/DeepSpeed
10,111
Incorporate feedback from #4113
diff --git a/acme/acme/client.py b/acme/acme/client.py index 7555a1cc725..0324967cf86 100644 --- a/acme/acme/client.py +++ b/acme/acme/client.py @@ -681,16 +681,14 @@ def post(self, *args, **kwargs): be retried once. """ - should_retry = True - while True: - try: + tr...
https://api.github.com/repos/certbot/certbot/pulls/4115
2017-01-26T01:45:32Z
2017-01-30T17:44:56Z
2017-01-30T17:44:56Z
2017-01-30T17:45:04Z
483
certbot/certbot
3,372
Fix For go get Deprecation
diff --git a/docker/dev/Dockerfile b/docker/dev/Dockerfile index 8aed1225b..8ec78b367 100644 --- a/docker/dev/Dockerfile +++ b/docker/dev/Dockerfile @@ -6,7 +6,7 @@ RUN apk update && apk add --no-cache \ gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig xdg-utils # install go...
**Summary** Docker fails to build due to `go get` deprecation. This change addresses the deprecation and allows for a successful build by replacing `go get` with `go install somePackage/package@version.` **Testing** Successfully built the docker image on amd64 Ubuntu and arm64 M1 Mac.
https://api.github.com/repos/mingrammer/diagrams/pulls/713
2022-06-24T01:29:30Z
2022-08-10T15:04:40Z
2022-08-10T15:04:40Z
2022-08-10T15:04:40Z
162
mingrammer/diagrams
52,614
Refs #29983 -- Added tests for FileBasedCache pathlib support.
diff --git a/tests/cache/tests.py b/tests/cache/tests.py index 2e17127ce9369..1b2a9490f6de3 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -10,6 +10,7 @@ import threading import time import unittest +from pathlib import Path from unittest import mock from django.conf import settings @@ -1422,12 ...
https://api.github.com/repos/django/django/pulls/12021
2019-11-06T01:14:17Z
2019-11-06T09:01:02Z
2019-11-06T09:01:02Z
2019-11-08T10:13:55Z
425
django/django
51,060
Run tests with Python 3.5.0
diff --git a/.travis.yml b/.travis.yml index bcbf75a43b2..d6ec88e060e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,12 +17,16 @@ matrix: python: 3.7 # Keep in sync with .readthedocs.yml - env: TOXENV=pypy3 - - env: TOXENV=py - python: 3.5 - env: TOXENV=pinned + python: 3.5.1 + ...
Related to #4261
https://api.github.com/repos/scrapy/scrapy/pulls/4518
2020-04-28T11:58:30Z
2020-05-15T17:37:58Z
2020-05-15T17:37:57Z
2020-05-15T17:38:07Z
1,030
scrapy/scrapy
35,094
Adding support for OK and updating list of sites
diff --git a/data.json b/data.json index d00f090ce..d7e62bdac 100644 --- a/data.json +++ b/data.json @@ -721,6 +721,16 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "OK": { + "errorType": "message", + "errorMsg": "This page does not exist on OK", + "rank...
Adding support for OK and updating list of sites
https://api.github.com/repos/sherlock-project/sherlock/pulls/228
2019-07-11T23:36:11Z
2019-07-13T14:32:44Z
2019-07-13T14:32:44Z
2019-07-13T14:32:44Z
357
sherlock-project/sherlock
36,683
Rename python_webscraper to python_webscraper.py
diff --git a/python_webscraper b/python_webscraper.py similarity index 99% rename from python_webscraper rename to python_webscraper.py index dfebcb8cc1..a9322761a1 100644 --- a/python_webscraper +++ b/python_webscraper.py @@ -16,4 +16,4 @@ print(all_h1_tags, seventh_p_text) -# print all h1 elements and the text o...
https://api.github.com/repos/geekcomputers/Python/pulls/1662
2022-08-10T17:13:18Z
2022-10-10T20:42:30Z
2022-10-10T20:42:30Z
2022-10-10T20:42:30Z
133
geekcomputers/Python
31,499