repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
huggingface/transformers
ad08137e473e00702fc3088a119da7026e1cb025
bdbcd5d4820c5a17942c179ca2bfd1275c0bc15c
[docstring] Fix docstrings for `CodeGen` (#26821) * remove docstrings CodeGen from objects_to_ignore * autofix codegen docstrings * fill in the missing types and docstrings * fixup * change descriptions to be in a separate line * apply docstring suggestions from code review Co-authored-by: Yih-Dar <2...
[ { "path": "src/transformers/models/codegen/configuration_codegen.py", "patch": "@@ -57,6 +57,8 @@ class CodeGenConfig(PretrainedConfig):\n n_positions (`int`, *optional*, defaults to 2048):\n The maximum sequence length that this model might ever be used with. Typically set this to somet...
2023-10-19T12:21:40
ggml-org/llama.cpp
b23fa0b3f40165ca3aae8ad4ee756e72f9a130dd
06cbedfca1587473df9b537f1dd4d6bfa2e3de13
convert : fix Llama 4 conversion (#14311)
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -2193,7 +2193,7 @@ def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iter\n name += \".weight\"\n if \"multi_modal_projector.linear_1\" in name:\n # despite the name with number postfix, thi...
2025-06-21T04:32:01
rust-lang/rust
e661514bda5a06d33f5b872a1a88bb72b47b064f
e08cd3cf05e5bfa3323cc21ea8f81f4a15a2f969
Remove hook calling via `TyCtxtAt`. All hooks receive a `TyCtxtAt` argument. Currently hooks can be called through `TyCtxtAt` or `TyCtxt`. In the latter case, a `TyCtxtAt` is constructed with a dummy span and passed to the hook. However, in practice hooks are never called through `TyCtxtAt`, and always receive a dum...
[ { "path": "compiler/rustc_const_eval/src/const_eval/mod.rs", "patch": "@@ -1,7 +1,7 @@\n // Not in interpret to make sure we do not use private implementation details\n \n use rustc_abi::VariantIdx;\n-use rustc_middle::query::{Key, TyCtxtAt};\n+use rustc_middle::query::Key;\n use rustc_middle::ty::layout::L...
2025-01-31T05:52:39
huggingface/transformers
bdbcd5d4820c5a17942c179ca2bfd1275c0bc15c
734dd96e022ab98a9d4f4143024b183f2a14efec
Fix and re-enable ConversationalPipeline tests (#26907) * Fix and re-enable conversationalpipeline tests * Fix the batch test so the change only applies to conversational pipeline
[ { "path": "tests/pipelines/test_pipelines_conversational.py", "patch": "@@ -77,14 +77,14 @@ def get_test_pipeline(self, model, tokenizer, processor):\n \n def run_pipeline_test(self, conversation_agent, _):\n # Simple\n- outputs = conversation_agent(Conversation(\"Hi there!\"))\n+ ...
2023-10-19T11:04:25
vuejs/vue
4b6913cb46be2f8f932f19adb63bbc6f388a3b76
4dff99d6e3b8cdfb7552e284b1aac5742449c531
handle errors in nextTick (close #5277)
[ { "path": "src/core/util/env.js", "patch": "@@ -2,6 +2,7 @@\n /* globals MutationObserver */\n \n import { noop } from 'shared/util'\n+import { handleError } from './error'\n \n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n@@ -123,15 +124,22 @@ export const nextTick = (function () {...
2017-04-10T07:01:32
nodejs/node
224dbb12332db99702be64f4e43b3b0d1e8dea58
ca8a29c3606421d71ce3120cd34febacd7874293
configure: add mips64el to valid_arch PR-URL: https://github.com/nodejs/node/pull/13620 Fixes: https://github.com/nodejs/node/issues/13616 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihri...
[ { "path": "configure", "patch": "@@ -47,8 +47,8 @@ parser = optparse.OptionParser()\n \n valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',\n 'android', 'aix')\n-valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'ppc', 'ppc64', 'x32',\n- 'x64', 'x86', 's390', ...
2017-06-11T19:59:51
ggml-org/llama.cpp
d860dd99a4178f58d1d1fa64eebc2aabc95392a7
c959f462a0b4d42eaf930ffd72df0e435c97d5d5
docs : fix the link to llama.h (#14293)
[ { "path": "docs/build.md", "patch": "@@ -1,6 +1,6 @@\n # Build llama.cpp locally\n \n-The main product of this project is the `llama` library. Its C-style interface can be found in [include/llama.h](include/llama.h).\n+The main product of this project is the `llama` library. Its C-style interface can be fou...
2025-06-20T17:43:35
vuejs/vue
98326ce878247544914882b581e2cc560c3fe806
b997af0c012d00b98c84c062326beb650b239e35
add extra change listener for v-model (fix #5248, #5387)
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -31,6 +31,11 @@ export default {\n } else if (vnode.tag === 'textarea' || el.type === 'text' || el.type === 'password') {\n el._vModifiers = binding.modifiers\n if (!binding.modifiers.lazy) {\n+ // Safari < 10.2 &...
2017-04-10T05:57:18
huggingface/transformers
816c2237c1fd5540c57f99b3faf6160a67a31505
574a5384557b1aaf98ddb13ea9eb0a0ee8ff2cb2
[docstring] Fix docstring for `ChineseCLIP` (#26880) * Remove ChineseCLIPImageProcessor, ChineseCLIPTextConfig, ChineseCLIPVisionConfig from check_docstrings * Run fix_and_overwrite for ChineseCLIPImageProcessor, ChineseCLIPTextConfig, ChineseCLIPVisionConfig * Replace <fill_type> and <fill_docstring> in configu...
[ { "path": "src/transformers/models/chinese_clip/configuration_chinese_clip.py", "patch": "@@ -75,8 +75,13 @@ class ChineseCLIPTextConfig(PretrainedConfig):\n The vocabulary size of the `token_type_ids` passed when calling [`ChineseCLIPModel`].\n initializer_range (`float`, *optional*, de...
2023-10-19T08:52:14
ggml-org/llama.cpp
dd6e6d0b6a4bbe3ebfc931d1eb14db2f2b1d70af
8308f98c7fb778e54bf75538f5234d8bd20915e9
vocab : prevent tokenizer overflow (#14301) * vocab : prevent stack overflow in tokenize * vocab : return error instead of aborting on oversized token count * vocab : INT32_MIN from llama_tokenize on overflow
[ { "path": "common/common.cpp", "patch": "@@ -1290,6 +1290,9 @@ std::vector<llama_token> common_tokenize(\n int n_tokens = text.length() + 2 * add_special;\n std::vector<llama_token> result(n_tokens);\n n_tokens = llama_tokenize(vocab, text.data(), text.length(), result.data(), result.size(), add...
2025-06-20T14:13:06
nodejs/node
ca8a29c3606421d71ce3120cd34febacd7874293
d71718db6aa4feb8dc10edbad1134472468e971a
doc: fix out of date napi_callback doc The earlier version `napi_callback` returns `void` but now is `napi_value`. The document of this section hasn't been modified. PR-URL: https://github.com/nodejs/node/pull/13570 Fixes: https://github.com/nodejs/node/issues/12248 Fixes: https://github.com/nodejs/node/issues/13562 ...
[ { "path": "doc/api/n-api.md", "patch": "@@ -161,18 +161,16 @@ For more details, review the [Object Lifetime Management][].\n \n ### N-API Callback types\n #### *napi_callback_info*\n-Opaque datatype that is passed to a callback function. It can be used for two\n-purposes:\n-- Get additional information abou...
2017-06-09T10:14:22
vuejs/vue
b997af0c012d00b98c84c062326beb650b239e35
a150317324fec0968edd66dc434eaff7a4bc065a
Use genAssignmentCode in chehckbox model web compiler (#5402) Fix #5398
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -91,7 +91,7 @@ function genCheckboxModel (\n '$$i=_i($$a,$$v);' +\n `if($$c){$$i<0&&(${value}=$$a.concat($$v))}` +\n `else{$$i>-1&&(${value}=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}` +\n- `}else{${value}=$$c...
2017-04-10T04:24:08
golang/go
cec08794ef325e84f141e1a7b4deca0bedaeab34
cd9fd640db419ec81026945eb4f22bfe5ff5a27f
misc/cgo/test: fix sigaltstack test on AIX Increase the size of the signal stack as the value given by SIGSTKSZ is too small for the Go signal handler. Fixes #37609 Change-Id: I56f1006bc69a2a9fb43f9e0da00061964290a690 Reviewed-on: https://go-review.googlesource.com/c/go/+/221804 Reviewed-by: Ian Lance Taylor <iant@g...
[ { "path": "misc/cgo/test/sigaltstack.go", "patch": "@@ -14,15 +14,22 @@ package cgotest\n #include <stdlib.h>\n #include <string.h>\n \n+#ifdef _AIX\n+// On AIX, SIGSTKSZ is too small to handle Go sighandler.\n+#define CSIGSTKSZ 0x4000\n+#else\n+#define CSIGSTKSZ SIGSTKSZ\n+#endif\n+\n static stack_t oss;\n...
2020-03-03T15:24:32
ggml-org/llama.cpp
d27b3ca1758dfb1718e333d497ef4b68ad109bc2
9230dbe2c757e2d5071329095727d0fa9d4b85c4
ggml : fix repack work size for mul_mat_id (#14292) ggml-ci
[ { "path": "ggml/src/ggml-cpu/repack.cpp", "patch": "@@ -1163,13 +1163,24 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS, ggml_type PAR\n // not realy a GGML_TYPE_Q8_0 but same size.\n switch (op->op) {\n case GGML_OP_MUL_MAT:\n- size = ggml_ro...
2025-06-20T08:19:15
huggingface/transformers
caa0ff0bf104ee68ea46432b298a534e9a4a02a4
5a73316bed96e9e022f9679dc8d1a7487f4721e1
Add fuyu model (#26911) * initial commit * add processor, add fuyu naming * add draft processor * fix processor * remove dropout to fix loading of weights * add image processing fixes from Pedro * fix * fix processor * add basic processing fuyu test * add documentation and TODO * address ...
[ { "path": "README.md", "patch": "@@ -363,6 +363,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[FNet](https://huggingface.co/docs/transformers/model_doc/fnet)** (from Google Research) released with the paper [FNet: Mixing Tokens with Fourier Transforms](https://...
2023-10-18T22:24:11
nodejs/node
d71718db6aa4feb8dc10edbad1134472468e971a
c4fc7d90eddbdb23d814a38192e6979f8fc285a7
http: fix timeout reset after keep-alive timeout Fix the logic of resetting the socket timeout of keep-alive HTTP connections and add two tests: * `test-http-server-keep-alive-timeout-slow-server` is a regression test for GH-13391. It ensures that the server-side keep-alive timeout will not fire during processin...
[ { "path": "lib/_http_server.js", "patch": "@@ -441,14 +441,6 @@ function socketOnData(server, socket, parser, state, d) {\n assert(!socket._paused);\n debug('SERVER socketOnData %d', d.length);\n \n- if (state.keepAliveTimeoutSet) {\n- socket.setTimeout(0);\n- if (server.timeout) {\n- socket...
2017-06-08T14:20:24
vuejs/vue
c82546c54b851cb75d1fe17bd9d35038904efa24
561bb467baa49606e011a8d1e675b385b156763a
fix keep-alive pruning active instance
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-import { callHook } from 'core/instance/lifecycle'\n import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n type VNodeCache = { [key: string]: ?VNode };\n@@ -21,13 +20,15 @@ function matches (pattern: ...
2017-04-07T08:11:40
ggml-org/llama.cpp
812939a9e90f99d1bd5bb1bc6b99d12600671d50
4c9fdfbe1580a66fd7d77c77418ce2c606a29fdd
model : more uniform output id handling (#14275) * model : more uniform output id handling ggml-ci * cont : revert n_outputs < n_tokens optimization ggml-ci * cont : fix out_ids initialization ggml-ci
[ { "path": "src/llama-graph.cpp", "patch": "@@ -92,36 +92,28 @@ void llm_graph_input_pos_bucket_kv::set_input(const llama_ubatch * ubatch) {\n }\n \n void llm_graph_input_out_ids::set_input(const llama_ubatch * ubatch) {\n- if (hparams.causal_attn || cparams.pooling_type == LLAMA_POOLING_TYPE_NONE) {\n- ...
2025-06-20T07:50:27
huggingface/transformers
5a73316bed96e9e022f9679dc8d1a7487f4721e1
732d2a8aac5385dbc48381ca1025c129a294c17a
[`FA-2`] Final fix for FA2 dtype (#26846) * final fix for FA2 dtype * try * oops * Update src/transformers/models/falcon/modeling_falcon.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * apply fix everywhere --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.n...
[ { "path": "src/transformers/models/falcon/modeling_falcon.py", "patch": "@@ -613,15 +613,18 @@ def forward(\n # cast them back in float16 just to be sure everything works as expected.\n input_dtype = query_layer.dtype\n if input_dtype == torch.float32:\n+ # Handle the case...
2023-10-18T17:48:55
nodejs/node
b71d67795a1366b2c9e77e4156e661df456d3660
27cc30aea849ad26d0aaaa48db57b1299d047c90
test: increase bufsize in child process write test test-child-process-stdio-big-write-end was failing on ubuntu1604-arm64 because the while loop that was supposed to fill up the buffer ended up being an infinite loop. This increases the size of the writes in the loop by 1K until the buffer fills up. PR-URL: https://...
[ { "path": "test/parallel/test-child-process-stdio-big-write-end.js", "patch": "@@ -22,7 +22,7 @@\n 'use strict';\n require('../common');\n const assert = require('assert');\n-const BUFSIZE = 1024;\n+let bufsize = 0;\n \n switch (process.argv[2]) {\n case undefined:\n@@ -51,14 +51,15 @@ function parent() {...
2017-06-12T04:10:56
vuejs/vue
1073035164b809872bf35a3b007848979f86f48a
931aaea8dc6481f59b3f9dcf7b304bb36e6e27ad
fix activate hook call timing (fix vue-router#1212)
[ { "path": "flow/vnode.js", "patch": "@@ -9,6 +9,7 @@ declare type VNodeComponentOptions = {\n }\n \n declare type MountedComponentVNode = {\n+ context: Component;\n componentOptions: VNodeComponentOptions;\n componentInstance: Component;\n parent: VNode;", "additions": 1, "deletions": 0, ...
2017-04-07T07:30:37
golang/go
cd9fd640db419ec81026945eb4f22bfe5ff5a27f
24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7
cmd/compile: don't allow NaNs in floating-point constant ops Trying this CL again, with a fixed test that allows platforms to disagree on the exact behavior of converting NaNs. We store 32-bit floating point constants in a 64-bit field, by converting that 32-bit float to 64-bit float to store it, and convert it back ...
[ { "path": "src/cmd/compile/internal/gc/float_test.go", "patch": "@@ -483,6 +483,64 @@ func TestFloat32StoreToLoadConstantFold(t *testing.T) {\n \t}\n }\n \n+// Signaling NaN values as constants.\n+const (\n+\tsnan32bits uint32 = 0x7f800001\n+\tsnan64bits uint64 = 0x7ff0000000000001\n+)\n+\n+// Signaling NaN...
2020-03-03T17:56:20
ggml-org/llama.cpp
9eaa51e7f08593f123f00136591179a8f5956ecd
8f71d0f3e86ccbba059350058af8758cafed73e6
CUDA: add conv_2d_dw (#14265) * CUDA: add conv_2d_dw * better naming * simplify using template * Review: fix operation ordering in ggml-cuda, use __forceinline__, use more const
[ { "path": "ggml/src/ggml-cuda/conv2d-dw.cu", "patch": "@@ -0,0 +1,161 @@\n+#include \"conv2d-dw.cuh\"\n+\n+struct conv_params {\n+ int in_w, in_h;\n+ int out_w, out_h;\n+ int kernel_w, kernel_h;\n+ int stride_x, stride_y;\n+ int padding_x, padding_y;\n+ int dilation_x, dilation_y;\n+ in...
2025-06-20T01:50:24
huggingface/transformers
d933818d6729dcdb450a8ce6418102eb6c69d9bb
de55ead1f1acb218edf7994a4034fc6f77d636e2
Add default template warning (#26637) * Add default template warnings * make fixup * Move warnings to FutureWarning * Move warnings to FutureWarning * fix make fixup * Remove futurewarning
[ { "path": "src/transformers/models/blenderbot/tokenization_blenderbot.py", "patch": "@@ -423,6 +423,12 @@ def default_chat_template(self):\n \"\"\"\n A very simple chat template that just adds whitespace between messages.\n \"\"\"\n+ logger.warning_once(\n+ \"\\nNo ...
2023-10-18T16:38:52
vuejs/vue
ba138549dbba95ea019f0626fe185360723ddda2
c28b566f19459751244707e4efe458056c9bbdcf
fix style (#5383)
[ { "path": "benchmarks/big-table/demo.css", "patch": "@@ -1,5 +1,5 @@\n form {\n- margin-bottom: 15px ;\n+ margin-bottom: 15px;\n }\n \n td.hidden {", "additions": 1, "deletions": 1, "language": "CSS" }, { "path": "benchmarks/big-table/index.html", "patch": "@@ -71,12 +71,12 @@ <h1>...
2017-04-06T02:50:21
nodejs/node
ba449f3bf1f2057773f4759c82df8081f14d09ad
12fd63d6bb38d4fbd41dc4dd8d1b106ee64d1f7c
http: handle cases where socket.server is null Fixes a regression that caused an error to be thrown when trying to emit the 'timeout' event on the server referenced by `socket.server`. Fixes: https://github.com/nodejs/node/issues/13435 Refs: https://github.com/nodejs/node/pull/11926 PR-URL: https://github.com/nodejs/...
[ { "path": "lib/_http_server.js", "patch": "@@ -294,6 +294,11 @@ function connectionListener(socket) {\n \n httpSocketSetup(socket);\n \n+ // Ensure that the server property of the socket is correctly set.\n+ // See https://github.com/nodejs/node/issues/13435\n+ if (socket.server === null)\n+ socket....
2017-06-09T15:29:50
golang/go
79284c28734bf854f44106835b5578ead75eb547
6c64b188a53afec79563cf4ad3c5bc373036d3ae
[dev.boringcrypto] crypto/internal/boring: make accesses to RSA types with finalizers safer RSA key types have a finalizer that will free the underlying C value when the Go one is garbage collected. It's important that the finalizer doesn't run while a cgo call is using the underlying C value, so they require runtime....
[ { "path": "src/crypto/internal/boring/rsa.go", "patch": "@@ -45,7 +45,8 @@ func GenerateKeyRSA(bits int) (N, E, D, P, Q, Dp, Dq, Qinv *big.Int, err error)\n }\n \n type PublicKeyRSA struct {\n-\tkey *C.GO_RSA\n+\t// _key MUST NOT be accessed directly. Instead, use the withKey method.\n+\t_key *C.GO_RSA\n }\...
2020-03-02T20:52:56
ggml-org/llama.cpp
456af35eb70177b8dd5779b6d4c21bb020f9cebd
600e3e9b50c1f0c9fc4a70356241fd87f00e8e14
build : suppress gcc15 compile warnings (#14261) * Change _contains_any() substrs to std::string_view and fix the find comparison logic.
[ { "path": "common/common.cpp", "patch": "@@ -706,11 +706,17 @@ bool fs_validate_filename(const std::string & filename) {\n // disable C++17 deprecation warning for std::codecvt_utf8\n # pragma clang diagnostic push\n # pragma clang diagnostic ignored \"-Wdeprecated-declarations\"\n+#elif defin...
2025-06-19T12:49:48
huggingface/transformers
de55ead1f1acb218edf7994a4034fc6f77d636e2
ef7e93699a15b6fed15fbdc79f89439ed1125352
Emergency PR to skip conversational tests to fix CI (#26906)
[ { "path": "tests/test_pipeline_mixin.py", "patch": "@@ -327,6 +327,7 @@ def test_pipeline_automatic_speech_recognition(self):\n self.run_task_tests(task=\"automatic-speech-recognition\")\n \n @is_pipeline_test\n+ @unittest.skip(\"Conversational tests are currently broken for several models, w...
2023-10-18T14:33:43
vuejs/vue
7d3c883f83332c13ca186f7e7ee5be40e47f85a7
4e12b25d785aa721d71ec2f553d150c8df15f875
fix functional context resolving merge errors
[ { "path": "src/core/instance/inject.js", "patch": "@@ -51,19 +51,7 @@ export function resolveInject (inject: any, vm: Component): ?Object {\n let source = vm\n while (source) {\n if (source._provided && provideKey in source._provided) {\n- /* istanbul ignore else */\n- ...
2017-04-05T07:55:44
ggml-org/llama.cpp
5fc7856815920f828f9e90cb759ac82c7f0c1ea5
faed5a5f5dde4d816adecdccb4f4682a04126f92
convert : fix remote option in Windows (#14100)
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -6389,8 +6389,8 @@ def parse_args() -> argparse.Namespace:\n help=\"model is executed on big endian machine\",\n )\n parser.add_argument(\n- \"model\", type=Path,\n- help=\"directory containing model file\",\n+ \"model\", t...
2025-06-19T10:21:40
golang/go
b49d8ce2fa66df6e201a3e7e89c42003e7b7a76a
ea1437a8cdf6bb3c2d2447833a5d06dbd75f7ae4
all: fix two minor typos in comments Change-Id: Iec6cd81c9787d3419850aa97e75052956ad139bc Reviewed-on: https://go-review.googlesource.com/c/go/+/221789 Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
[ { "path": "src/cmd/compile/internal/x86/387.go", "patch": "@@ -326,7 +326,7 @@ func push(s *gc.SSAGenState, v *ssa.Value) {\n }\n \n // popAndSave pops a value off of the floating-point stack and stores\n-// it in the reigster assigned to v.\n+// it in the register assigned to v.\n func popAndSave(s *gc.SSA...
2017-05-09T19:48:23
nodejs/node
12fd63d6bb38d4fbd41dc4dd8d1b106ee64d1f7c
e2617a03888aed62965ebc208f13e1bb3e183aeb
v8: add a js class for Serializer/Dserializer Calling Serializer/Deserializer without new crashes node. Adding a js class which just inherits cpp bindings. Added regression tests. Fixes: https://github.com/nodejs/node/issues/13326 PR-URL: https://github.com/nodejs/node/pull/13541 Reviewed-By: Refael Ackermann <refack...
[ { "path": "lib/v8.js", "patch": "@@ -15,11 +15,21 @@\n 'use strict';\n \n const { Buffer } = require('buffer');\n-const { Serializer, Deserializer } = process.binding('serdes');\n+const {\n+ Serializer: _Serializer,\n+ Deserializer: _Deserializer\n+} = process.binding('serdes');\n const { copy } = process...
2017-06-08T08:17:02
huggingface/transformers
ef7e93699a15b6fed15fbdc79f89439ed1125352
34678db4a18ae4eab0895299ff108c5cba740123
[`Tokenizer`] Fix slow and fast serialization (#26570) * fix * last attempt * current work * fix forward compatibility * save all special tokens * current state * revert additional changes * updates * remove tokenizer.model * add a test and the fix * nit * revert one more break * fi...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -127,6 +127,7 @@ def to_dict(self):\n },\n ]\n steps.extend([{\"run\": l} for l in self.install_steps])\n+ steps.extend([{\"run\": \"pip install pytest-subtests\"}])\n steps.append(\n {\n ...
2023-10-18T14:30:53
vuejs/vue
beee7d81430ea6e81c508d63994065c9341d0cf2
354c2f4922fe34932d4866da39cb8e0ac87e9edd
support v-on passive modifier (#5132) * support v-on passive modifier * fix supportsPassive and run unit when the test browser supports * add mutual exclusive warning * Fix typo * Fix typo * Remove extra line - CS fix
[ { "path": "src/compiler/helpers.js", "patch": "@@ -1,5 +1,6 @@\n /* @flow */\n \n+import { warn } from 'core/util/index'\n import { parseFilters } from './parser/filter-parser'\n \n export function baseWarn (msg: string) {\n@@ -41,6 +42,13 @@ export function addHandler (\n modifiers: ?ASTModifiers,\n im...
2017-04-05T06:35:16
ggml-org/llama.cpp
edc4a29effe716956fdfd2bc5b9cba2a6d8492f8
ed3290ab34493fd3d2e0f925f816a401da4f2dfd
memory : Hybrid recurrent cache (#13979) * feat: Add llama_model_is_hybrid API call Also, split llama_model_is_recurrent into llm_arch_is_recurrent in llama-arch with llama_model_is_recurrent delegating to llm_arch_is_recurrent. The same split is done for hybird. This is needed because there are places where the llam...
[ { "path": "src/CMakeLists.txt", "patch": "@@ -22,8 +22,9 @@ add_library(llama\n llama-io.cpp\n llama-kv-cache-unified.cpp\n llama-kv-cache-unified-iswa.cpp\n- llama-kv-cache-recurrent.cpp\n llama-memory.cpp\n+ llama-memory-hybrid.cpp\n+ ...
2025-06-19T05:08:14
huggingface/transformers
34678db4a18ae4eab0895299ff108c5cba740123
280c757f6cf53a9c2857d8273b9fdfdf3372971d
Fix Seq2seqTrainer decoder attention mask (#26841) Don't drop decoder_input_ids without also dropping decoder_attention_mask
[ { "path": "src/transformers/trainer_seq2seq.py", "patch": "@@ -288,7 +288,9 @@ def prediction_step(\n and \"decoder_input_ids\" in generation_inputs\n and generation_inputs[\"labels\"].shape == generation_inputs[\"decoder_input_ids\"].shape\n ):\n- generation_input...
2023-10-18T12:28:15
golang/go
ea1437a8cdf6bb3c2d2447833a5d06dbd75f7ae4
96acb74655531794d6f563242736d25f4e716b11
net/http: fix handling of HTTP/2 upgrade failures If an error occurs during the HTTP/2 upgrade phase, originally this resulted in a pconn with pconn.alt set to an http2erringRoundTripper, which always fails. This is not wanted - we want to retry in this case. CL 202078 added a check for the http2erringRoundTripper to...
[ { "path": "src/net/http/omithttp2.go", "patch": "@@ -32,7 +32,7 @@ type http2Transport struct {\n func (*http2Transport) RoundTrip(*Request) (*Response, error) { panic(noHTTP2) }\n func (*http2Transport) CloseIdleConnections() {}\n \n-type http2erringRoundTripper struct{}\n+type http2erringR...
2020-02-25T18:01:59
vuejs/vue
354c2f4922fe34932d4866da39cb8e0ac87e9edd
bbec0763ab6eb8824c8bfb447844bfa2892ee47a
fix keep-alive cache incorrectly pruned with transition mode="out-in" (fix #5346)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -53,9 +53,11 @@ export function extractTransitionData (comp: Component): Object {\n }\n \n function placeholder (h: Function, rawChild: VNode): ?VNode {\n- return /\\d-keep-alive$/.test(rawChild.tag)\n- ? h('keep-alive')\n- ...
2017-04-03T07:32:23
nodejs/node
e2617a03888aed62965ebc208f13e1bb3e183aeb
401a37281e63ef0164e44ce66d2c67f995bcefd1
doc: fix links and typos in fs.md PR-URL: https://github.com/nodejs/node/pull/13573 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/fs.md", "patch": "@@ -1706,7 +1706,7 @@ changes:\n parameter in case of success.\n - version: v5.0.0\n pr-url: https://github.com/nodejs/node/pull/3163\n- description: The `file` parameter can be a file descriptor now.\n+ description: The `path` parameter can ...
2017-06-09T12:14:51
ggml-org/llama.cpp
8d947136546773f6410756f37fcc5d3e65b8135d
50d2227953ca9024f04255b4f116d06fcc0db74c
docs: add s390x build documentation (#14264) * docs: add s390x-specific build docs Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * docs: add s390x model conversion steps Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * docs: s390x build indent Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * docs: update hyperlink...
[ { "path": "docs/build-s390x.md", "patch": "@@ -0,0 +1,157 @@\n+> [!IMPORTANT]\n+> This build documentation is specific only to IBM Z & LinuxONE mainframes (s390x). You can find the build documentation for other architectures: [build.md](build.md).\n+\n+# Build llama.cpp locally (for s390x)\n+\n+The main pro...
2025-06-18T17:10:26
vuejs/vue
a12d32a56df2519c9cdf8d2da9d9425876263f89
66228390684eb23dc943dfe30d4ccd0063f797ef
fix style diffing on cached/slot elements (fix #5318)
[ { "path": "flow/vnode.js", "patch": "@@ -40,6 +40,7 @@ declare interface VNodeData {\n class?: any;\n staticStyle?: { [key: string]: any };\n style?: Array<Object> | Object;\n+ normalizedStyle?: Object;\n props?: { [key: string]: any };\n attrs?: { [key: string]: string };\n domProps?: { [key: ...
2017-04-03T06:13:57
huggingface/transformers
ef42cb62744e2be04f5b41b7e36dd1d609734675
b002353dca5a9a17590752769ee89a2c1fc57b36
Fix TensorFlow pakage check (#26842) Add tf-nightly-rocm to _is_tf_available check
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -168,6 +168,7 @@ def _is_package_available(pkg_name: str, return_version: bool = False) -> Union[\n \"tf-nightly\",\n \"tf-nightly-cpu\",\n \"tf-nightly-gpu\",\n+ \"tf-nightly-rocm...
2023-10-17T22:15:50
golang/go
e37cc298636abcd500aa8acc7375d001c431c64e
c9ece81cc8c1a81ebdebcf6dfc13ebf5c4cbdb61
cmd/compile: optimize integer-in-range checks This CL incorporates code from CL 201206 by Josh Bleecher Snyder (thanks Josh). This CL restores the integer-in-range optimizations in the SSA backend. The fuse pass is enhanced to detect inequalities that could be merged and fuse their associated blocks while the generic...
[ { "path": "src/cmd/compile/internal/ssa/branchelim.go", "patch": "@@ -148,7 +148,7 @@ func elimIf(f *Func, loadAddr *sparseSet, dom *Block) bool {\n \t// the number of useless instructions executed.\n \tconst maxfuseinsts = 2\n \n-\tif len(simple.Values) > maxfuseinsts || !allTrivial(simple) {\n+\tif len(si...
2019-05-20T18:55:56
rust-lang/rust
382caf96a72443b9ad3dfa80b106212900397928
e1f09207fb273b10fee01c0bef1b2c6130eaea80
Use short ty string for binop and upops errors ``` error[E0369]: cannot add `((..., ..., ..., ...), ..., ..., ...)` to `((..., ..., ..., ...), ..., ..., ...)` --> $DIR/binop.rs:9:7 | LL | x + x; | - ^ - ((..., ..., ..., ...), ..., ..., ...) | | | ((..., ..., ..., ...), ..., ..., ...) |...
[ { "path": "compiler/rustc_hir_typeck/src/op.rs", "patch": "@@ -306,6 +306,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n lang_item_for_op(self.tcx, Op::Binary(op, is_assign), op.span);\n let missing_trait = trait_def_id\n .map(|def_id| with_no_trimmed_paths!...
2025-01-30T18:50:58
nodejs/node
401a37281e63ef0164e44ce66d2c67f995bcefd1
8beff648518aa8e846221d03e31bea5f78f62010
test: fix typo in test-cli-node-options.js `expect` was probably a typo, as it is a function and will always be `undefined` as JSON. The previous `test()` check infers it should be `want`. PR-URL: https://github.com/nodejs/node/pull/13558 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@a...
[ { "path": "test/parallel/test-cli-node-options.js", "patch": "@@ -72,8 +72,8 @@ function expect(opt, want) {\n assert.ifError(err);\n if (!RegExp(want).test(stdout)) {\n console.error('For %j, failed to find %j in: <\\n%s\\n>',\n- opt, expect, stdout);\n- assert(false, ...
2017-06-08T20:11:50
vuejs/vue
3c0265517b55afe747948c193b79954d18b4d4c8
255b627f395c5e658862cf716291a6299f997cb7
handle errors thrown by directive hooks (#5314) (#5324) * handle errors thrown by directive hooks * fix import
[ { "path": "src/core/vdom/modules/directives.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import { emptyNode } from 'core/vdom/patch'\n-import { resolveAsset } from 'core/util/options'\n+import { resolveAsset, handleError } from 'core/util/index'\n import { mergeVNodeHook } from 'core/vdom/helpers/index...
2017-04-03T03:37:54
ggml-org/llama.cpp
6231c5cd6d49d61511f328b5f43322407df90a91
ef035803eb9dbc306ea9a8ff82e30af12b567cf7
ggml-cpu: fix uncaught underscore terminators (#14023) Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
[ { "path": "ggml/src/ggml-cpu/ggml-cpu-impl.h", "patch": "@@ -371,7 +371,7 @@ inline static int32x4_t ggml_vdotq_s32(int32x4_t acc, int8x16_t a, int8x16_t b)\n #define vec_xor(a, b) ((a) ^ (b)) // Vector XOR\n #endif\n \n-typedef signed char char8x16_t __attribute__((vector_size(16)));\n+typedef signed cha...
2025-06-18T17:06:49
huggingface/transformers
46092f763d26eb938a937c2a9cc69ce1cb6c44c2
51042ae8e5df8275d16b3eaff36c20fb9c191655
Fixed a typo in mistral.md (#26879) Fix a typo in mistral.md
[ { "path": "docs/source/en/model_doc/mistral.md", "patch": "@@ -76,7 +76,7 @@ python src/transformers/models/mistral/convert_mistral_weights_to_hf.py \\\n You can then load the converted model from the `output/path`:\n \n ```python\n-from transformers import MistralForCausalLM, LlamaTokenzier\n+from transfor...
2023-10-17T21:06:37
golang/go
972df38445977cc04414c7b6f469e2a8e5a63861
2001685ec01c240eda84762a3bc612ddd3ca93fe
runtime: during panic, print value instead of address, if kind is printable Make panics more useful by printing values, if their underlying kind is printable, instead of just their memory address. Thus now given any custom type derived from any of: float*, int*, string, uint* if we have panic with such a result,...
[ { "path": "doc/go1.15.html", "patch": "@@ -92,6 +92,18 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n TODO\n </p>\n \n+<dl id=\"pkg-runtime\"><dt><a href=\"/pkg/runtime/\">runtime</a></dt>\n+ <dd>\n+ <p><!-- CL 221779 -->\n+ If <code>panic</code> is invoked with a value who...
2020-03-02T01:41:44
nodejs/node
8beff648518aa8e846221d03e31bea5f78f62010
a2ed3a9c88c722a4ebbcdb5e6ffb59447d939507
benchmark: fix some RegExp nits * Take RegExp creation out of cycle. * use test(), not match() in boolean context. PR-URL: https://github.com/nodejs/node/pull/13551 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: ...
[ { "path": "benchmark/buffers/buffer-write.js", "patch": "@@ -52,7 +52,7 @@ function main(conf) {\n var buff = new clazz(8);\n var fn = `write${conf.type}`;\n \n- if (fn.match(/Int/))\n+ if (/Int/.test(fn))\n benchInt(buff, fn, len, noAssert);\n else\n benchFloat(buff, fn, len, noAssert);", ...
2017-06-08T15:30:57
vuejs/vue
255b627f395c5e658862cf716291a6299f997cb7
9311876c7c0084a65c6ff0d583d2789205fa83ee
fix #5321 don't throw error when node gets relocated (#5322) * don't throw error when node gets relocated * perf: Simplify if check in vdom/patch
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -234,7 +234,9 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- nodeOps.insertBefore(parent, elm, ref)\n+ if (ref.parentNode === parent) {\n+ ...
2017-04-03T03:36:50
ggml-org/llama.cpp
413977de32e90712ecec84d0b9c738847da8dc02
95402553a5effc61ddc9e29c7bcb56f71311dd4a
mtmd : refactor llava-uhd preprocessing logic (#14247) * mtmd : refactor llava-uhd preprocessing logic * fix editorconfig
[ { "path": "tools/mtmd/clip.cpp", "patch": "@@ -187,7 +187,7 @@ struct clip_hparams {\n float eps = 1e-6;\n float rope_theta = 0.0;\n \n- std::vector<int32_t> image_grid_pinpoints;\n+ std::vector<clip_image_size> image_res_candidates; // for llava-uhd style models\n int32_t image_crop_resol...
2025-06-18T08:43:57
huggingface/transformers
51042ae8e5df8275d16b3eaff36c20fb9c191655
db611aabee863cc5b1fdc22dcec5ce8e6c3e3b36
[docstring] Fix docstring for LukeConfig (#26858) * Deleted LukeConfig and ran check_docstrings.py * Filled docstring information --------- Co-authored-by: louie <louisparizeau@Chicken.local>
[ { "path": "src/transformers/models/luke/configuration_luke.py", "patch": "@@ -38,7 +38,7 @@ class LukeConfig(PretrainedConfig):\n \n \n Args:\n- vocab_size (`int`, *optional*, defaults to 30522):\n+ vocab_size (`int`, *optional*, defaults to 50267):\n Vocabulary size of the LUK...
2023-10-17T17:30:46
golang/go
9828c43288a53d3df75b1f73edad0d037a91dff8
4f989323a5571e29c27f5ef86154676bd889fe15
runtime: prevent allocation when converting small ints to interfaces Prior to this change, we avoid allocation when converting 0 to an interface. This change extends that optimization to larger value types whose values happens to be in the range 0 to 255. This is marginally more expensive in the case of a 0 value, in...
[ { "path": "src/runtime/iface.go", "patch": "@@ -331,8 +331,11 @@ func convT2E(t *_type, elem unsafe.Pointer) (e eface) {\n }\n \n func convT16(val uint16) (x unsafe.Pointer) {\n-\tif val == 0 {\n-\t\tx = unsafe.Pointer(&zeroVal[0])\n+\tif val < uint16(len(staticuint64s)) {\n+\t\tx = unsafe.Pointer(&staticui...
2020-01-27T19:28:05
vuejs/vue
9311876c7c0084a65c6ff0d583d2789205fa83ee
71e0992127a8144c7b095af1e18376318fc77cb0
safer isNative check (fix #5361)
[ { "path": "src/core/util/env.js", "patch": "@@ -37,8 +37,8 @@ export const isServerRendering = () => {\n export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__\n \n /* istanbul ignore next */\n-export function isNative (Ctor: Function): boolean {\n- return /native code/.test(Ctor.toString...
2017-04-03T03:33:49
ggml-org/llama.cpp
95402553a5effc61ddc9e29c7bcb56f71311dd4a
3865cff4f5b84c16119590efd6ce537789a27715
llama-chat : fix multiple system message for gemma, orion (#14246)
[ { "path": "src/llama-chat.cpp", "patch": "@@ -333,7 +333,7 @@ int32_t llm_chat_apply_template(\n std::string role(message->role);\n if (role == \"system\") {\n // there is no system message for gemma, but we will merge it with user prompt, so nothing is broken\n- ...
2025-06-18T07:58:43
nodejs/node
a2ed3a9c88c722a4ebbcdb5e6ffb59447d939507
b6e2cde4b401b5131f28afe58a558eb11ee20bed
doc: fix incorrect fs.utimes() link PR-URL: https://github.com/nodejs/node/pull/13608 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/fs.md", "patch": "@@ -2840,7 +2840,7 @@ The following constants are meant for use with the [`fs.Stats`][] object's\n [`fs.read()`]: #fs_fs_read_fd_buffer_offset_length_position_callback\n [`fs.readFile`]: #fs_fs_readfile_file_options_callback\n [`fs.stat()`]: #fs_fs_stat_path_callback\n-[...
2017-06-11T06:00:52
huggingface/transformers
db611aabee863cc5b1fdc22dcec5ce8e6c3e3b36
41c42f85f61b0c333e940c6d424fdfb81e180a7b
🚨 🚨 Raise error when no speaker embeddings in speecht5._generate_speech (#26418) * add warning when no speaker embeddings in speecht5._generate_speech * modify warning to error * adapt generation test
[ { "path": "src/transformers/models/speecht5/modeling_speecht5.py", "patch": "@@ -2550,6 +2550,14 @@ def _generate_speech(\n vocoder: Optional[nn.Module] = None,\n output_cross_attentions: bool = False,\n ) -> Union[torch.FloatTensor, Tuple[torch.FloatTensor, torch.FloatTensor]]:\n+ if speaker_emb...
2023-10-17T13:59:35
vuejs/vue
1e37633567f5d015db24ae0210b1adb4b1c3d355
924435a0fae3dfeb2616c9ac17bed99f9cb8d28d
fix ssr xss (fix #5351)
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -1,5 +1,12 @@\n /* @flow */\n \n+// () => ({\n+// component: import('./xxx.vue'),\n+// delay: 200,\n+// loading: LoadingComponent,\n+// error: ErrorComponent\n+// })\n+\n import {\n warn,\n isObject", "additions": 7, ...
2017-04-01T06:07:05
golang/go
117297cf42c5fd96fc1392e600c8d62d3bba7c5f
ca3dd1d36b5aa2dd810d31ec425a32902ae50ba9
go/types: simplify method set computation After fixing #37081 we don't need to explicitly keep track of field collisions in the method set computation anymore; we only need to know which field (names) exists at each embedding level. Simplify the code by removing the dedicated fieldSet data type in favor of a simple st...
[ { "path": "src/go/types/methodset.go", "patch": "@@ -99,8 +99,8 @@ func NewMethodSet(T Type) *MethodSet {\n \tfor len(current) > 0 {\n \t\tvar next []embeddedType // embedded types found at current depth\n \n-\t\t// field and method sets at current depth, allocated lazily\n-\t\tvar fset fieldSet\n+\t\t// fi...
2020-02-08T00:01:01
ggml-org/llama.cpp
3865cff4f5b84c16119590efd6ce537789a27715
d03172cc797b6adbbc00bfc09caf614fb0f895a0
convert : fix null head_dim AutoConfig regression (#14248)
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -556,11 +556,8 @@ def set_gguf_parameters(self):\n logger.info(f\"gguf: experts used count = {n_experts_used}\")\n \n if (head_dim := self.hparams.get(\"head_dim\")) is not None:\n- # Workaround for incorrect AutoConfig value for...
2025-06-18T07:52:07
huggingface/transformers
41c42f85f61b0c333e940c6d424fdfb81e180a7b
4b423e607455a7aca1edc4beaa713da58e78ef0b
[`FA2`] Fix flash attention 2 fine-tuning with Falcon (#26852) fix fa2 + dropout issue
[ { "path": "src/transformers/models/falcon/modeling_falcon.py", "patch": "@@ -606,7 +606,7 @@ def forward(\n if alibi is not None:\n raise ValueError(\"`alibi` is not supported when `use_flash_attn` is True\")\n \n- attn_dropout = self.attention_dropout if self.training else 0.0\n+...
2023-10-17T13:38:03
nodejs/node
b6e2cde4b401b5131f28afe58a558eb11ee20bed
61adb264c0084b44c55d08e3a3e35eb0b31d76bb
doc: fs constants for Node < v6.3.0 in fs.md Add changelog history in `fs.access` for the changes introduced to `constants` in the `fs` module prior to Node v6.3.0. PR-URL: https://github.com/nodejs/node/pull/12690 Fixes: https://github.com/nodejs/node/issues/8044 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed...
[ { "path": "doc/api/fs.md", "patch": "@@ -426,6 +426,13 @@ changes:\n pr-url: https://github.com/nodejs/node/pull/10739\n description: The `path` parameter can be a WHATWG `URL` object using `file:`\n protocol. Support is currently still *experimental*.\n+ - version: v6.3.0\n+ pr...
2017-06-11T20:42:06
vuejs/vue
80fa9bf3d69c9b3c3848b927454aca94990edecf
1648adb6c7bcc8a3a8dd887640858051ce4dc58d
fix hydration tests
[ { "path": "test/unit/modules/vdom/patch/hydration.spec.js", "patch": "@@ -1,7 +1,7 @@\n import Vue from 'vue'\n import VNode from 'core/vdom/vnode'\n-import { SSR_ATTR } from 'shared/util'\n import { patch } from 'web/runtime/patch'\n+import { SSR_ATTR } from 'shared/constants'\n \n describe('vdom patch: hy...
2017-03-31T09:23:49
golang/go
ca3dd1d36b5aa2dd810d31ec425a32902ae50ba9
97a268624c9f2830133d2bdfae677f5d99ec82cb
go/types: fix method set computation When computing method sets, any struct field that "shadows" a method at a lower embedding level eliminates that method from the method set. Treat any field at a given level as a "collision" for any methods at lower embedding level. Method sets are not directly used by go/types (ex...
[ { "path": "src/go/types/example_test.go", "patch": "@@ -120,6 +120,9 @@ import \"fmt\"\n type Celsius float64\n func (c Celsius) String() string { return fmt.Sprintf(\"%g°C\", c) }\n func (c *Celsius) SetF(f float64) { *c = Celsius(f - 32 / 9 * 5) }\n+\n+type S struct { I; m int }\n+type I interface { m() ...
2020-02-07T23:26:19
ggml-org/llama.cpp
dd8e59f4435342eda93c5b0cf4109e21c9c7d0eb
bbe98d27840453c8787d18470963530fdc27d89f
ggml : disable warnings for tests when using MSVC (ggml/1273) * ggml : disable warnings for tests when using MSVC This commit disables warnings for tests on windows when using MSVC. The motivation for this is that this brings the build output more inline with what Linux/MacOS systems produce. There is still one war...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -368,6 +368,7 @@ if (MSVC)\n /wd4005 # Macro redefinition\n /wd4244 # Conversion from one type to another type, possible loss of data\n /wd4267 # Conversion from 'size_t' to a smaller type, possible loss of data\n+ /wd4305 # Co...
2025-06-13T13:06:42
huggingface/transformers
85e9d644806f2653251f5f965ab2c5cd35d92839
b3961f7291307ee877ef1a4d057949597d805220
fix: when window_size is passes as array (#26800)
[ { "path": "src/transformers/models/swinv2/modeling_swinv2.py", "patch": "@@ -791,14 +791,19 @@ def __init__(\n super().__init__()\n self.config = config\n self.dim = dim\n+ window_size = (\n+ config.window_size\n+ if isinstance(config.window_size, collect...
2023-10-17T07:26:03
nodejs/node
61adb264c0084b44c55d08e3a3e35eb0b31d76bb
a08b59f2a6bac0cc9207e9ea980481ea704a11fd
test: fix flaky test-http-client-get-url Fixed test-http-client-get-url by waiting on HTTP GET requests to finish before closing the server. PR-URL: https://github.com/nodejs/node/pull/13516 Fixes: https://github.com/nodejs/node/issues/13507 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <c...
[ { "path": "test/parallel/test-http-client-get-url.js", "patch": "@@ -25,19 +25,23 @@ const assert = require('assert');\n const http = require('http');\n const url = require('url');\n const URL = url.URL;\n+const testPath = '/foo?bar';\n \n-const server = http.createServer(common.mustCall(function(req, res) ...
2017-06-07T11:56:20
vuejs/vue
1648adb6c7bcc8a3a8dd887640858051ce4dc58d
69e62f0a74b6a6baab1d66dd0433cdfb410bdae7
fix import
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -14,7 +14,7 @@\n \n import VNode from './vnode'\n import config from '../config'\n-import { SSR_ATTR } from 'shared/util'\n+import { SSR_ATTR } from 'shared/constants'\n import { registerRef } from './modules/ref'\n import { activeInstance } from '../instance...
2017-03-31T09:05:25
ggml-org/llama.cpp
fe9d60e74a6cb71bcaed2029377bfa2872b4abb0
e434e69183fd9e1031f4445002083178c331a28b
musa: fix build warning (unused variable) (#14231) Signed-off-by: Xiaodong Ye <xiaodong.ye@mthreads.com>
[ { "path": "ggml/src/ggml-cuda/ggml-cuda.cu", "patch": "@@ -2664,7 +2664,9 @@ static void evaluate_and_capture_cuda_graph(ggml_backend_cuda_context * cuda_ctx\n ggml_backend_buft_is_cuda_split(node->src[j]->buffer->buft) || (integrated && ggml_backend_buft_is_cuda_host(node->sr...
2025-06-17T09:48:08
huggingface/transformers
b3961f7291307ee877ef1a4d057949597d805220
b8f1cde931392551f74a9abef5d2724c3cbc2208
Chore: Typo fixed in multiple files of docs/source/en/model_doc (#26833) * Chore: Typo fixed in multiple files of docs/source/en/model_doc * Update docs/source/en/model_doc/nllb-moe.md Co-authored-by: Aryan V S <avs050602@gmail.com> --------- Co-authored-by: Aryan V S <avs050602@gmail.com>
[ { "path": "docs/source/en/model_doc/bark.md", "patch": "@@ -64,7 +64,7 @@ model.enable_cpu_offload()\n \n Note that 🤗 Accelerate must be installed before using this feature. [Here's how to install it.](https://huggingface.co/docs/accelerate/basic_tutorials/install)\n \n-#### Combining optimizaton technique...
2023-10-17T05:10:08
golang/go
97a268624c9f2830133d2bdfae677f5d99ec82cb
37fc092be1ffe4906f67eae1c4c7be40f00f89ed
cmd/compile: add -d=ssa/check/seed=SEED This change adds the option to run the ssa checker with a random seed. The current system uses a completely fixed seed, which is good for reproducibility but bad for exploring the state space. Preserve what we have, but also provide a way for the caller to provide a seed. The c...
[ { "path": "src/cmd/compile/internal/ssa/compile.go", "patch": "@@ -35,7 +35,8 @@ func Compile(f *Func) {\n \n \tvar rnd *rand.Rand\n \tif checkEnabled {\n-\t\trnd = rand.New(rand.NewSource(int64(crc32.ChecksumIEEE(([]byte)(f.Name)))))\n+\t\tseed := int64(crc32.ChecksumIEEE(([]byte)(f.Name))) ^ int64(checkRa...
2020-01-24T21:52:41
nodejs/node
a08b59f2a6bac0cc9207e9ea980481ea704a11fd
af3aa682ac534bb55765f5fef2755a88e5ff2580
test: refactor async-hooks test-callback-error Two child processes have their logic in a switch statement and a third uses an `if` statement to detect it. Move all three child process tasks into switch statement. PR-URL: https://github.com/nodejs/node/pull/13554 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Revi...
[ { "path": "test/async-hooks/test-callback-error.js", "patch": "@@ -24,15 +24,14 @@ switch (process.argv[2]) {\n async_hooks.triggerId());\n async_hooks.emitBefore(async_hooks.currentId());\n break;\n-}\n-\n-if (process.execArgv.includes('--abort-on-uncaught-exception')) {\n-...
2017-06-08T19:25:31
ggml-org/llama.cpp
89fea80d298184d1cd93564f48e060d9f541f4b4
6adc3c3ebc029af058ac950a8e2a825fdf18ecc6
server : fix incorrect usage of llama_get_embeddings() (#14225) * server : fix incorrect usage of llama_get_embeddings() ggml-ci * cont : fix the fix ggml-ci
[ { "path": "include/llama.h", "patch": "@@ -965,6 +965,7 @@ extern \"C\" {\n LLAMA_API int32_t llama_n_threads_batch(struct llama_context * ctx);\n \n // Set whether the context outputs embeddings or not\n+ // TODO: rename to avoid confusion with llama_get_embeddings()\n LLAMA_API void llama_s...
2025-06-16T19:33:27
huggingface/transformers
b8f1cde931392551f74a9abef5d2724c3cbc2208
fd6a0ade9b89c415ea213ef1aa07c9b2c32a4d75
Fix Mistral OOM again (#26847) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/mistral/test_modeling_mistral.py", "patch": "@@ -437,7 +437,8 @@ def test_model_7b_logits(self):\n input_ids = [1, 306, 4658, 278, 6593, 310, 2834, 338]\n model = MistralForCausalLM.from_pretrained(\"mistralai/Mistral-7B-v0.1\", device_map=\"auto\")\n input_id...
2023-10-16T20:47:20
golang/go
6c64b188a53afec79563cf4ad3c5bc373036d3ae
13355c78ff03607b69ebc8b6da21c09c6b5ffc22
[dev.boringcrypto] crypto/internal/boring: update BoringCrypto module to certificate 3318 Use OPENSSL_malloc for set0 functions as OPENSSL_free now catches us using the libc malloc and aborts. While at it, move the runtime.KeepAlive to the location of the key use. Fixes #30158 Change-Id: I968a98d8974ca5f220e822841b...
[ { "path": "README.boringcrypto.md", "patch": "@@ -1,16 +1,18 @@\n # dev.boringcrypto branch\n \n We have been working inside Google on a fork of Go that uses\n-BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/)) for various crypto primitives, in\n-furtherance of some [work ...
2020-02-05T23:24:23
rust-lang/rust
6a566ee092cacf6e4b327e7fdbbb1003a514b820
6556147d15f077dfc88dae22f3983b3598bce465
Replace ParseSess::set_dcx with DiagCtxt::set_emitter Replacing the error emitter doesn't accidentally clear the error count.
[ { "path": "compiler/rustc_errors/src/lib.rs", "patch": "@@ -712,6 +712,10 @@ impl DiagCtxt {\n inner.emitter = new_emitter;\n }\n \n+ pub fn set_emitter(&self, emitter: Box<dyn Emitter + DynSend>) {\n+ self.inner.borrow_mut().emitter = emitter;\n+ }\n+\n /// Translate `message` ...
2025-02-02T16:06:16
ggml-org/llama.cpp
ad590be98c83217fcf1a101d78d9ab389fd5dc0b
7d6d91babfa129906b39c9099eca4234c44f4f1e
model : add NeoBERT (#14164) * convert neobert model to gguf * add inference graph * fix flake8 lint * followed reviewer suggestions Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> * follow reviewers suggestions Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> * override NeoBERT feed-forward length ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -519,7 +519,7 @@ def prepare_metadata(self, vocab_only: bool):\n def set_gguf_parameters(self):\n self.gguf_writer.add_block_count(self.block_count)\n \n- if (n_ctx := self.find_hparam([\"max_position_embeddings\", \"n_ctx\", \"n_positions\"...
2025-06-16T12:53:41
vuejs/vue
2451c45d4f1d9ff50ab0abd638a3d8bf37ff55e7
2fe42ef0c55eb065e7cf6a5850e2de3f1bcf69eb
fix preload for used chunks
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -23,8 +23,8 @@ export type ParsedTemplate = {\n export default class TemplateRenderer {\n template: ParsedTemplate;\n publicPath: string;\n- preloadLinks: ?string;\n- asyncFiles: ?Array<string>;\n+ preloadFiles: ?Array<string>;\n+ prefe...
2017-03-27T12:26:07
nodejs/node
af3aa682ac534bb55765f5fef2755a88e5ff2580
780acc2208a3cdd3b01ae93aeaa478771fd3fd56
util: add callbackify Add `util.callbackify(function)` for creating callback style functions from functions returning a `Thenable` PR-URL: https://github.com/nodejs/node/pull/12712 Fixes: https://github.com/nodejs/CTC/issues/109 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Teddy Katz <teddy.kat...
[ { "path": "doc/api/util.md", "patch": "@@ -10,6 +10,64 @@ module developers as well. It can be accessed using:\n const util = require('util');\n ```\n \n+## util.callbackify(original)\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `original` {Function} An `async` function\n+* Returns: {Function} a callback sty...
2017-04-28T01:57:12
huggingface/transformers
fd6a0ade9b89c415ea213ef1aa07c9b2c32a4d75
14b04b4b9c483d94fadd2b5479ed9430bae8ac84
🚨🚨🚨 [`Quantization`] Store the original dtype in the config as a private attribute 🚨🚨🚨 (#26761) * First step * fix * add adjustements for gptq * change to `_pre_quantization_dtype` * Update src/transformers/modeling_utils.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> ...
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -854,6 +854,9 @@ def to_diff_dict(self) -> Dict[str, Any]:\n else self.quantization_config\n )\n \n+ # pop the `_pre_quantization_dtype` as torch.dtypes are not serializable.\n+ _ = serializab...
2023-10-16T17:56:53
rust-lang/rust
abdee777c24c9ad398044b819a93f7a8903acbd3
984cc68c1c120811b8bc50e7b3c81d49f9e6ade8
Some cleanups around EarlyDiagCtxt All callers of EarlyDiagCtxt::early_error now emit a fatal error.
[ { "path": "src/driver.rs", "patch": "@@ -197,7 +197,7 @@ pub fn main() {\n });\n \n exit(rustc_driver::catch_with_exit_code(move || {\n- let mut orig_args = rustc_driver::args::raw_args(&early_dcx)?;\n+ let mut orig_args = rustc_driver::args::raw_args(&early_dcx);\n \n let has_...
2025-02-02T15:17:29
golang/go
63f1bc59922d454f288ad3d193bc60d7c980dbb0
a2bff7c2964c6bf2c9741eb767d749d773f20770
runtime: print instruction bytes when reporting a SIGILL Print the bytes of the instruction that generated a SIGILL. This should help us respond to bug reports without having to go back-and-forth with the reporter to get the instruction involved. Might also help with SIGILL problems that are difficult to reproduce. U...
[ { "path": "src/runtime/signal_unix.go", "patch": "@@ -607,6 +607,30 @@ func sighandler(sig uint32, info *siginfo, ctxt unsafe.Pointer, gp *g) {\n \t\tprint(\"signal arrived during cgo execution\\n\")\n \t\tgp = _g_.m.lockedg.ptr()\n \t}\n+\tif sig == _SIGILL {\n+\t\t// It would be nice to know how long the ...
2020-02-28T20:59:38
vuejs/vue
2fe42ef0c55eb065e7cf6a5850e2de3f1bcf69eb
fae6b87786a2829152407d6cb04e79011c77bdae
fix option passing
[ { "path": "package.json", "patch": "@@ -103,6 +103,7 @@\n \"rollup-plugin-replace\": \"^1.1.0\",\n \"rollup-watch\": \"^3.2.2\",\n \"selenium-server\": \"^2.53.1\",\n+ \"serialize-javascript\": \"^1.3.0\",\n \"typescript\": \"^2.1.6\",\n \"uglify-js\": \"^2.6.2\",\n \"vue-ssr-html...
2017-03-27T11:58:17
ggml-org/llama.cpp
d3e64b9f490cee41b7b9aa275dae2f6568ae3054
3ba0d843c6bd3faea5cf5e53dc7f3c82be20bffb
llama : rework embeddings logic (#14208) * llama : rework embeddings logic ggml-ci * cont : fix rerank ggml-ci * cont : engrish [no ci] * cont : fix rerank ggml-ci * server : support both embeddings and completions with single model ggml-ci * cont : avoid embeddings_org ggml-ci
[ { "path": "common/arg.cpp", "patch": "@@ -988,10 +988,6 @@ static bool common_params_parse_ex(int argc, char ** argv, common_params_context\n params.tensor_buft_overrides.push_back({nullptr, nullptr});\n }\n \n- if (params.reranking && params.embedding) {\n- throw std::invalid_argument...
2025-06-16T11:14:00
nodejs/node
780acc2208a3cdd3b01ae93aeaa478771fd3fd56
24e5b6714884ed317f04763758ed0785917f2e92
build,windows: check for VS version and arch PR-URL: https://github.com/nodejs/node/pull/13485 Fixes: https://github.com/nodejs/node/issues/13398 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "vcbuild.bat", "patch": "@@ -166,12 +166,16 @@ if %target_arch%==x64 if %msvs_host_arch%==amd64 set vcvarsall_arg=amd64\n :vs-set-2017\n if \"%target_env%\" NEQ \"vs2017\" goto vs-set-2015\n echo Looking for Visual Studio 2017\n-if \"_%VSCMD_ARG_TGT_ARCH%_\"==\"_%target_arch%_\" goto found_vs2017\...
2017-06-05T21:45:41
huggingface/transformers
14b04b4b9c483d94fadd2b5479ed9430bae8ac84
5c6b83cb69da2fbc58b3c25c0ed7ba354a3d4141
Conversation pipeline fixes (#26795) * Adjust length limits and allow naked conversation list inputs * Adjust length limits and allow naked conversation list inputs * Maybe use a slightly more reasonable limit than 1024 * Skip tests for old models that never supported this anyway * Cleanup input docstrings...
[ { "path": "src/transformers/pipelines/conversational.py", "patch": "@@ -247,13 +247,15 @@ def _sanitize_parameters(\n forward_params.update(generate_kwargs)\n return preprocess_params, forward_params, postprocess_params\n \n- def __call__(self, conversations: Union[Conversation, List[...
2023-10-16T16:27:45
rust-lang/rust
d237378cd164e1bf2fd6f91271abd49c8573ded7
6dd75f0d6802f56564f5f9c947a85ded286d3986
Some cleanups around EarlyDiagCtxt All callers of EarlyDiagCtxt::early_error now emit a fatal error.
[ { "path": "compiler/rustc_driver_impl/src/args.rs", "patch": "@@ -1,7 +1,6 @@\n use std::{env, error, fmt, fs, io};\n \n use rustc_session::EarlyDiagCtxt;\n-use rustc_span::ErrorGuaranteed;\n \n /// Expands argfiles in command line arguments.\n #[derive(Default)]\n@@ -118,22 +117,22 @@ pub fn arg_expand_all...
2025-02-02T15:17:29
golang/go
12d02e7d8e7df75ccbf07ec40028329fcc35c55b
acac535c3ca571beeb168c953d6d672f61387ef1
net/http: verify RoundTripper invariants in the send function Issue #37598 reports a nil-panic in *Client.send that can only occur if one of the RoundTripper invariants is violated. Unfortunately, that condition is currently difficult to diagnose: it manifests as a panic during a Response field access, rather than som...
[ { "path": "src/net/http/client.go", "patch": "@@ -265,6 +265,12 @@ func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, d\n \t\t}\n \t\treturn nil, didTimeout, err\n \t}\n+\tif resp == nil {\n+\t\treturn nil, didTimeout, fmt.Errorf(\"http: RoundTripper implementation (%T) returned ...
2020-03-02T15:16:39
vuejs/vue
6fcfdbd83f424eba19933d453420d762c9bad767
3209f6f517a4fa44c563cd7cc048fa29be1bc930
warn and handle missing get in computed (fix #5265) (#5267)
[ { "path": "src/core/instance/state.js", "patch": "@@ -147,7 +147,16 @@ function initComputed (vm: Component, computed: Object) {\n \n for (const key in computed) {\n const userDef = computed[key]\n- const getter = typeof userDef === 'function' ? userDef : userDef.get\n+ let getter = typeof userD...
2017-03-27T02:41:29
ggml-org/llama.cpp
c89c2d1ab94b11845240b7d3313c87691ea18d88
3555b3004ba7687be3d734acade52a3345758aa4
vulkan: mutex around vkQueueSubmit (#14127) This fixes the remaining crash in test-thread-safety on my system.
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -168,6 +168,11 @@ struct vk_command_pool {\n vk_queue *q;\n };\n \n+// Prevent simultaneous submissions to the same queue.\n+// This could be per vk_queue if we stopped having two vk_queue structures\n+// sharing the same vk::Queue.\n+static...
2025-06-16T06:21:08
huggingface/transformers
5c6b83cb69da2fbc58b3c25c0ed7ba354a3d4141
12cc1233591655528b3f8179c83a806de73fba3e
[docstring] Fix bert generation tokenizer (#26820) * Remove BertGenerationTokenizer from objects to ignore The file BertGenerationTokenizer is removed from objects to ignore as a first step to fix docstring. * Docstrings fix for BertGenerationTokenizer Docstring fix is generated for BertGenerationTokenizer ...
[ { "path": "src/transformers/models/bert_generation/tokenization_bert_generation.py", "patch": "@@ -51,15 +51,19 @@ class BertGenerationTokenizer(PreTrainedTokenizer):\n vocab_file (`str`):\n [SentencePiece](https://github.com/google/sentencepiece) file (generally has a *.spm* extension) ...
2023-10-16T16:26:55
rust-lang/rust
2a519a459cb079e7626f225a2c3755e386ee97cd
f034a1544193a91fc03ced4a047fe8a3fa857b81
fix use of deprecated rand API
[ { "path": "src/tools/miri/src/operator.rs", "patch": "@@ -120,6 +120,6 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n let this = self.eval_context_ref();\n // Return one side non-deterministically.\n let mut rand = this.machine.rng.borrow_mut();\n- if rand...
2025-02-02T15:14:32
nodejs/node
24e5b6714884ed317f04763758ed0785917f2e92
208db5675ebfcf1decdb106f217a4d4ebf17aa17
doc: use HTTPS URL for suggested upstream remote It's impossible to push to git:// URLs. PR-URL: https://github.com/nodejs/node/pull/13602 Fixes: https://github.com/nodejs/node/issues/13600 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -30,7 +30,7 @@ locally.\n ```text\n $ git clone git@github.com:username/node.git\n $ cd node\n-$ git remote add upstream git://github.com/nodejs/node.git\n+$ git remote add upstream https://github.com/nodejs/node.git\n ```\n \n #### Which branch?", "additions": ...
2017-06-10T18:36:13
vuejs/vue
3209f6f517a4fa44c563cd7cc048fa29be1bc930
be076173d059e52517b8e079d6948c22e49b9a2d
remove parent/ref elm references when destroying instance, fix memory leak (fix vue-router#1279)
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -119,15 +119,18 @@ export function lifecycleMixin (Vue: Class<Component>) {\n }\n // call the last hook...\n vm._isDestroyed = true\n+ // invoke destroy hooks on current rendered tree\n+ vm.__patch__(vm._vnode, null)\n+ // fire de...
2017-03-27T01:49:05
golang/go
acac535c3ca571beeb168c953d6d672f61387ef1
b79acf97c79c63779acc77062eef70511a42be9b
doc: race condition in unsynchronized send/close This CL documents that unsynchronized send and close operations on a channel are detected as a race condition. Fixes #27769 Change-Id: I7495a2d0dd834c3f3b6339f8ca18ea21ae979aa8 Reviewed-on: https://go-review.googlesource.com/c/go/+/219637 Reviewed-by: Rob Pike <r@gola...
[ { "path": "doc/articles/race_detector.html", "patch": "@@ -379,6 +379,38 @@ <h3 id=\"Primitive_unprotected_variable\">Primitive unprotected variable</h3>\n }\n </pre>\n \n+<h3 id=\"Unsynchronized_send_and_close_operations\">Unsynchronized send and close operations</h3>\n+\n+<p>\n+As this example demonstrate...
2020-02-16T00:11:53
ggml-org/llama.cpp
3555b3004ba7687be3d734acade52a3345758aa4
d7da8dc83a03b30e1ec10317080082ea76840c38
ggml-cpu : rework weak alias on apple targets (#14146) * ggml-cpu : rework weak alias on apple targets * fix powerpc detection * fix ppc detection * fix powerpc detection on darwin
[ { "path": "ggml/cmake/common.cmake", "patch": "@@ -36,8 +36,7 @@ function(ggml_get_system_arch)\n (NOT CMAKE_OSX_ARCHITECTURES AND NOT CMAKE_GENERATOR_PLATFORM_LWR AND\n CMAKE_SYSTEM_PROCESSOR MATCHES \"^(x86_64|i686|AMD64|amd64)$\"))\n set(GGML_SYSTEM_ARCH \"x86\" PARENT_SCO...
2025-06-16T05:54:15
rust-lang/rust
a5329bd8d38983a57fd66098745099048fa90a2a
88a00a87fa99ef934430b73a6327e0211c79e8a0
autofix for `range_zip_with_len`
[ { "path": "clippy_lints/src/methods/range_zip_with_len.rs", "patch": "@@ -1,6 +1,7 @@\n-use clippy_utils::diagnostics::span_lint;\n+use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::source::snippet;\n use clippy_utils::{SpanlessEq, higher, is_integer_const, is_trait_method};\n+use rustc...
2025-02-02T14:44:22
huggingface/transformers
805d5d2111ea04ba47839a9018b51d1d2f0c9c87
570b3f9cdd18a9e6d075fac561cf2eb11dfec9ce
Add LLM doc (#26058) * [WIP] Add LLM doc * rename * latex * latex * Fix more latex * [LLMs] Getting most out of LLMS * improve * try again * Apply suggestions from code review Co-authored-by: Maria Khalusova <kafooster@gmail.com> Co-authored-by: Younes Belkada <49240599+younesbelkada@users....
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -209,6 +209,8 @@\n title: Pipelines for webserver inference\n - local: model_memory_anatomy\n title: Model training anatomy\n+ - local: llm_tutorial_optimization\n+ title: Getting the most out of LLMs\n title: Conceptual guides\n - sectio...
2023-10-16T14:09:50