text
stringlengths
20
57.3k
labels
class label
4 classes
Title: Need error messages and documentation that you must "fit" before convert Body: In issue #422/#423, users brought up that it's not clear from the error messages that you must fit before convert for most models. We suspect that with KNN we could maybe also work if the model is not trained, but in general (e.g.,...
0easy
Title: Add the ability to test and sort timestamps to be monotonic in a pandas data frame Body: # Brief Description Following up on #703, this issue seeks to introduce the ability to sort the timestamps in a pandas data frame monotonically I would like to propose... # Example API ```python def _test_for_mono...
0easy
Title: BPE's default alpha with sentencepiece Body: ## Description As BPE-dropout is applied to sentencepiece recently, it can be tokenized based on sampling. alpha = 1 is for optimally training not for inference. Default `alpha=1` isn't appropriate because most users and models provided by gluonnlp expect to de...
0easy
Title: Codecov CI job for this project hangs Body: Starting this month, the codecov CI job never succeeds. I am still unsure about the root cause of it but it seems that GitHub Actions runtime is unable to complete all the tests for some reason. Example: https://github.com/slackapi/bolt-python/actions/runs/4805729060/j...
0easy
Title: Branch Lifecycle metric API Body: The canonical definition is here: https://chaoss.community/?p=3590
0easy
Title: [Type 3] Don't let signin requests be sent if they use http when server expects https Body: We very often see users getting an inexplicable error because they entered a http url and the server expected https: 405 Method Not Allowed (https://tableau.github.io/server-client-python/docs/sign-in-out#405000-method-no...
0easy
Title: Update your project(s) building on CircleCI 1.0 with this configuration tool Body: We noticed that the projects listed below are building on CircleCI 1.0 without a configuration file. https://circleci.com/gh/manahl/arctic As a result of sunsetting CircleCI 1.0 on August 31st, 2018, the project(s) listed abo...
0easy
Title: Update `pre-commit-config.yaml` to enforce `CHANGELOG.md` is formatted Body: ### Summary ```diff diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 693a051365..66db6eaf25 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: rev: "v2.7.1" hooks: ...
0easy
Title: Goin' Fast URL IPv6 address is not bracketed Body: Sanic says: ``` sanic myprogram.app -H :: Goin' Fast @ http://:::8000 ``` The correct formatting for IPv6 would be: ``` Goin' Fast @ http://[::]:8000 ``` Fixing the Goin' fast banner in `sanic/app.py` would be an easy enough task for someone wishing...
0easy
Title: i18n babel can not extract lazy text strings correct Body: ### Checklist - [X] I am sure the error is coming from aiogram code - [X] I have searched in the issue tracker for similar bug reports, including closed ones ### Operating system Any ### Python version 3.10 ### aiogram version 3.3....
0easy
Title: test_verbosity_guess_miss_match fails with sources from PyPI Body: If you take tox sources from PyPI, there is no `tox.ini` file in them, which makes `test_verbosity_guess_miss_match` fail because tox complains about missing config file and therefore the output is not as expected. The output is: ``` tests/c...
0easy
Title: `Lists Should Be Equal` does not work as expected with `ignore_case` and `ignore_order` arguments Body: Looks like 'Lists Should Be Equal' does not work in one of the scenarios as mentioned below ``` ${list1} Create List AbC AEF ${list2} Create List AEF ABC Lists Should Be Equal ${list1} ...
0easy
Title: [BUG] Cms check show wrong error Body: <!-- Please fill in each section below, otherwise, your issue will be closed. This info allows django CMS maintainers to diagnose (and fix!) your issue as quickly as possible. --> ## Description Wrong error with MIDDLEWARE_CLASSES after check command, with wrong mid...
0easy
Title: Incorrect typehints in route shorthand methods Body: **Describe the bug** Route decorators in `sanic/mixins/routes.py` have incorrect typehints for the ` version` parameter. **Expected** https://github.com/sanic-org/sanic/blob/b731a6b48c8bb6148e46df79d39a635657c9c1aa/sanic/mixins/routes.py#L58 **Actual**...
0easy
Title: setup.py missing six dependency Body: Commit dcfba0ea808dda8224d2f52e64f099a2bbf2b5f8 started using the six module, but setup.py wasn't changed to add six to install_requires.
0easy
Title: [BUG-REPORT] str.replace(..., regex=True) : can't use capture group in repl str Body: vaex.from_arrays(s=['a,b']).s.str.replace(r'(\w+)',r'--\g<1>==',regex=True) when using capture group in <repl> str, it fails, while str_pandas.replace() is correct ![image](https://user-images.githubusercontent.com/87395223...
0easy
Title: Add utlity functions to get URLs of dashboards for specific KPIs Body: ## Tell us about the problem you're trying to solve Currently, URLs to KPIs are constructed directly in f-strings using the URL prefix. This leads to repetition of the same code across many files and any change in the URL needs to be chang...
0easy
Title: Testing: self.resp_options.default_media_type Body: Test that setting self.resp_options.default_media_type overrides the default media type passed into the falcon.API() and falcon.wsgi.App() initializers.
0easy
Title: %info ubuntu 22 no output Body: ### Describe the bug ![image](https://github.com/OpenInterpreter/open-interpreter/assets/4324290/df2e6d64-25ec-4108-8ab6-f6011d169790) ### Reproduce interpreter -l -m openai/lmstudio %info ### Expected behavior Print out debug info ### Screenshots _No response_ ### Op...
0easy
Title: Compute predictions from selected model Body: Details in discussion https://github.com/mljar/mljar-supervised/discussions/421
0easy
Title: Marketplace - Change the margins from 64px to 25px between the divider line and the section title Body: ### Describe your issue. Change the margins from 64px to 25px between the divider line and the section title ![image](https://github.com/user-attachments/assets/ab83d919-123e-49cc-8228-5a34850cd629) ...
0easy
Title: [NEW TRANSFORMER] exponential width discretiser Body: when a variable is in a logarithmic scale, it might make sense to create the intervals based on a log scale instead of linear scale. Quote: " When the numbers span multiple magnitudes, it may be better to group by powers of 10 (or powers of any constant...
0easy
Title: Feature Request: Improve Notes display Body: Give alternate views (table/column etc), sort notes by date by default
0easy
Title: Update to newest version of webdataset Body:
0easy
Title: In Sample Program - Instantiation of Browser class should also include the browser name parameter Body: **_What is the Issue ?**_ In https://splinter.readthedocs.io/en/latest/tutorial.html. When creating an browser instance we need to pass it a parameter, i.e the name of the browser. But the ReadMe doesn't stat...
0easy
Title: ruff: adopt `D` rule for docstrings Body: since github.com/PyCQA/docformatter has some wrong configuration for pre-commit in the newer versions of the hardcoded rev we are using, we may migrate it to use ruff instead. some changes/updates may be necessary, I am not expecting to only uncomment (https://github.com...
0easy
Title: [QUESTION] XGBModel fit method in Darts raises "sample_weight_eval_set's length does not equal eval_set's length" error when using val_sample_weight Body: **Describe the issue linked to the documentation** I'm encountering an issue with Darts' `XGBModel` when trying to fit it with `val_sample_weight` provided...
0easy
Title: Move n_features from supported conf to internal Body: `N_FEATURES` is not in `supported.py` but I think it should not be surfaced to users but just used internally (it is much easier to pass a test dataset rather than having specific configurations for the each algorithm).
0easy
Title: Add Quart framework adapter Body: want to support the asyncio loop in quart apps
0easy
Title: [DOC] API Policy Body: I would like to put the following API policy in place in the docs: > pyjanitor only extends or aliases the pandas API (and other dataframe APIs), but will never fix or replace them. > Undesirable pandas behaviour should be reported upstream in the pandas repository. > If at some point...
0easy
Title: Change paths passed to listener v3 methods to `pathlib.Path` instances Body: Listeners have methods like `output_file` and `log_file` that are called when result files are ready. At the moment they get the path to the file as a string, but I believe with listener v3 methods we should use [pathlib.Path](https://d...
0easy
Title: invoke setup may break due to psycopg2 Body:
0easy
Title: [new]: `send_teams_message(message, webhook_url)` Body: ### Check the idea has not already been suggested - [X] I could not find my idea in [existing issues](https://github.com/unytics/bigfunctions/issues?q=is%3Aissue+is%3Aopen+label%3Anew-bigfunction) ### Edit the title above with self-explanatory function na...
0easy
Title: ใ€ๅŠจๆ€ๅ‘ๅธƒ้—ฎ้ข˜ใ€‘ๅผ‚ๆญฅๅ‡ฝๆ•ฐ้‡Œๅญ˜ๅœจๅŒๆญฅ่ฏทๆฑ‚็š„่ฐƒ็”จ Body: https://github.com/Nemo2011/bilibili-api/blob/11c33b16003f3111684421fb9ad4cbea5833ef18/bilibili_api/utils/picture.py#L164C29-L164C37 ไผ˜ๅŒ–ๅ‚่€ƒ ```python def __set_picture_meta_from_bytes(self: Picture, imgtype: str): img = Image.open(io.BytesIO(self.content)) self.size = ...
0easy
Title: [new] `recover_table(fully_qualified_table, timestamp)` Body: Undelete a table https://stackoverflow.com/questions/27537720/how-can-i-undelete-a-bigquery-table
0easy
Title: Feature: AsyncAPI HTTP support Body: Using **AsgiFastStream** object we can register some HTTP routes our application serve. We should draw such routes in **AsyncAPI** specification as well. This feature should be togglable for sure in the basic `include_in_schema=True/False` way, but I am not sure about default...
0easy
Title: ๆทปๅŠ ๅ‘้€ไธ“ๆ ็š„api Body: ### Discussed in https://github.com/Nemo2011/bilibili-api/discussions/741 <div type='discussions-op-text'> <sup>Originally posted by **adk23333** April 12, 2024</sup> [ๅˆๅนถๅ›พๆ–‡็š„่ฎฎ้ข˜](https://github.com/Nemo2011/bilibili-api/issues/662) ๆ˜ฏๆš‚ๆ—ถๆฒกๆ—ถ้—ดๆทปๅŠ ่ฟ˜ๆ˜ฏ่ฟ™้‡Œ้ขๆœ‰ๅ‘๏ผŒๆ— ๅ‘็š„่ฏ๏ผŒๆˆ‘ๅŽป่ฏ•่ฏ•๏ผŸ</div>
0easy
Title: Refactoring: xontribs Body: This is metaissue for list of tasks on refactoring. Medium priority: * I noticed that reading the xontribs list for autoloaders takes a bit of time. It will be cool to avoid this completely e.g. when there is no xontrib module in site-packages (https://github.com/xonsh/xonsh/pull/...
0easy
Title: Error handling in contract parsing Body: We found that there is no proper handling for unmatched regexes in `โ€Žscrapy.contracts.ContractsManager.extract_contracts()`, so e.g. calling `from_method()` on a method with `@ foo` in the docstring produces an unhandled exception. I think we should just skip lines that d...
0easy
Title: Refactor: pkg_resources will be deprecated, instead use importlib.resources Body: There are currently, many instances where we use `pkg_resources`, but it will be deprecated. Instead, let's use `importlib` as suggested. Remove it also from `requirements.txt`. This exists in many labeler files and tests. Re...
0easy
Title: Feature: add `broker.ping()` method Body: We should add a mechanism to check real connection to broker liveness as a step of #1181 impl First of all, we should add abstract method to [`BrokerUsecase` class](https://github.com/airtai/faststream/blob/main/faststream/broker/core/usecase.py#L48) Then we should...
0easy
Title: Loudly deprecate old Python 2/3 compatibility layer and other deprecated utils Body: We "quietly" deprecated Python 2/3 compatibility layer in RF 5.0 (#4150) and `TRUE/FALSE_STRINGS` in RF 6.0 (#4500). Should deprecate them more loudly in RF 7.0. As discussed in #4150, deprecating constants is easiest with modul...
0easy
Title: `CountFrequencyEncoder` could output zeros for new categories Body: The `CountFrequencyEncoder` has an `errors` argument which can either raise an error or output NaNs when encountering new categories. For this particular class, it'd make sense (perhaps even as a default behavior) to output zeros when a new cate...
0easy
Title: Enhance `Revealer` Clickable Area for Collapsing Body: ### Description Currently, the `Revealer` component is only collapsible when clicking on the first row, where the revealer sign is located. To improve the user experience, it would be beneficial to make the entire `Revealer` box clickable for collapsing. ...
0easy
Title: [Bug] fix gemma-2-2b-it-FP8 accuracy Body: ### Checklist - [ ] 1. I have searched related issues but cannot get the expected help. - [ ] 2. The bug has not been fixed in the latest version. - [ ] 3. Please note that if the bug-related issue you submitted lacks corresponding environment info and a minimal reprod...
0easy
Title: [ENH] support .query()-style strings in df.update_where() Body: Given the `update_where` example: ```python # The dataframe must be assigned to a variable first. data = { "a": [1, 2, 3, 4], "b": [5, 6, 7, 8], "c": [0, 0, 0, 0] } df = pd.DataFrame(data) df = ( df .update_where( ...
0easy
Title: Create development guide Body: <!-- Please use the appropriate issue title format: BUG REPORT Bug: {Short description of bug} SUGGESTION Suggestion: {Short description of suggestion} OTHER {Question|Discussion|Whatever}: {Short description} --> ## Description Currently, th...
0easy
Title: Decide and document XDG media type Body: I've created an issue to XDG mimetypes repo about adding a mediatype for robot framework https://gitlab.freedesktop.org/xdg/shared-mime-info/-/issues/198 I think having mediatype `text/robotframework` would be ok. This means any text editor would know it's a text file...
0easy
Title: [FEA] Radial and linear hierarchical layouts Body: From discussions with @sevickson : The radial and linear layout modes are helpful for API usage, so we should make it easy for pygraphistry/api users to make them! This comes down to a few things, and can be done in stages: ### Components *PyGraphist...
0easy
Title: docs: fullwidth.html doesn't exist? Body: ### Discussed in https://github.com/django-cms/django-cms/discussions/8003 <div type='discussions-op-text'> <sup>Originally posted by **jfmatth** September 19, 2024</sup> Hi, trying to get django-cms working and the tutorial mentions that fullwidth.html is the fir...
0easy
Title: Handle start index with `FOR IN ENUMERATE` loops already in parser Body: We added support for the optional start index in RF 4.0 (#3781). It was implemented so that only the runner object detected that the last iterated value has `start=` prefix and the parser doesn't know anything about it. When similar configu...
0easy
Title: New Libdoc UI translations Body: Libdoc got a support for localizing the UI in HTML outputs in RF 7.2 (#3676). Let's use this issue to track new translations in RF 7.3. - [ ] Italian (PR #5342)
0easy
Title: Time to First Response metric API Body: The canonical definition is here: https://chaoss.community/?p=3448
0easy
Title: Some functions not showing on the API documentation page Body: Noticed that some functions are missing from the API documentation page. ```unionize_dataframe_categories``` and ```move``` functions are not listed on the API docs page. Not sure which other ones are missing. Not sure how this can be fixed; if anyon...
0easy
Title: [BUG] django-cms and django-modeltranslation 0.19.3+ Body: ## Description Using these two together causes `allow_children` and `child_classes` to be ignored, and `disable_child_plugins` is always set in the structure editor. And maybe more. ## Steps to reproduce Install django-cms 3.11.X, and django-mod...
0easy
Title: Django40 deprecation warnings Body: **Describe the bug** When upgrading to ue Django 3.1.2, the following warnings are emitted: ``` /usr/local/lib/python3.8/dist-packages/import_export/admin.py:368: RemovedInDjango40Warning: django.conf.urls.url() is deprecated in favor of django.urls.re_path(). url(r'...
0easy
Title: [Feature]: Support openai responses API interface Body: ### ๐Ÿš€ The feature, motivation and pitch OpenAI has released a new Responses API, but vLLM does not currently support it. We request that vLLM adds compatibility with this API to stay in sync with OpenAI's updates. Supporting the Responses API will enhan...
0easy
Title: "cmd" disabled or not supported Body: ### Describe the bug ![image](https://github.com/KillianLucas/open-interpreter/assets/4324290/ead1ef8b-49ae-4fc3-9d5a-a49a39fd669b) ### Reproduce The language model is: bagelmisterytour not really relevant ### Expected behavior We should make it use powershell when c...
0easy
Title: Histogram error with `>u2` dtype Body: The histogram function when plotting does not work with certain dtypes. Example of this: ```python import dask.array as da import hyperspy.api as hs data = da.arange(0, 10000, dtype='>u2').reshape((100, 100)) s = hs.signals.Signal2D(data).as_lazy() s.plot() # Press...
0easy
Title: [BUG] black and flake disagree Body: This is cool with `black` but not with `flake8` ```python def test_throw_valuerror_given_nonsense(): X = np.ones((10, 2)) y = np.ones(10) with pytest.raises(ValueError): x_transform = IntervalEncoder(n_chunks=0).fit(X, y) with pytest.raises(V...
0easy
Title: payjs ๅพฎไฟกไบŒ็ปด็ ่ฐƒ็”จๅคฑ่ดฅ Body: ![](https://img.vim-cn.com/9c/6366b9de13a8a2bb17b81afe9f1af742df6159.jpg) ๅทฒ็ป็กฎ่ฎค mchid ๅ’Œ payjs_key ๆญฃ็กฎใ€‚ ๅœจ 1.6 ไธ‹ๆญฃๅธธ๏ผŒๅ‡็บงๅˆฐ 1.83 ๅŽๅญ˜ๅœจไธŠ่ฟฐ้”™่ฏฏใ€‚ ๅœฐๅ€๏ผšhttps://store.dig77.com
0easy
Title: Ability to dynamically update data in heatmaps Body: Currently, the style of a heatmap can be updated dynamically after the map has been rendered, but not the underlying data. The abilty to do this would be useful. This was originally raised in issue #186.
0easy
Title: Items are not converted when using generics like `list[int]` and passing object, not string Body: We added support for converting items with generics like `list[int]` and `dict[str, int]` in RF 6.0 (#4433). There unfortunately is a bug that it only works when passing values as string literals, not as actual obje...
0easy
Title: [QOL] Allow delay between requests in case of API throttling Body: ## Context Some APIs in the open have quotas on how many requests can be sent in a specific amount of time. Since GraphQLer doesn't have a sense of how many requests per time interval this is set at, GraphQLer should allow the user to set a cu...
0easy
Title: modify _find_or_check_categorical_variables to support dtype='category' Body: **Is your feature request related to a problem? Please describe.** Currently, _find_or_check_categorical_variables in variable_manipulation.py only checks for type object to determine categorical variables. **Describe the solution ...
0easy
Title: Docs out of sync for `qt_api` Body: Hello! Had a test fail with 4.0.0 like: ``` @pytest.fixture def spawn_terminal(qtbot, blank_pilot_db): prefs.clear() prefs.set('AGENT', 'TERMINAL') pilot_db_fn = blank_pilot_db prefs.set('PILOT_DB', pilot_db_fn) > app = qt...
0easy
Title: Allow rendering deterministic sites Body: Currently, we skip deterministic sites while rendering the model. It would be nice to support plotting deterministic nodes (e.g. to make the rendered model clearer when using reparam handlers). This is especially useful for hierarchical models like the one in #1295
0easy
Title: Add explicit argument converter for `Any` that does no conversion Body: In Python's type system [Any](https://docs.python.org/3/library/typing.html#typing.Any) is used to indicate that any type is accepted. We should add an explicit argument convertor for `Any` that recognizes it but doesn't do any conversion. B...
0easy
Title: Add a "don't ask me anymore" option to the interactive mode Body: this is where we ask for input in vulnerabilities.py
0easy
Title: Remove the st2resulstracker service from st2ctl and development env Body: Mistral was deprecated and removed from the st2 in `v3.3.0` release. However there is a `st2resultstracker` service which is used for polling result from async runner. Mistral was the only async runner which means resultsracker is obsolete...
0easy
Title: Feature request: Windows script for running code generated by GPT-Engineer Body: ## Policy and info - Maintainers will close issues that have been stale for 14 days if they contain relevant answers. - Adding the label "sweep" will automatically turn the issue into a coded pull request. Works best for mechani...
0easy
Title: Docs: being more explicit about why to use api.background.task Body: Hey! When I was reading the docs and I saw `api.background.task`, the first thing that popped into my head was "but you can just use `asyncio.create_task` or `loop,.run_in_executor` for that without inventing something new!". But then I noticed...
0easy
Title: Deprecate `falcon.testing.httpnow()` Body: Apparently this ancient alias has survived unnoticed from the very early iterations of the framework. Wrap it in the [`@deprecated(...)`](https://falcon.readthedocs.io/en/stable/api/util.html#falcon.util.deprecated) decorator so that we don't miss it again. Write ...
0easy
Title: [Feature] support Qwen 3 and Qwen 3 MoE Body: ### Checklist - [ ] 1. If the issue you raised is not a feature but a question, please raise a discussion at https://github.com/sgl-project/sglang/discussions/new/choose Otherwise, it will be closed. - [ ] 2. Please use English, otherwise it will be closed. ### Mot...
0easy
Title: Add estimated train time in Optuna mode Body: In `Optuna` mode the train time is: - `Optuna` tuning for each algorithm = `len(algorithms)*otpuna_time_budget`, - ML model training = `total_train_time`
0easy
Title: In docker/*.Dockerfile remove "<2" from the django dep Body: The qualifier is no longer necessary because we are only testing recent Python 3.x versions.
0easy
Title: ASGI websocket must pass thru bytes as is Body: _Originally posted by @Tronic in https://github.com/sanic-org/sanic/pull/2640#discussion_r1058027028_
0easy
Title: Unintended sharing of `MultipartParseOptions._DEFAULT_HANDLERS` between instances Body: I think we should initialize `media_handlers` in `MultipartParseOptions.__init__()` with a copy `MultipartParseOptions._DEFAULT_HANDLERS`, not just assign reference: ```python >>> from falcon.media.multipart import Multipar...
0easy
Title: Self-attentive Sentence Embedding Tutorial Undeclared Dependency (sklearn) Body: ## Description self-attentive sentence embedding tutorial is using sklearn for accuracy and f1. As we didn't take sklearn as a dependency, we should migrate those usage to the accuracy/f1 in mxnet and drop the dependency in docker
0easy
Title: Finish the TODO list of classes/functions to type. Body: We have a [big todo list of classes/functions to type](https://github.com/keras-team/autokeras/blob/dda2d9de0c602a1f47b45bb26783eacfd9572815/tests/autokeras/typed_api_test.py#L11) (add type hints, see [PEP484](https://www.python.org/dev/peps/pep-0484/) for...
0easy
Title: [tech debt] Merge RGBShift and GaussianNoise Body: Both do the same, the only distribution is the distribution from which noise is sampled. 1. Merge two classes. 2. Add Deprecated warning to `RGBShift`
0easy
Title: [Points] Enable copy-pasting of selected Points between Points layers Body: ## ๐Ÿš€ Feature Allow users to copy Points that are selected in a Points layer and then paste them into another Points layer. ## Motivation Points are very useful for annotating locations of things, they can also be used as prompts for...
0easy
Title: ๐Ÿ™ Please consider sponsoring this project โค๏ธ Body: I really enjoy working on Open Source projects, and seeing my contributions being picked up by others is immensely motivating. Yet, as I am juggling ๐Ÿคน personal and professional life my time is limited and I do have to pick my battles a bit. At times, I am unab...
0easy
Title: Inline completion strips out new line when it should be kept Body: ## Description New line is stripped out if model returns ~~~ ``` ~~~ prefix. ## Reproduce <!--Describe step-by-step instructions to reproduce the behavior--> 1. Write comment like `# load json file` 2. See suggestion gets app...
0easy
Title: RequestOptions.auto_parse_qs_csv documentation is misleading for the True case Body: [`uri.parse_query_string`](https://falcon.readthedocs.io/en/stable/api/util.html#falcon.uri.parse_query_string) supports splitting parameter values on comma, however, only the first occurrence is actually split: ```python >>> ...
0easy
Title: envbindir behavior changed in tox4 Body: ``` ini [tox] skipsdist = true envlist = py{37,38} [testenv] deps = flake8 commands = py37: {[testenv:py37-flake8]commands} py38: {[testenv:py38-flake8]commands} [testenv:py{37,38}-flake8] commands = {envbindir}/flake8 --version ``` ``` console $ venv...
0easy
Title: Handle mentions in the text during a conversation Body: Collapse mentioned users to their server nicknames when people are mentioned in conversations. For example, the bot will see <@120931820938102>, we want to collapse that to that user's server nickname
0easy
Title: test_s3_export fails with boto3 >= 1.36.0 Body: https://github.com/scrapy/scrapy/actions/runs/12845409692/job/35819443101?pr=6618 ``` botocore.exceptions.StubAssertionError: Error getting response stub for operation PutObject: Expected parameters: {'Body': <ANY>, 'Bucket': 'mybucket', 'Key': <ANY>}, but receive...
0easy
Title: Document how libraries can do cleanup activities if Robot's timeout occurs Body: Issue #5376 proposes enhancing the Process library so that if Robot's timeout occurs when a process is waited to end, the process is killed instead of leaving it running on the background. That turned out to be surprisingly simple. ...
0easy
Title: base64 and tracedSVG are not part of ImageObjectType Body: Using the guide, it does not seem that Base64 or SVG exists within the object that defines images types. The documentation section in question is linked here: https://wagtail-grapple.readthedocs.io/en/latest/general-usage/graphql-types.html?highlight=tra...
0easy
Title: Message passed to `log_message` listener method has wrong type Body: Messages should be instances of `robot.result.Message`, but the message that's created during execution, and passed to the `log_message` listener method, is `robot.output.Message` that's based on `robot.model.Message`. There are valid reasons t...
0easy
Title: RangeDetailView should have pagination Body: The page RangeDetailView (oscar/offer/range.html) should show products in pagination. Because there might be too many products in a Range
0easy
Title: add tests: update on filtered query fails when using subquery Body: The original bug was fixed but we obviously lack tests that would have prevented the issue. This issue can be resolved by adding more tests covering usage of `Subquery` with updates. This might be a good first time issue. # Original bug repor...
0easy
Title: Complete function for missing combinations of data Body: # Brief Description I would like to propose the ``complete`` function, similar to tidyr's ``complete`` function, to get missing combinations of data. # Example API ```python #code idea: @pf.register_dataframe_method def complete(df, combinati...
0easy
Title: log1m_exp and log_diff_exp functions Body: When writing custom distributions, it is often helpful to have numerically stable implementations of `log_diff_exp(a, b) := log(exp(a) - exp(b))` and particularly `log1m_exp(x) := log(1 - exp(x))`. The naive implementations are not stable for many probabilistic programm...
0easy
Title: Can't simulate a repeated `CircuitOperation` that contains a `repeat_until` `CircuitOperation` Body: **Description of the issue** Repetitively checking the syndromes of a prepared state before using it to measure stabilizers is an [important primitive for fault tolerance](https://courses.cs.washington.edu/cours...
0easy
Title: [Feature]: Consolidate `LRUCache` implementations Body: ### ๐Ÿš€ The feature, motivation and pitch #14805 introduced `cachetools.LRUCache` to support different size for each item and prepare for a thread-safe implementation. On the other hand, the code under `vllm/adapter_commons` uses the existing `vllm.utils.LR...
0easy
Title: Allow gaussian splatting to initialize start points from other data pipelines than COLMAP Body: Currently, gaussian splatting intakes a pointcloud for initialization either through: 1) using a COLMAP dataset, or 2) adding a pointcloud to `transforms.json` and using the nerfstudio dataparser to read it. Currently...
0easy
Title: Programming Language Distribution metric API Body: The canonical definition is here: https://chaoss.community/?p=3430
0easy
Title: Avoid the error "Slowdown: 20 per 1 minute" Body: I propose to avoid this by waiting 1 second to translate the text. That is, when the user stops typing for 1 second, perform the translation automatically.
0easy