text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: Add timezone property to slack_sdk.models.TimePickerElement class
Body: While Node and Java SDKs already have the new property, this Python SDK still does not have the newly added `timezone` property in the [`TimePickerElement`](https://github.com/slackapi/python-slack-sdk/blob/v3.18.1/slack_sdk/models/blocks/bl... | 0easy |
Title: Docs upgrade
Body: Leaving this from #653, which is a pretty good thing!
If you're thinking about potential changes to the docs, one thing I've been thinking about is providing an alternate/additional view for users to discover functions. I think a user looking at our API pages can see all the functions `jani... | 0easy |
Title: Link to relationship
Body: ### Checklist
- [X] There are no similar issues or pull requests for this yet.
### Is your feature related to a problem? Please describe.
Add auto link in relationship. As example: https://python-sqladmin.herokuapp.com/admin/address/details/1 to get user I need to go to table users,... | 0easy |
Title: Replace all tb.ref examples in docs with tb.get
Body: With #92, a new way of creating reference objects was introduced.
- We will need to replace all instances of `tb.ref` with `tb.get` and also mention that one can use the indexing pattern to create the objects.
- Also mention that when the object is JSON ... | 0easy |
Title: [SDK] Show Valid Katib UI Link
Body: Check this thread: https://github.com/kubeflow/katib/pull/2098#discussion_r1085608043.
Currently, we show Katib UI link when Katib SDK is used from Kubernetes pod and SDK loads [`in-cluster` config](https://github.com/kubeflow/katib/blob/6bcbd2585198d85de90cbd7ffce89cc8bd7... | 0easy |
Title: Include `Message.html` in JSON results only if it is `True`
Body: Currently `robot.result.Message` is serialized to JSON so that the `html` attribute is always included. Including it only if it is `True` makes the resulting JSON data a bit smaller. That is also consistent with other similar attributes that are s... | 0easy |
Title: Add welcome message for new members.
Body: It will be nice to make this bot behave more humanely by using this feature.
You'll add a new env variable for welcome message.
The bot DM every new member with the message.
It should be an embed in case someone wants style.
Happy new year. | 0easy |
Title: FastAPI background_task cleanup is not executed upon error
Body: FastAPI `background_task` cleanup is not executed if any error is encountered.
To reproduce, run this code and add a print in cleanup function.
```py
import litserve as ls
class SimpleLitAPI(ls.LitAPI):
def setup(self, device):
... | 0easy |
Title: [FEATURE] Switch to `ruff`
Body: Might also be good to see what's up with the CI. It seems like the style checks are skipped? | 0easy |
Title: Implement method __iter__ for Application object to avoid infinite loop "for a in app"
Body: The issue has been reported here: https://stackoverflow.com/a/41592702/3648361
The code to reproduce is very simple:
```python
from pywinauto import Application
app = Application()
for a in app:
print(a)
`... | 0easy |
Title: Table: add css class to column headers
Body: ### Description
It would be helpful to have CSS classes associated to column header.
### Solution Proposed
I propose that the classes would be name via this procedure:
- prefix: taipy-table-header-
- suffix: the column name transformed to only allow A-Za-z\-_0-9
... | 0easy |
Title: Conversion Rate metric API
Body: The canonical definition is here: https://chaoss.community/?p=4924 | 0easy |
Title: Docs: Wrong title for `concurrency` reference docs
Body: ### Summary
https://github.com/litestar-org/litestar/blame/7c4dd4bfceea7361ee76815550bfbf6cf185c5b8/docs/reference/concurrency.rst#L1 | 0easy |
Title: Switch to databricks-sql-python library for SQL Integration
Body: ### ๐ The feature
We are currently using the sqlalchemy-databricks library for SQL integration in our project. While it has served us well, we believe that switching to the databricks-sql-python library would be beneficial for several reasons.
... | 0easy |
Title: Fix capitalisation of python (prefer Python) as per Vale suggestion
Body: Vale recommends we use "Python" rather than "python".
<img width="620" alt="image" src="https://github.com/user-attachments/assets/cc1e51ce-3dfc-44f8-b466-0e30d60bc06b">
Task: Search across Vizro docs (vizro-core and vizro-ai) for in... | 0easy |
Title: The "item-pipeline" section example of the docs was not updated.
Body: <!--
Thanks for taking an interest in Scrapy!
If you have a question that starts with "How to...", please see the Scrapy Community page: https://scrapy.org/community/.
The GitHub issue tracker's purpose is to deal with bug reports and ... | 0easy |
Title: Choosing to cancel on list menu dialog
Body: ### Has this issue already been reported?
- [X] I have searched through the existing issues.
### Is this a question rather than an issue?
- [X] This is not a question.
### What type of issue is this?
Bug
### Which Linux distribution did you use?
... | 0easy |
Title: After inserting a fixture, update the primary key sequences
Body: After inserting a fixture:
https://github.com/piccolo-orm/piccolo/blob/8ec9d10313c9ac44916f01e27c9ef58eb22ae0d9/piccolo/apps/fixtures/commands/load.py#L57-L62
For each primary key column we should run something like:
```sql
SELECT setval... | 0easy |
Title: BUG: Cannot read GDB file using a geometry filter (mask)
Body: - [X] I have checked that this issue has not already been reported.
- [X] I have confirmed this bug exists on the latest version of geopandas.
- [ ] (optional) I have confirmed this bug exists on the main branch of geopandas.
---
**Note**... | 0easy |
Title: Migrate away from deprecated github.com/hpcloud/tail
Body: /kind feature
**Describe the solution you'd like**
As https://github.com/hpcloud/tail hasn't been touched for 6 years (it is using Go v1.5.1), and the https://github.com/hpcloud organisation doesn't have any (public) members, we should really stop ... | 0easy |
Title: [CropAnnotator] - mark objects with zoomed in crop
Body: ### Description
Create `CropAnnotator` - whose task is to mark objects related to [`sv.Detections`](https://supervision.roboflow.com/detection/core/#detections) with zoomed-in crops.
Below is an example found on the internet. Of course, as part of t... | 0easy |
Title: Docs: Warn about using `TYPE_CHECKING` for injected types
Body: ### Summary
Typically, annotation-only imports may be skipped during runtime (for perf gains) with `if TYPE_CHECKING` blocks.
There are even linters to enforce this, ie. nag when an annotation-only import is done without `TYPE_CHECKING` block. T... | 0easy |
Title: Check support for Python 3.6
Body: With Python 3.6 out, we should make sure that it is properly supported by factory_boy.
This should work out of the box; but some steps are required to check it:
1. Add Python 3.6 to https://github.com/FactoryBoy/factory_boy/blob/master/tox.ini
2. Add that build in https://... | 0easy |
Title: [BUG] 500 when invalid overwrite url is filled in
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
From time to time some of our clients manage to put ... | 0easy |
Title: Feature: use subscribe in KafkaBroker to create handlers with explicit options propagation
Body: https://aiokafka.readthedocs.io/en/stable/consumer.html?highlight=subscribe#topic-subscription-by-pattern | 0easy |
Title: Enhancement: Abstraction for injecting template globals
Body: ### Summary
It would be nice to have a nice abstraction for injecting globals into templates so that we don't have to do such a dance around this current process (see #basic-examples)
### Basic Example
Some examples of what is currently required ... | 0easy |
Title: Change Requests Declined metric API
Body: The canonical definition is here: https://chaoss.community/?p=3588 | 0easy |
Title: Improve parsing of DateTimeWidget
Body: I think the following code could be improved, by adding a break after `strptime` has returned without an exception:
https://github.com/django-import-export/django-import-export/blob/029396ddeb2c02e651f3f2b6cc666fe0eb8a647a/import_export/widgets.py#L290-L294
The current v... | 0easy |
Title: Make the WHILE loop condition optional
Body: As discussed in issue #4562, if no condition is set on the WHILE loop, the condition should be `True` by default.
Here is an example :
```
*** Test Cases ***
Optional WHILE loop condition
WHILE
Log Test
END
``` | 0easy |
Title: [tech debt] Update params for `RandomResizedCrop`
Body: Match signature of `Albumentations.RandomResizedCrop` and `TorchVision.RandomResizedCrop`
i.e. add parameter `size = [height, width]` and throw deprecated warning for `height / width` | 0easy |
Title: Feature Branch workflow deployment to `pypi`
Body: Setup github workflow to deploy feature branch to `pypi`.
This is a dependency for issue #757. | 0easy |
Title: Add suite and test `id` to JSON result model
Body: Model objects have an `id` attribute that is automatically generated so that the root suite has id `s1`, its first test has id `s1-t1`, its first keyword has `s1-t1-k1`, and so on. Because ids change if there are changes to data, or if different tests are select... | 0easy |
Title: Expand ~ in paths
Body: From #2820 (@tomaarsen)
Expand ~ in paths used in environment variables to the home path of the user's operating system. This is as simple as wrapping a path with path = os.path.expanduser(path). This probably ought to be done in some functions in internals.py. However, files on linux ... | 0easy |
Title: function generate_data
Body: I'm using latest pyod version on pypi. How to generate simulated data where x-axis is time? Thank you. | 0easy |
Title: Configurable link back to Notebook Templates git repo
Body: The URL in the "execute a notebook" sidebar should be configurable, so that we can link back to the repo if users so choose.
If the configuration is called something like GIT_REPO_BASE_URL, then we can also extrapolate the URL for the individual temp... | 0easy |
Title: Add more unit tests to improve code coverage
Body: You can check codecov runs for the lastest master branch and find lines of code that aren't currently covered by any unit test. It would be very helpful if you can add a unit test to cover such lines of code.
Important: any new unit tests you add must run very ... | 0easy |
Title: Pagination not taking the search query into account
Body: ### Checklist
- [X] The bug is reproducible against the latest release or `master`.
- [X] There are no similar issues or pull requests to fix it yet.
### Describe the bug
When on a list page, if you preform a search query, the number of results ... | 0easy |
Title: Docs: Code block line length
Body: ### Summary
For documentation, and only documentation, if you have an overly long code block it enters scrollable window.
We should set `blacken-docs` configuration (and eventually `ruff` when https://github.com/astral-sh/ruff/issues/8237 happens) to line lengths somewhere ... | 0easy |
Title: [Feature request] Add apply_to_images to Normalize
Body: | 0easy |
Title: ไธบไปไนๅ ่ฝฝๅฎ้ข่ฎญ็ปๆจกๅไนๅๅฐฑๅกไฝไธๅจไบ๏ผๆๅคงไฝฌๅฏไปฅ่งฃ็ญไธไธๅ
Body: | 0easy |
Title: FAB auth manager doesn't show error messages on failed log in
Body: ### Apache Airflow version
3.0.0
### What happened?
When you end up on`http://127.0.0.1:9091/auth/login/` (I think this is the FAB auth manager| Maybe it'sand enter gibberish you just get redirected to the same page with no indication of an e... | 0easy |
Title: docs: inline docs/includes to pages itself
Body: We have a lot of `includes/` - https://github.com/airtai/faststream/tree/main/docs/includes files created to share them between different translations. But now, we don't plan to support multilanguage documentation anymore. So, we should inline such files to usages... | 0easy |
Title: JSON.parse: unexpected character at line 1 column 1 of the JSON data
Body: I got this error last night:

The first character in the word I posted was ืข. (Language: Hebrew)
I am w... | 0easy |
Title: refactor `.get` accessor to be generated by metaclass
Body: This is not very visible to the user right now. It's not in the docs. The only reason someone could find it is by using tab completion in IPython or viewing the `dir(.)`.
The best solution is probably make a metaclass wrapper like for `on_*` and `do_... | 0easy |
Title: How to load 3.8.3 gensim word2vec model by new version 4.2.0 gensim model
Body: <!--
**IMPORTANT**:
- Use the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim) to ask general or usage questions. Github issues are only for bug reports.
- Check [Recipes&FAQ](https://github.com/RaRe-Technol... | 0easy |
Title: Add table of content to Config page documentation
Body: Add a table of contents at the top of the [config page](https://lux-api.readthedocs.io/en/latest/source/reference/config.html) in the documentation. | 0easy |
Title: Add DayOfYear primitive
Body: - This primitive determines the day of the year a datetime column falls into
- https://pandas.pydata.org/docs/reference/api/pandas.Timestamp.dayofyear.html | 0easy |
Title: [BUG] df.sort_values() failed when input dataframe is empty
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
df.sort_values() failed when input dataframe is empty.
**To Repro... | 0easy |
Title: Regression: specifying workdir is treated like root
Body: In https://github.com/pypa/twine/issues/684#issuecomment-1350361116, we learned that since tox 4, invoking tox from a tox environment fails to create the environment. Here's a minimal reproducer:
```
draft $ cat > tox.ini
[testenv:parent]
deps=tox
... | 0easy |
Title: Add Support for Radial Gradients
Body: Angular Gradients can sometimes be useful. CSS supports them, so why not expose them | 0easy |
Title: [Bug]: `fontsize` in tables not working
Body: ### Bug summary
Specifying `fontsize` kwarg in `matplotlib.pyplot.table` doesn't have any effect.
### Code for reproduction
```Python
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 100)
y = x + 1
tableData = [['a', 1], ['b', 1]]
... | 0easy |
Title: Change default `FOR IN ZIP` mode from `SHORTEST` to `STRICT`
Body: RF 6.1 made it possible to configure what to do if lengths of lists iterated using `FOR IN ZIP` are different (#4682). The old default behavior to silently ignore items in longer lists (i.e. `SHORTEST` mode) was preserved, but the plan is to depr... | 0easy |
Title: Email admins upon database connection error
Body: In #134, we handle certain database connection errors and return 503 instead of 500. This also suppresses the error emails sent to admins, albeit they are quite useful. Let's bring them back, ร la:
```
import logging
logging.getLogger('django.request').excep... | 0easy |
Title: Reminder: upgrade dependency versions in audio tutorial once their bugs are fixed.
Body: Current versions are there to:
- Avoid this bug in the tensorflow-io library:
https://github.com/tensorflow/io/issues/1687
- Avoid this bug in speechbrain library:
https://github.com/speechbrain/speechbrain/issues/1... | 0easy |
Title: Improve search for alternative backends/clients
Body: Ideas based on https://pydanticlogfire.slack.com/archives/C06EDRBSAH3/p1728466950149999:
1. Searching for "opentelemetry" should return https://logfire.pydantic.dev/docs/guides/advanced/alternative-clients/ and https://logfire.pydantic.dev/docs/guides/adva... | 0easy |
Title: extend non-iid issue check in Datalab
Body: Currently Datalab's non-iid issue type is only detected based on `features`:
https://docs.cleanlab.ai/master/cleanlab/datalab/guide/issue_type_description.html#non-iid-issue
If the user does not input `features`, but does provide` pred_probs`, run this same check b... | 0easy |
Title: Uvicorn fails "quietly" upon a circular import error
Body: ### Discussed in https://github.com/encode/uvicorn/discussions/2034
<div type='discussions-op-text'>
<sup>Originally posted by **mikeedjones** July 8, 2023</sup>
From this [comment](https://github.com/tiangolo/fastapi/discussions/9838#discussionc... | 0easy |
Title: Remove old images
Body: Remove:
- https://github.com/scanapi/scanapi/blob/master/images/overview.png
- https://github.com/scanapi/scanapi/blob/master/images/scanapi-report-example.png
We are not using them anymore. We should have the html report screenshot mentioned [here](https://github.com/scanapi/scana... | 0easy |
Title: Using `sky launch -t <gpu_instance_type>` without specifying `--gpus` doesn't work
Body: Repro
```
(py310) sky launch --num-nodes 10 -t g4dn.12xlarge --use-spot --down -i0
sky.exceptions.ResourcesMismatchError: Infeasible resource demands found:
Instance type requested: g4dn.12xlarge
Accelerators for g4dn.12... | 0easy |
Title: Remove support for feed storage backends without feed_options
Body: Deprecated in 2.4.0. | 0easy |
Title: [Detections] extend `from_transformers` with `class_names` support
Body: ### Description
Currently, Supervision supports class name extraction exclusively for Inference and Ultralytics libraries. Let's enhance [`from_transformers`](https://github.com/roboflow/supervision/blob/781a064d8aa46e3875378ab6aba1dfda... | 0easy |
Title: Simplifying Open Source Contributions Through Operator Tiering from Dev aspect
Body: ### Search before continuing ๅ
ๆ็ดข๏ผๅ็ปง็ปญ
- [X] I have searched the Data-Juicer issues and found no similar feature requests. ๆๅทฒ็ปๆ็ดขไบ Data-Juicer ็ issue ๅ่กจไฝๆฏๆฒกๆๅ็ฐ็ฑปไผผ็ๅ่ฝ้ๆฑใ
### Description ๆ่ฟฐ
### Current state
The complete process ... | 0easy |
Title: Improved handling of navigator in non-lazy signals
Body: With the improved handling of navigator generation for lazy signals in https://github.com/hyperspy/hyperspy/pull/2631, it would be nice to extend parts of this to non-lazy signals as well.
Currently, when `s.plot()` is used for non-lazy signals, the nav... | 0easy |
Title: DateTime: Support `datetime.date` as an input format with date related keywords
Body: Currently the library only accepts `datetime.datetime`, strings (timestamps) and numbers (epoch seconds). Supporting also `datetime.date` would be trivial and it would mean users don't need to convert `datetime.date` objects th... | 0easy |
Title: Help add more datasets to our Data-Centric AI benchmark
Body: Good benchmarking is critical for the success of our tools! Our benchmarks are very unique compared to standard ML benchmarks which assess test accuracy. Instead our benchmarks assess how accurately different algorithms can identify issues in the da... | 0easy |
Title: Support for additional icons
Body: ### Checklist
- [X] There are no similar issues or pull requests for this yet.
### Is your feature related to a problem? Please describe.
_No response_
### Describe the solution you would like.
eg how FastAPI-Admin can specify tabler icons https://tablericons.com/
### Des... | 0easy |
Title: Regression in environment var inheritance in tox 4
Body: ## Issue
I'm not sure if this is a regression, or if I am using a bad pattern that worked by chance in tox3.
I use the base [testenv] to set_env some vars and run unit tests. Then I have a [testenv:functional] that inherits these env vars (most of w... | 0easy |
Title: [FEA] nodes/edges assign
Body: **Is your feature request related to a problem? Please describe.**
Typical node/edge equiv code for pandas `assign` is hard to read and annoying to write, cleaner w/ a native form
Today:
```python
g3 = (g2
.nodes(lambda g2: g2._nodes.assign(mcapLog10=g2._nodes['marke... | 0easy |
Title: Request to add random walk index indicator
Body: Can random walk index indicator be added to the panda-ta library ? thanks
References:
[Technical Indicators](https://www.technicalindicators.net/indicators-technical-analysis/168-rwi-random-walk-index)
[trading sim](https://tradingsim.com/blog/random-walk-ind... | 0easy |
Title: [RFC] Add option to skip reloading on validators.validate
Body: On lines
https://github.com/rochacbruno/dynaconf/blob/master/dynaconf/validator.py#L202-L205
`validators.validate` is calling `from_env` and it makes the variables to be reloaded from source files.
This is not good for testing.
Solution:
... | 0easy |
Title: Improve contributing documentation
Body: Things that we need to do:
- [ ] How to configure the development environment and run the tests
- [ ] Explain usage of each mode
This can also be break down into different PRs.
| 0easy |
Title: Revert changes for local docs build once related sphinx issue is closed
Body: In MR #2367, changes were made in `docs/Makefile` to allow docs to be build locally using the `make html` command. This was needed due to errors that happened when attempting to built the docs with Featuretools installed in editable m... | 0easy |
Title: st2-api-key not obfuscated when using core.http?
Body: ## SUMMARY
I have 2 ST2 instances (independent of each other and in different networks) and want them to communicate with each other via API using API keys. However, when providing st2-api-key to headers of action core.http, the API key is visible in plai... | 0easy |
Title: Will FastAPI support QUERY http method? "app.query"
Body: ### Discussed in https://github.com/fastapi/fastapi/discussions/6049
<div type='discussions-op-text'>
<sup>Originally posted by **FilipeMarch** December 16, 2022</sup>
### First Check
- [X] I added a very descriptive title to this issue.
- [X] ... | 0easy |
Title: Integrate PostgreSQL 16 Support in Django Cookiecutter
Body: ## Description
I propose to add PostgreSQL 16 as a selectable option for the database setup within the Django Cookiecutter project template. This update would necessitate adjustments to Docker configuration files, database connectivity settings, and... | 0easy |
Title: Add IsYearStart primitive
Body: - This primitive returns the `is_year_start` on a datetime column | 0easy |
Title: Support for frozen dataclasses
Body: **Is your feature request related to a problem? Please describe.**
Not really a problem per say. But many of our current models are frozen dataclasses. We try to keep them immutable by default. But unfortunately theres not a flag for it when generating through this tool.
... | 0easy |
Title: DVC log_plot error is confusing, if the `template` attribute is set without a value.
Body: # Bug Report
## Description
DVC `log_plot` error is confusing, if the `template` attribute is set without a value.
### Reproduce
1. Create a DVC repository
2. Create a sample experiment that uses the `log_plot` ... | 0easy |
Title: error_correction_pipeline cannot correct any error!
Body: ### System Info
Pandasai 2.0.32
### ๐ Describe the bug
In **pandasai/pipelines/chat/code_execution.py
I find the following code
```python
def execute(self, input: Any, **kwargs):
...
while retry_count <= self.context.config.ma... | 0easy |
Title: Error with search trying tutorial
Body: I got an error while trying tutorial - after populating the database using fixtures any manage.py execution throws:
TypeError: 'RegexURLPattern' object is not iterable
This is somehow connected to search module - after deleting "search" page from cms all works.
Tried ... | 0easy |
Title: Monitoring: add Sentry
Body: Add Sentry configuration and test it. | 0easy |
Title: Deprecate using arguments starting with `$`, `@`, `&` and `%` as literal values
Body: We are planning to support `$var` syntax in addition to `${var}` in the future (#4674). The plan was to do that already in RF 7.0, but it turned out that this would be too badly backwards incompatible. Probably the biggest prob... | 0easy |
Title: dfs `cutoff_time` should take a datetime string
Body: - As a user, I wish featuretools `dfs` would take a string as cutoff_time aswell as a datetime object
#### Code Example
```python
fm, features = ft.dfs(entityset=es,
target_dataframe_name='customers',
cutof... | 0easy |
Title: OSI Approved Licenses metric API
Body: The canonical definition is here: https://chaoss.community/?p=3962 | 0easy |
Title: Customization of Precision Recall curves
Body: It would be best to add ability for the user to select which curves they want to display. E.g some people might not want to display the macro and micro averaged curves, display only a specific class' ROC curve.
This approach could then be extended to Precision R... | 0easy |
Title: Python 3.12 compatibility
Body: Python 3.12 will be released in October and the first beta is now available. I tested it and noticed that our Python evaluation using the special variable syntax `$var` is broken. This seems to be due to a subtle change in Python's tokenizer (python/cpython#104802). Luckily fixing... | 0easy |
Title: masking function in multifit(mask) does not work as expected
Body: Dear all,
I would like to use the multifit function with a mask (see below). Unfortunately I get a ValueError message that makes no sense for me. Do I something wrong? Is there a workaround or a similar solution for my problem?
Thanks a lot... | 0easy |
Title: Change behavior of `--test` and `--include` so that they are cumulative
Body: Currently when you use `--suite x --test y --include z`, a test is selected only if it is in suite `x`, has name `y` and contains a tag `z`. This is rarely if ever useful. It would typically be enough to just use `--test y` to select t... | 0easy |
Title: Setting Swagger fields in `info`
Body: **Describe the bug**
Swagger provides the option to define many more fields under `info` such as:
- `termsOfService`
- `license`
- `license.name`
- `license.url`
- `contact`
- `contact.email`
There is no documented way to set these fields in the generated S... | 0easy |
Title: Detect Duplicate Page URL Segments
Body: When creating multiple pages, either via `@rio.page`, `rio.ComponentPage` or `rio.Redirect`, it is possible for multiple pages to share a common URL segment. This is nonsensical, because it's not clear which one should be displayed when navigating to that URL.
This als... | 0easy |
Title: Parsing error for topic9_part2_facebook_prophet.ipynb
Body: This notebook isn't rendering in nbviewer nor on Github nor after uploading it to binder..
https://nbviewer.jupyter.org/github/Yorko/mlcourse_open/blob/master/jupyter_english/topic09_time_series/topic9_part2_facebook_prophet.ipynb
there's an extra... | 0easy |
Title: Remove support for using HttpAuthMiddleware without http_auth_domain
Body: Deprecated in 2.5.1. | 0easy |
Title: Add Warning in Docs that only timezone aware data is supported
Body: sqlalchemy.exc.DBAPIError: (sqlalchemy.dialects.postgresql.asyncpg.Error) <class 'asyncpg.exceptions.DataError'>: invalid input for query argument $3: datetime.datetime(2024, 5, 22, 8, 11, 40... (can't subtract offset-naive and offset-aware dat... | 0easy |
Title: InputObjectType fields from models
Body: I've used a `MongoengineObjectType` class to define the schema from model.
There's a way to use a reference model to define a `InputObjectType` or `AbstractType` class? Something like that:
```
class UserFields(graphene.AbstractType):
class Meta:
model = model.Use... | 0easy |
Title: [BUG] TinyTimeMixer should not create validation set if validation_split is None
Body: **Describe the bug**
<!--
A clear and concise description of what the bug is.
-->
`TinyTimeMixerForecaster` always creates a validation set even if `validation_split is None`, in which case the `temporal_train_test_split... | 0easy |
Title: Is changing `Power` from an NpElemOperator to an NpPairOperator a good idea?
Body: In order to achieve the expression like **"Power($close, Rank($close, 14))"** which is fairly common in fomulla alpha.
I guess we could use following code:
`class Power(NpPairOperator):
def __init__(self, feature_left, ... | 0easy |
Title: Linreg does not return Slope, Forecast, Angle, or R coefficient
Body: Which version are you running? 0.3.14b0
Do you have TA Lib also installed in your environment? No
The LINREG indicator returns the linreg indicator value but does not return other useful indicator values mentioned in the documentation - e... | 0easy |
Title: bson.errors.InvalidDocument: cannot encode object: frozenset()/set()
Body: Exception while saving an object containing either a frozenset or a set:
```py
from odmantic import Model, AIOEngine
from odmantic.bson import ObjectId
class UserModel(Model):
username: str
favorites_article_ids: FrozenSet... | 0easy |
Title: Remove office hours announcements
Body: ### Summary
Remove this:
<img width="817" alt="Image" src="https://github.com/user-attachments/assets/ce9c4e1b-3963-40e1-bd1d-70c77f05a443" />
### Where to change
```diff
diff --git a/README.md b/README.md
index 6d2af8a80e..8d42c95990 100644
--- a/README.md
+++ b/READM... | 0easy |
Title: Documentation may have code error!
Body: <!--
**IMPORTANT**:
- Use the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim) to ask general or usage questions. Github issues are only for bug reports.
- Check [Recipes&FAQ](https://github.com/RaRe-Technologies/gensim/wiki/Recipes-&-FAQ) first ... | 0easy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.