repo_name stringlengths 9 75 | topic stringclasses 30
values | issue_number int64 1 203k | title stringlengths 1 976 | body stringlengths 0 254k | state stringclasses 2
values | created_at stringlengths 20 20 | updated_at stringlengths 20 20 | url stringlengths 38 105 | labels listlengths 0 9 | user_login stringlengths 1 39 | comments_count int64 0 452 |
|---|---|---|---|---|---|---|---|---|---|---|---|
waditu/tushare | pandas | 1,600 | pro.stk_holdernumber获取数据异常 | 使用股东人数借口:
df = pro.stk_holdernumber(ts_code='300199.SZ', start_date='20160101', end_date='20181231')
获取000505的股东人数,返回的dataframe中,holder_nums前三个数据是NaN。
tushare id:shi7631470@163.com | open | 2021-11-03T23:58:53Z | 2021-11-04T00:05:58Z | https://github.com/waditu/tushare/issues/1600 | [] | shi-hao | 0 |
tensorpack/tensorpack | tensorflow | 632 | How to train Mask RCNN in own dataset? | I knew your MaskRCNN when I read the matterport's implementation. Very impressive to your performance. I would like to use it to train in my custom dataset that looks likes: one raw image and `N` label images, in which each label image stored a segmented image without bounding box. I have used matterport's example to ... | closed | 2018-02-06T14:59:06Z | 2020-01-09T21:37:21Z | https://github.com/tensorpack/tensorpack/issues/632 | [
"examples"
] | John1231983 | 23 |
pytorch/pytorch | machine-learning | 149,075 | xpu: target torch::xpurt not found linking with libtorch installed from XPU wheels | Consider that Pytorch XPU is installed on the newly configure system with:
```
# pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/xpu
# pip3 list | grep torch
torch 2.7.0.dev20250312+xpu
```
Further, consider the use case when someone works on C++ library/executable and wants t... | open | 2025-03-12T20:51:27Z | 2025-03-18T01:53:30Z | https://github.com/pytorch/pytorch/issues/149075 | [
"module: cpp",
"triaged",
"module: xpu"
] | dvrogozh | 4 |
KevinMusgrave/pytorch-metric-learning | computer-vision | 726 | AM-softmax loss | why don't have AM-softmax loss? | open | 2024-10-27T09:32:09Z | 2024-10-28T12:38:29Z | https://github.com/KevinMusgrave/pytorch-metric-learning/issues/726 | [
"new algorithm request"
] | sofpya | 1 |
openapi-generators/openapi-python-client | rest-api | 559 | Don't prepend title based property names, use Titles for full model type names | **Is your feature request related to a problem? Please describe.**
Ideally an openapi description would get us nice not too long types without a lot of futzing with overriding type names via class_overrides.
If you add a title/subtitle to an objects body it seems to append it to the path based name making names ver... | closed | 2021-12-27T12:10:39Z | 2022-12-17T23:35:58Z | https://github.com/openapi-generators/openapi-python-client/issues/559 | [
"✨ enhancement"
] | rtaycher | 3 |
graphql-python/graphene-sqlalchemy | sqlalchemy | 206 | Formatting datetime-like columns | It'd be nice to be able to specify a `strftime` string which would automatically be used when resolving datetime-like columns so the user gets a friendly value. | closed | 2019-04-15T20:44:42Z | 2023-08-15T00:35:51Z | https://github.com/graphql-python/graphene-sqlalchemy/issues/206 | [
"enhancement"
] | thejcannon | 5 |
miguelgrinberg/Flask-Migrate | flask | 190 | Idiom to create empty db if one does not exist | Is there an idiom I can use to create an empty db with all the tables but no data in them?
Here is my code, and it only create an empty sqlite file (0 bytes). Does not populate it with tables (User and Post, following your example):
`
application = Flask(__name__)
application.config.from_object(Config)
db = SQ... | closed | 2018-03-04T12:27:01Z | 2019-01-13T22:20:33Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/190 | [
"question",
"auto-closed"
] | eeshans | 4 |
Python3WebSpider/ProxyPool | flask | 154 | 报错,运行不出正确结果 | 

 in `models.User.add_self_follows` is redundant:
```py
class User():
# ...
@staticmethod
def add_self_follows():
for user in User.query.all():
if not user.is_following(... | closed | 2018-04-21T03:54:14Z | 2018-04-21T07:32:48Z | https://github.com/miguelgrinberg/flasky/issues/349 | [
"bug"
] | greyli | 2 |
SALib/SALib | numpy | 355 | Document release process | 1. Write down list of steps to take when preparing for a new release
2. Create an Issue Template which can be used to keep track of these steps for each release (e.g. a new issue using the template is opened when preparing a release, and closed upon release). | closed | 2020-09-14T21:58:47Z | 2022-09-06T12:40:30Z | https://github.com/SALib/SALib/issues/355 | [
"enhancement",
"documentation"
] | willu47 | 17 |
Lightning-AI/pytorch-lightning | data-science | 20,217 | Questions about loading a pre-trained model using lightnining CLI for continue training | ### Bug description
Hi, I tried to load a pre-trained model using lightnining cli for continue training, which works well for single gpu case. However, for multiple gpu case, I meet a bug in the optimization process:
RuntimeError: !tensors.empty() INTERNAL ASSERT FAILED at "/opt/conda/conda-bld/pytorch_1712608853085/... | open | 2024-08-20T06:49:12Z | 2024-08-20T06:49:26Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20217 | [
"bug",
"needs triage",
"ver: 2.4.x"
] | HelloWorldLTY | 0 |
labmlai/annotated_deep_learning_paper_implementations | pytorch | 132 | Multi-Headed Attention colab error link to Transformer | https://nn.labml.ai/transformers/mha.html
This link doesn't go to MHA code, but goes to Transformer code. | closed | 2022-07-15T19:25:46Z | 2022-08-27T09:07:35Z | https://github.com/labmlai/annotated_deep_learning_paper_implementations/issues/132 | [
"documentation"
] | Longer430 | 1 |
graphql-python/gql | graphql | 296 | Re-using client after schema fetching failed | **Describe the bug**
The Client has the option to fetch the GraphQL schem from the transport. This is done when the session is initialized and the program enters the context manager, i.e. when doing the following:
```python
client = Client(transport=AIOHTTPTransport(url), fetch_schema_from_transport=True)
with cl... | closed | 2022-02-18T10:13:36Z | 2022-02-22T07:13:27Z | https://github.com/graphql-python/gql/issues/296 | [
"type: bug"
] | joricht | 2 |
igorbenav/fastcrud | sqlalchemy | 155 | Rename "data" to "items" in multi response | **Is your feature request related to a problem? Please describe.**
The multi-response field `data` is generic and doesn't describe the returned data very well.
**Describe the solution you'd like**
I would like to use a more descriptive term e.g. `items` that indicate that a _list_ is being returned.
| open | 2024-09-03T08:20:06Z | 2025-02-24T11:12:44Z | https://github.com/igorbenav/fastcrud/issues/155 | [
"enhancement"
] | feluelle | 3 |
timkpaine/lantern | plotly | 14 | Remove offline default | closed | 2017-10-02T17:31:36Z | 2018-02-05T21:28:59Z | https://github.com/timkpaine/lantern/issues/14 | [
"feature",
"plotly/cufflinks"
] | timkpaine | 0 | |
ultralytics/ultralytics | deep-learning | 19,352 | YOLO12-pose, cls, seg checkpoints not downloadable even after upgrading to the latest stable version from pip | ### Search before asking
- [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and found no similar bug report.
### Ultralytics YOLO Component
Predict
### Bug
Hello @glenn-jocher ,
I go to know by referring docs that YOLO12 for other tasks are also ported in ultra... | open | 2025-02-21T06:45:23Z | 2025-02-24T07:05:37Z | https://github.com/ultralytics/ultralytics/issues/19352 | [
"segment",
"pose"
] | bhomik749 | 9 |
pyqtgraph/pyqtgraph | numpy | 2,931 | Can't add menu item to non-removable ROI | ### Short description
I'd like to be able to add a context menu item to an ROI object. In my specific case, so that I can add a change colour action. I expected to be able to add a new item to the existing menu, so that I get the nice benefits of the hierarchical menus. But the ROI menu is tied to it being `removable`... | closed | 2024-02-07T20:14:59Z | 2024-02-17T14:14:17Z | https://github.com/pyqtgraph/pyqtgraph/issues/2931 | [] | samtygier | 0 |
flasgger/flasgger | api | 103 | Flasgger doesnt support basic auth | Following is my spec
```
"""
This is the user status API
Call this api passing a linkedin user email and get back their status
---
swagger: "2.0"
tags:
- User Status API
securityDefinitions:
basicAuth:
type: basic
parameters:
- name: user_email
... | closed | 2017-05-18T16:28:26Z | 2020-03-11T20:08:33Z | https://github.com/flasgger/flasgger/issues/103 | [
"help wanted",
"hacktoberfest"
] | Anshul21 | 3 |
InstaPy/InstaPy | automation | 6,119 | Fix login issue when running by accpting cookie and change login URL | <!-- Did you know that we have a Discord channel ? Join us: https://discord.gg/FDETsht -->
<!-- Is this a Feature Request ? Please, check out our Wiki first https://github.com/timgrossmann/InstaPy/wiki -->
## Expected Behavior
Login and start running quickstart program
## Current Behavior
cannot login due cookie b... | closed | 2021-03-14T03:34:34Z | 2021-07-21T04:18:58Z | https://github.com/InstaPy/InstaPy/issues/6119 | [
"wontfix"
] | MoududAbu | 1 |
JaidedAI/EasyOCR | deep-learning | 832 | deform_conv_cuda not found in deform_conv |  | closed | 2022-08-25T13:04:08Z | 2024-07-04T08:42:02Z | https://github.com/JaidedAI/EasyOCR/issues/832 | [] | Mahmuod1 | 9 |
microsoft/Bringing-Old-Photos-Back-to-Life | pytorch | 8 | training data | any instructions on training on custom data? | closed | 2020-09-20T07:32:14Z | 2021-02-04T05:01:33Z | https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life/issues/8 | [] | lucasjinreal | 3 |
hbldh/bleak | asyncio | 1,484 | Cannot identify how to fetch an updated device name after connection | * bleak version: 0.21.1
* Python version: 3.10.12
* Operating System: Ubuntu 22.04.3 Linux 5.15.0-91-generic
* BlueZ version (`bluetoothctl -v`) in case of Linux: 5.64
### Description
I am working with a device that advertises under one device name, but upon successful connection and protocol negotiation it ch... | closed | 2023-12-25T20:41:56Z | 2023-12-29T04:41:15Z | https://github.com/hbldh/bleak/issues/1484 | [] | coderjoe | 4 |
jacobgil/pytorch-grad-cam | computer-vision | 221 | SSL Grad-cam | Hello @jacobgil
Thanks a lot for these awesome repositories :)
is it possible to access the ViT backbone of pretrained DINO network and then explain it with grad-cam methods?
Probably accessing specific layers etc. kindly help with how exactly it could be done?
Best Regards,
@jaiswati
| closed | 2022-03-31T18:25:58Z | 2022-04-01T14:01:00Z | https://github.com/jacobgil/pytorch-grad-cam/issues/221 | [] | jaiswati | 1 |
graphql-python/graphene-django | django | 881 | OrderedDjangoFilterConnectionField: "connection_resolver() missing 1 required positional argument: 'info’” | Testing filters using the OrderedDjangoFilterConnectionField solution in this issue; what should resolve_all_images be in this example? I’m getting `connection_resolver() missing 1 required positional argument: 'info’”` in the GraphQL Explorer in its current form.
https://stackoverflow.com/questions/57478464/django-gr... | open | 2020-02-21T12:40:18Z | 2020-08-27T00:45:57Z | https://github.com/graphql-python/graphene-django/issues/881 | [
"wontfix"
] | SillyScribe95 | 5 |
google/trax | numpy | 1,467 | [Question] [Request] Tutorial for implementing TensorBoard | Is there a tutorial or similar out there that describes how to implement TensorBoard with Trax? Similar to what exists for Tensorboard with tf or pytorch.
I have noticed there are some files distributed along the trax github account ([callbacks](https://github.com/google/trax/blob/5b08d66a4e69cccbab5868697b207a8b71c... | closed | 2021-02-16T11:03:39Z | 2021-02-27T14:52:01Z | https://github.com/google/trax/issues/1467 | [] | PizBernina | 2 |
huggingface/datasets | nlp | 7,372 | Inconsistent Behavior Between `load_dataset` and `load_from_disk` When Loading Sharded Datasets | ### Description
I encountered an inconsistency in behavior between `load_dataset` and `load_from_disk` when loading sharded datasets. Here is a minimal example to reproduce the issue:
#### Code 1: Using `load_dataset`
```python
from datasets import Dataset, load_dataset
# First save with max_shard_size=10
Dataset.fr... | open | 2025-01-16T05:47:20Z | 2025-01-16T05:47:20Z | https://github.com/huggingface/datasets/issues/7372 | [] | gaohongkui | 0 |
flasgger/flasgger | flask | 360 | Flasgger execution is a success but not showing the output XML body | So i am trying to deploy an IRIS Model through flasgger , but when i hit the execute button under the API DOC GUI, i do not see any output , where am expecting an XML output. Although i can see the HTTP/200 OK successful response in my ipython notebook. So i am trying to understand what am i doing here . Can somebody ... | open | 2020-01-30T06:05:47Z | 2020-05-12T13:37:21Z | https://github.com/flasgger/flasgger/issues/360 | [] | akudnaver | 2 |
pytest-dev/pytest-xdist | pytest | 922 | Pytest xdist library is getting crashed | I am trying to execute my tests parallel using xdist library, but after 10-15 tests library got crashed and execution stops.
Below is the error I got
```
`dkStaging.php","userkeywords": "atn:vc_w:300_h:250","allowAVAudioSessionAccess": "1"}-1]
INTERNALERROR> def worker_internal_error(self, node, formatted_error)... | closed | 2023-06-23T09:48:58Z | 2024-06-26T11:05:05Z | https://github.com/pytest-dev/pytest-xdist/issues/922 | [] | Mayur5712 | 2 |
piskvorky/gensim | data-science | 2,920 | Gensim's word2vec has a loss of 0 from epoch 1? | I am using the Word2vec module of Gensim library to train a word embedding, the dataset is 400k sentences with 100k unique words (its not english)
I'm using this code to monitor and calculate the loss :
```
class MonitorCallback(CallbackAny2Vec):
def __init__(self, test_words):
self._test_word... | closed | 2020-08-20T17:07:34Z | 2020-08-20T17:37:48Z | https://github.com/piskvorky/gensim/issues/2920 | [] | LusKrew | 1 |
Textualize/rich | python | 2,395 | [BUG] Inconsistency across spinners | Some spinners, notably the ones built using emojis, include a trailing space. An extra space is inserted between the spinner and the spinner's text. I would argue that this is one space too much.
This difference is easy to see when running `python -m rich.spinner`. | closed | 2022-07-14T18:30:29Z | 2022-07-14T18:53:07Z | https://github.com/Textualize/rich/issues/2395 | [
"Needs triage"
] | brechtm | 6 |
igorbenav/fastcrud | pydantic | 27 | Preventing Duplicate Table Names in SQL Queries Using SQLAlchemy | Thank you for the recent update! We appreciate the enhancements and improvements made. It's not critical, but I think it's worth discussing.
**Describe the bug or question**
The problem lies in encountering an error due to duplicate table names when writing SQL queries using SQLAlchemy. This occurs when there's amb... | closed | 2024-03-15T10:37:53Z | 2024-03-19T04:47:03Z | https://github.com/igorbenav/fastcrud/issues/27 | [
"bug"
] | neatek | 3 |
MagicStack/asyncpg | asyncio | 205 | What happens if an inactive connection that is stored in the pool gets closed by db? | Hello!
I was tracing 'connection closed' errors in my application (my guess is that there are network issues) and found out that if there is an inactive connection stored in the pool and this connection gets closed externally, pool.acquire would return closed connection.
I propose handling this case [here](https:... | closed | 2017-10-06T11:03:09Z | 2017-10-10T16:43:21Z | https://github.com/MagicStack/asyncpg/issues/205 | [] | AmatanHead | 1 |
dgtlmoon/changedetection.io | web-scraping | 1,661 | Documentation and fix for error "Re-stock detection requires Chrome or compatible webdriver/playwright fetcher to work" | Re-stock option causes error notification and logs. There is currently no found documentation about this error, and it is clear it requires Chrome or a compatible webdriver/playwrite to solve this. However, having no documentation about on changedetectio.io github makes it difficult to find out what, where, and how to... | open | 2023-06-30T14:59:12Z | 2023-07-05T16:10:03Z | https://github.com/dgtlmoon/changedetection.io/issues/1661 | [
"enhancement"
] | ivanskodje | 2 |
axnsan12/drf-yasg | django | 40 | Schema default value not used | Trying to set a default value for a Schema inside of a Parameter. It does not seem to be getting picked up in Swagger when I use the "Try it out" functionality.
My schema looks like this:
```
@swagger_auto_schema(
operation_id="Get a mission plan",
responses={
200: ... | closed | 2018-01-11T10:13:49Z | 2018-01-12T02:37:29Z | https://github.com/axnsan12/drf-yasg/issues/40 | [] | arkadyark | 4 |
Morizeyao/GPT2-Chinese | nlp | 98 | 生成文本如何提高多样性 | ### 问题:
1.我使用散文预训练模型,用自己的数据(20000条)进行微调,5epochs,训练完loss:0.08,预测结果会完全拟合我的数据。我想提高预测输出的多样性(比如,我的训练数据以外的词汇或者句子结构)。请问需要如何改进?我的训练是不是过拟合了
2.loss=0.08,微调时的损失函数是什么呢?
### 期待给些指导建议,祝好! | closed | 2019-11-12T02:57:11Z | 2022-11-14T05:18:36Z | https://github.com/Morizeyao/GPT2-Chinese/issues/98 | [] | dkicenan | 5 |
huggingface/transformers | machine-learning | 36,187 | Recent Qwen2VL merge request (#35837) break compatibility with DeepSpeed | The recent merge request (#35837) works with accelerate but breaks with DeepSpeed (w/ and w/o deepspeed config)
- distributed_type: MULTI_GPU (work)
- distributed_type: DEEPSPEED (no longer works)
To be more precise the issue lies in this section: https://github.com/huggingface/transformers/blob/main/src/transformer... | closed | 2025-02-14T00:25:37Z | 2025-02-18T19:30:12Z | https://github.com/huggingface/transformers/issues/36187 | [] | ArdalanM | 3 |
gradio-app/gradio | deep-learning | 9,963 | Transparency Settings Not Applying Consistently in Dark Mode | ### Describe the bug
Transparency settings for background elements in dark mode are not applied consistently across all component blocks in Gradio. Specific settings, such as `block_background_fill_dark` and `checkbox_background_color_dark`, fail to apply transparency in dark mode. **This issue does not occur in light... | open | 2024-11-15T08:34:31Z | 2024-11-15T08:34:31Z | https://github.com/gradio-app/gradio/issues/9963 | [
"bug"
] | JSchmie | 0 |
onnx/onnx | pytorch | 6,311 | Want to substitute Expand operator with some other operator in ONNX due to compatibility issues with hardware | I have an expand operator in the middle of a model that takes 2 inputs with the following shapes:
Output from sigmoid: 1,256,1,1 (tensor to be expanded)
Shape operator: 1,256,80,80 (output shape expected)
I can't use Expand, Tile, Constant and Slice operator due to some external issues. I need to substitute th... | closed | 2024-08-22T04:15:29Z | 2024-09-06T14:59:24Z | https://github.com/onnx/onnx/issues/6311 | [
"question"
] | AkshatDogra | 1 |
openapi-generators/openapi-python-client | rest-api | 669 | Could not hook httpx "event hooks" for debugging | **Describe the bug**
I like to do deep debugging with the clients generated using openapi-python-client. I would like to see request, response objects for every api call is logged/ dumped for analysis.
From the httpx documentation, its possible using Event Hooks (https://www.python-httpx.org/advanced/).
But I ... | closed | 2022-09-12T04:30:49Z | 2022-09-12T14:16:13Z | https://github.com/openapi-generators/openapi-python-client/issues/669 | [
"🐞bug"
] | bakkiaraj | 3 |
matplotlib/matplotlib | matplotlib | 29,291 | [Bug]: Calling a python script which imports matplotlib in C++ project shows ImportError | ### Bug summary
I am calling a python script in a CUDA C++project, which imports matplotlib. I ensure that matplotlib has been installed correctly and the Python path has been configured in C++. When I run this Python script alone, everything works fine. But when I call this Python script in a C++program, I encounter ... | closed | 2024-12-12T07:28:56Z | 2024-12-13T01:24:32Z | https://github.com/matplotlib/matplotlib/issues/29291 | [] | hongyifei | 1 |
google/seq2seq | tensorflow | 318 | Process getting finished by exit code 1 | The shell script "wmt16en_de.sh" has some error but couldn't resolve the problem.
Error :--------------------------------------------------------------------------------------------------------
/usr/bin/env bash /home/nil/beam/seq2seq/bin/data/wmt16_en_de.sh
Writing to /home/nil/nmt_data/wmt16_de_en. To change th... | open | 2018-02-28T10:34:01Z | 2018-02-28T10:34:01Z | https://github.com/google/seq2seq/issues/318 | [] | Sammyreus | 0 |
zappa/Zappa | django | 1,164 | Remove `six` from zappa dependencies | ## Context
Six is currently a dependency of zappa, but zappa no longer supports python 2.x, making the use of `six` unnecessary.
## Expected Behavior
No change in behavior, reduced zappa package size.
> `six` still appears to be a sub-dependency of boto3
## Actual Behavior
six included.
## Possible... | closed | 2022-08-12T02:51:58Z | 2022-12-01T10:02:47Z | https://github.com/zappa/Zappa/issues/1164 | [
"next-release-candidate"
] | monkut | 1 |
SciTools/cartopy | matplotlib | 1,634 | 'regrid_shape' produces incorrect wind barbs near the pole | I'm generating numerical model output plots (e.g., GFS, ERA-5) for polar projections using the Nearside Perspective projection. When plotting wind barbs, the barb magnitudes are correct if plotted normally, such as:
`
ax.barbs(x, y, u, v, transform=ccrs.PlateCarree())
`
Once I add the `regrid_shape` argument, t... | open | 2020-08-15T20:55:42Z | 2020-08-21T18:38:24Z | https://github.com/SciTools/cartopy/issues/1634 | [] | tomerburg | 2 |
ploomber/ploomber | jupyter | 906 | Notifying community members on Slack when an issue is closed | Sometimes users request features or discover bugs that already have an existing issue. So far, we just paste the URL and tell them to keep an eye on it, but it is unrealistic to expect them to check the issue every now and then. One alternative is to ask them to subscribe to the issue updates but this doesn't always ha... | closed | 2022-07-08T19:59:58Z | 2022-09-02T22:56:08Z | https://github.com/ploomber/ploomber/issues/906 | [] | edublancas | 0 |
comfyanonymous/ComfyUI | pytorch | 6,291 | couldn't connect to 'https://huggingface.co' | ### Your question
When run comfyui, here is a below question.
We couldn't connect to 'https://huggingface.co' to load this model, couldn't find it in the cached files and it looks like /content/ComfyUI/custom_nodes/ComfyUI-InstantID/checkpoints/controlnet is not the path to a directory containing a config.json file.
... | closed | 2024-12-31T08:38:05Z | 2024-12-31T23:32:36Z | https://github.com/comfyanonymous/ComfyUI/issues/6291 | [
"User Support",
"Custom Nodes Bug"
] | Ellsichan | 2 |
pyro-ppl/numpyro | numpy | 1,603 | Sample and evaluate independent parameter sets at once | First of all, lots of thanks for the great library! Its fun to use and as a beginner I've had a great intro to the topic 🙌
I am currently using Numpyro to solve an inverse problem to estimate parameters of a coupled system of ODEs using `diffrax` for the integration part. Since the latter is capable to `vmap` acro... | closed | 2023-06-09T11:08:14Z | 2023-06-09T16:03:07Z | https://github.com/pyro-ppl/numpyro/issues/1603 | [] | JR-1991 | 1 |
onnx/onnx | deep-learning | 6,710 | type-coverage-of-popular-python-packages-and-github-badge | Hello,
maybe that's of interest for us:
https://discuss.python.org/t/type-coverage-of-popular-python-packages-and-github-badge/63401
https://html-preview.github.io/?url=https://github.com/lolpack/type_coverage_py/blob/main/index.html
, both B and C are rolled back (which _does_ make sense...).
As an aside, `alembic downgrade -1` rolls back one or... | closed | 2020-02-19T01:40:08Z | 2021-04-25T15:59:20Z | https://github.com/sqlalchemy/alembic/issues/660 | [] | eeshugerman | 3 |
babysor/MockingBird | deep-learning | 462 | 运行报错缺少pyworld,安装visualstudio后pip install pyworld后报错如下,求解。 | Collecting pyworld
Using cached pyworld-0.3.0.tar.gz (212 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing metadata (pyproject.toml) ... done
Requirement already satisfied: numpy in d:\anaconda\data\lib\site-packages (from pyworld) (1.19.3)
Requirement alre... | closed | 2022-03-18T07:02:41Z | 2024-07-31T20:35:35Z | https://github.com/babysor/MockingBird/issues/462 | [] | JOKERSLION | 4 |
yt-dlp/yt-dlp | python | 12,443 | how to fix this subtitle error | ### Checklist
- [x] I'm asking a question and **not** reporting a bug or requesting a feature
- [x] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#readme)
- [x] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels))... | closed | 2025-02-22T20:26:43Z | 2025-02-22T22:39:29Z | https://github.com/yt-dlp/yt-dlp/issues/12443 | [
"incomplete"
] | Richard642355 | 4 |
AUTOMATIC1111/stable-diffusion-webui | deep-learning | 16,572 | [Feature Request]: Better Lora view | ### Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
### What would your feature do ?
Would it be possible for you to display folders in the view, as in my example images
The current situation is as follows
:
original_name: str = Field(validation_alias=AliasChoices("DIFFERENT-NAME", "another"))
def test():
os.environ["DIFFERENT-NAME"] = "abc... | closed | 2024-09-03T08:15:59Z | 2024-09-07T17:08:11Z | https://github.com/pydantic/pydantic-settings/issues/378 | [
"feature request",
"unconfirmed"
] | nejcskofic | 4 |
globaleaks/globaleaks-whistleblowing-software | sqlalchemy | 3,035 | "Request support" feature | This ticket is to track the implementation of a "Request support" feature to be implemented to offer users the possibility to request support to administrators of the platform.
Such a feature feature could be useful for users in many situations like in cases of inability to access the site due to a lost password or ... | closed | 2021-08-25T09:31:05Z | 2021-09-20T21:40:33Z | https://github.com/globaleaks/globaleaks-whistleblowing-software/issues/3035 | [
"C: Client",
"C: Backend",
"T: Feature"
] | evilaliv3 | 2 |
Miserlou/Zappa | django | 1,245 | No Module Named 'task' with Mezzanine | ## Context
When running my application in a local virtual environment, everything works fine. However, when I attempt to deploy the project, I get this traceback in the tail:
```
Traceback (most recent call last):
File "/var/task/django/core/handlers/base.py", line 131, in get_response
response = middleware_... | closed | 2017-11-17T01:52:34Z | 2017-12-01T13:00:52Z | https://github.com/Miserlou/Zappa/issues/1245 | [] | jjorissen52 | 1 |
Josh-XT/AGiXT | automation | 1,225 | Github extension FR get all repos | ### Feature/Improvement Description
Please add get all repos for the github extension so I can replace a component inside my task app
### Proposed Solution
adding get repos it will list out all github repos with the `name : repo url`
### Acknowledgements
- [X] I have searched the existing issues to make sure this... | closed | 2024-07-17T02:40:57Z | 2024-07-18T01:16:33Z | https://github.com/Josh-XT/AGiXT/issues/1225 | [
"needs triage"
] | birdup000 | 1 |
babysor/MockingBird | pytorch | 434 | 训练过程中报错 | > {| Epoch: 1/1 (400/52340) | Loss: 0.4498 | 0.55 steps/s | Step: 27k | }Traceback (most recent call last):
File "D:\Users\Jerry\Documents\Jerry\MockingBird-main\synthesizer_train.py", line 37, in <module>
train(**vars(args))
File "D:\Users\Jerry\Documents\Jerry\MockingBird-main\synthesizer\train.py", line 2... | closed | 2022-03-07T13:02:35Z | 2022-03-08T00:15:36Z | https://github.com/babysor/MockingBird/issues/434 | [] | JerryZRF | 1 |
amdegroot/ssd.pytorch | computer-vision | 250 | Running eval.py without GPU | I want to run eval.py with CPU no GPU(cuda).
So I change argument, --cuda default value from true to False.
But it doesn't work.
And I got this error. Loot at below :
RuntimeError: Attempting to deserialize object on a CUDA device but torch.cuda.is_available() is False. If you are running on a CPU-only machine, pl... | closed | 2018-10-18T23:09:49Z | 2019-08-18T14:20:35Z | https://github.com/amdegroot/ssd.pytorch/issues/250 | [] | MakeToast | 3 |
autogluon/autogluon | data-science | 4,993 | New version AbstractTrainer | Is it possible to install the version with the new AbstractTrainer? there are no bugs in it, namely in terms of predictions, when it was just starting to be developed, there were errors that the predictions were very bad in the TimeSeries module, now the problems have been solved and improved? | open | 2025-03-21T11:06:57Z | 2025-03-21T11:06:57Z | https://github.com/autogluon/autogluon/issues/4993 | [] | PitiChka | 0 |
lukas-blecher/LaTeX-OCR | pytorch | 231 | take a screenshot but latexocr-app flashes back | When I type `snip` in the latexocr after the screenshot, the app flashes back. I test the pix2tex mode and make it. What error did it encounter. | open | 2023-01-16T16:54:28Z | 2023-01-21T16:08:55Z | https://github.com/lukas-blecher/LaTeX-OCR/issues/231 | [] | wsp666 | 1 |
hankcs/HanLP | nlp | 1,864 | ================================ERROR LOG BEGINS================================ | 2023-12-17 19:59:57.877358: I tensorflow/core/util/port.cc:113] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders. To turn them off, set the environment variable `TF_ENABLE_ONEDNN_OPTS=0`.
Failed to load https://fi... | closed | 2023-12-17T12:05:59Z | 2023-12-22T02:24:38Z | https://github.com/hankcs/HanLP/issues/1864 | [
"invalid"
] | zsxbcc | 1 |
databricks/koalas | pandas | 1,826 | ModuleNotFoundError: No module named 'databricks' when using apply_batch or apply_transform | Hi,
I'm using Spark in client mode and I've gotten Koalas working, but the `apply_batch` method seems to indicate that koalas is missing from the executor nodes. It it really so that koalas must be explicitly installed to worker nodes? Or is it another issue / something simple I'm missing? Spark version: 2.4.3, Koal... | closed | 2020-10-06T12:28:06Z | 2020-11-13T05:01:54Z | https://github.com/databricks/koalas/issues/1826 | [
"question"
] | maxpagels | 1 |
seleniumbase/SeleniumBase | pytest | 2,215 | How to set options with the `driver` format inside the code? (Eg. --undetected) | can you tell how to set options eg --headed, --undetected inside code ,,i tried i couldn't solve this | closed | 2023-10-28T10:07:31Z | 2023-10-29T06:55:02Z | https://github.com/seleniumbase/SeleniumBase/issues/2215 | [
"question",
"UC Mode / CDP Mode"
] | Takundanashe | 2 |
assafelovic/gpt-researcher | automation | 204 | duckduckgo 3.9.1 cannot be resolved | Just tried installing locally and it failed when trying to find duckduckgo_search v3.9.1
```
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
...
...
ERROR: Could not find a version that satisfies the requirement duckduckgo_search==3.9.1 (from versions: 0.3, 0.4, 0.5, 0.6, 0.7, 0... | closed | 2023-10-09T18:16:26Z | 2023-10-13T13:01:38Z | https://github.com/assafelovic/gpt-researcher/issues/204 | [] | ivarprudnikov | 2 |
junyanz/pytorch-CycleGAN-and-pix2pix | deep-learning | 1,199 | Load trained model to other script | Can I load trained model to other script and call predict function(test single)? | closed | 2020-11-25T16:51:56Z | 2022-09-06T20:55:23Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1199 | [] | darrenleeleelee1 | 3 |
jupyterhub/repo2docker | jupyter | 423 | Make a logo for repo2docker? | Sometimes I'd like to have a visual way to describe repo2docker. Right now, It's hard to do this because there's no "visual" component to this project. Are folks generally +1 on having a logo of some kind for this project? | closed | 2018-10-03T15:54:27Z | 2018-11-12T22:17:54Z | https://github.com/jupyterhub/repo2docker/issues/423 | [
"enhancement",
"help wanted",
"needs: discussion"
] | choldgraf | 40 |
JaidedAI/EasyOCR | machine-learning | 513 | How to use the 'trainer' folder to train the model? | Are there any steps about how to use the 'trainer' to train model?
Thanks in advance. | closed | 2021-08-10T07:57:15Z | 2021-09-04T15:54:51Z | https://github.com/JaidedAI/EasyOCR/issues/513 | [] | fengjinhanzhenshuai | 0 |
pydantic/logfire | fastapi | 614 | Support opentelemetry-instrumentation-llamaindex | ### Description
Hi,
There is a package to auto-instrument llmaindex `opentelemetry-instrumentation-llamaindex` , I wonder if that can be added to logfire. I tried to use it directly `LlamaIndexInstrumentor().instrument()`, but got `maximum recursion depth exceeded` error when adding it.
Best, | closed | 2024-11-19T21:53:11Z | 2025-01-02T13:50:09Z | https://github.com/pydantic/logfire/issues/614 | [
"Feature Request"
] | yanqianglu | 3 |
pyeve/eve | flask | 947 | Serializer for boolean | If I use a field, where the type is "integer", I can also post a string containing an integer and it will be converted by the serializer.
Is there a reason this does not happen for booleans?
It is missing in this list:
https://github.com/nicolaiarocci/eve/blob/develop/eve/io/mongo/mongo.py#L77 | closed | 2016-12-10T19:11:30Z | 2016-12-16T09:38:40Z | https://github.com/pyeve/eve/issues/947 | [
"enhancement"
] | cburchert | 1 |
deeppavlov/DeepPavlov | nlp | 1,542 | Is there any way to achieve mult-lingual intent classification | Want to contribute to DeepPavlov? Please read the [contributing guideline](http://docs.deeppavlov.ai/en/master/devguides/contribution_guide.html) first.
**What problem are we trying to solve?**:
```
I am new to this repo. I am trying to solve the multi-lingual intent classifications for one of my chatbots. is th... | closed | 2022-03-29T11:34:43Z | 2022-04-07T12:43:08Z | https://github.com/deeppavlov/DeepPavlov/issues/1542 | [
"enhancement"
] | SAIVENKATARAJU | 3 |
hankcs/HanLP | nlp | 1,601 | install hanlp bug,demo run error |
**Describe the bug**
If the problem still persists, please submit an issue to https://github.com/hankcs/HanLP/issues
When reporting an issue, make sure to paste the FULL ERROR LOG above.
dony222:test dony$ python3 testHanLP.py
/usr/local/Cellar/python/3.7.2_2/Frameworks/Python.framework/Versions/3.7/lib/python3... | closed | 2021-01-06T01:49:16Z | 2021-01-06T02:10:53Z | https://github.com/hankcs/HanLP/issues/1601 | [
"bug"
] | songsh | 2 |
gradio-app/gradio | python | 10,472 | Gradio chatbot image/media are too big but MultimodalTextbox buttons are too small | - [x ] I have searched to see if a similar issue already exists.
**Reproduction**
I have been working on a multimodal chatbot as described in [Gradio Demo: chatbot_multimodal](https://github.com/gradio-app/gradio/blob/main/demo/chatbot_multimodal/run.ipynb)
**Is your feature request related to a problem? Please descr... | open | 2025-01-30T22:27:01Z | 2025-02-03T08:05:50Z | https://github.com/gradio-app/gradio/issues/10472 | [
"💬 Chatbot"
] | bigmw | 1 |
iperov/DeepFaceLab | deep-learning | 918 | DeepFaceLab | open | 2020-10-05T23:03:05Z | 2023-06-08T21:26:50Z | https://github.com/iperov/DeepFaceLab/issues/918 | [] | AL-DU-SHOW | 1 | |
pydata/pandas-datareader | pandas | 694 | RLS: 0.8.0 Release Tracker | A list of issues remaining before a 0.8.0 release:
- [x] Finalize what's new
- [x] Default starting dates #607
| closed | 2019-09-18T08:38:01Z | 2019-09-22T21:08:12Z | https://github.com/pydata/pandas-datareader/issues/694 | [] | bashtage | 14 |
ets-labs/python-dependency-injector | flask | 478 | six library update to 1.16.0 | Any plans on updating six to 1.16.0? Currently version is limited to <=1.15.0 | closed | 2021-07-29T15:56:41Z | 2021-07-29T22:14:41Z | https://github.com/ets-labs/python-dependency-injector/issues/478 | [
"enhancement"
] | ilsurih | 2 |
marcomusy/vedo | numpy | 286 | Drag helper to rotate a plane and display info on click of a volume slice | I would like to display a helper similar to the ones used for slicing (the sphere that you can drag to slice an object) but instead I would like this to drive the orientation of a plane. Is there something in vedo to do this or should I implement event listeners with mouse down to activate drag, mouse move to update wh... | closed | 2021-01-06T10:22:06Z | 2021-05-05T09:41:24Z | https://github.com/marcomusy/vedo/issues/286 | [] | nantille | 6 |
MagicStack/asyncpg | asyncio | 227 | How could I know which column caused `asyncpg.exceptions.UniqueViolationError`? | I want to directly know which column cause `UniqueViolationError`, but not from `e.message` or `e.detail`.
I need it because I want to build my own message to my API consumer.
Currently I just expose the `UniqueViolationError.detail`, which I think unsafe.
```python
try:
ins_res = await app.db.fetc... | closed | 2017-11-14T12:12:38Z | 2017-11-14T14:54:36Z | https://github.com/MagicStack/asyncpg/issues/227 | [
"question"
] | wonderbeyond | 3 |
piccolo-orm/piccolo | fastapi | 315 | ASGI template improvements for FastAPI | When doing some demos of Piccolo I've realised there's some weirdness with the FastAPI ASGI template.
Variables for Piccolo table instances are sometimes prefixed with an underscore, to distinguish them from Pydantic model instances. Instead, the Pydantic model instances should have the `_model` postfix.
For exam... | closed | 2021-10-29T18:25:35Z | 2021-10-29T18:36:39Z | https://github.com/piccolo-orm/piccolo/issues/315 | [
"enhancement"
] | dantownsend | 0 |
miguelgrinberg/Flask-SocketIO | flask | 1,192 | Does flask socketIO works with paramiko in multithreading env | My last hurdle ..
in my backend code i need to use paramiko in threaded env to run remote commands.
look like paramiko doesn't support gevent async. Does that mean i can't use flask socketio for real time updates? | closed | 2020-02-24T16:05:27Z | 2020-06-30T22:52:01Z | https://github.com/miguelgrinberg/Flask-SocketIO/issues/1192 | [
"question"
] | Set4now | 1 |
suitenumerique/docs | django | 267 | Change invitation email text | ## Bug Report
**Problematic behavior**
The email you receive like a welcome email.

**Expected behavior/code**
Subject : Document partagé avec vous : "{document.title}"
Content :
```
<h... | closed | 2024-09-17T18:15:50Z | 2024-09-26T07:58:12Z | https://github.com/suitenumerique/docs/issues/267 | [
"backend",
"refacto"
] | virgile-dev | 4 |
mljar/mljar-supervised | scikit-learn | 181 | The invalid filename in EDA if the feature contains a forbidden character | X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.25, random_state=42)
automl = AutoML()
automl.fit(X_train, y_train)
after running the code, it raises error like this
AutoML directory: AutoML_9
The task is regression with evaluation metric rmse
AutoML will use algorithms: ['Baseline', 'Li... | closed | 2020-09-10T11:02:24Z | 2020-09-15T13:43:43Z | https://github.com/mljar/mljar-supervised/issues/181 | [
"bug",
"help wanted"
] | peter-WeiZhang | 7 |
saleor/saleor | graphql | 17,167 | Guidance on Implementing Multi-Tenancy in Saleor: tenant_manager Not Found Issue | Hello Saleor Community,
I am working on a **non-commercial project** where I aim to implement a **multi-tenant solution** on top of Saleor. My application requires the capability to serve multiple clients, each with their own isolated database, but I want to achieve this without disrupting Saleor’s core functionalit... | closed | 2024-12-12T07:14:24Z | 2025-03-13T10:56:21Z | https://github.com/saleor/saleor/issues/17167 | [] | egastech | 2 |
pallets/flask | python | 4,625 | mypy errors when static_folder is given a Pathlib | This is a continuation of #4150. I'm still getting the same issues using Flask 2.1.2. Not sure why this is still happening.
Thank you! | closed | 2022-06-07T21:28:59Z | 2022-06-23T00:05:41Z | https://github.com/pallets/flask/issues/4625 | [] | gitpushdashf | 2 |
keras-team/keras | data-science | 20,518 | Need to explicitly specify `x` and `y` instead of using a generator when the model has two inputs. | tf.__version__: '2.17.0'
tf.keras.__version__: '3.5.0'
for a image caption model, one input is vector representation of images, another is caption of encoder.
```python
def batch_generator(batch_size, tokens_train, transfer_values_train, is_random_caption=False):
# ...
x_data = \
{
... | closed | 2024-11-19T20:20:59Z | 2024-12-25T02:01:11Z | https://github.com/keras-team/keras/issues/20518 | [
"stat:awaiting response from contributor",
"stale"
] | danica-zhu | 3 |
geex-arts/django-jet | django | 108 | 404 when attempting to reach jet dashboard | Possible duplicate of #62 but there was no mention how the issue was resovled there.
Django 1.10
Django-jet 0.9.1
Python 3.5
I followed installation steps exactly and my files all match what is expected. However, if I try to reach /jet or /jet/dashboard:
`The current URL, jet/dashboard/, didn't match any of these.`
... | closed | 2016-08-24T18:28:04Z | 2018-08-01T16:19:12Z | https://github.com/geex-arts/django-jet/issues/108 | [] | kevin-miles | 5 |
jina-ai/serve | fastapi | 5,857 | Revisit Jina's Client profiling method | As described by #5856,
The profiling method of Jina Client may have some errors and be under Documented | closed | 2023-05-10T04:36:32Z | 2023-09-08T00:16:11Z | https://github.com/jina-ai/serve/issues/5857 | [
"Stale"
] | JoanFM | 2 |
encode/apistar | api | 346 | Authentication and permission with HTMLRenderer() | I am facing a problem using authentication/permission and a route function annotated with HTMLRenderer(). The problem occurs when the user doesn't have the permission or is not allowed to access the route. In this situation, is produced automatically a response data that should be rendered as json:
```json
{
"... | closed | 2017-10-28T16:30:45Z | 2018-09-25T14:44:51Z | https://github.com/encode/apistar/issues/346 | [] | 7robertodantas | 1 |
davidsandberg/facenet | tensorflow | 568 | save the model with tf.serving | We trained the model with saver.save. There are four files in the model dir. Who saved the model with tf.serving?Can you tell me how to convert the format of the two ways?Thanks very much. | closed | 2017-12-05T03:45:13Z | 2018-04-04T20:27:15Z | https://github.com/davidsandberg/facenet/issues/568 | [] | bingjilin | 5 |
jumpserver/jumpserver | django | 14,850 | [Bug] 使用JumperServerClient,win10电脑,无法连接window设备的RDP | ### Product Version
v3.0.1
### Product Edition
- [x] Community Edition
- [ ] Enterprise Edition
- [ ] Enterprise Trial Edition
### Installation Method
- [ ] Online Installation (One-click command installation)
- [x] Offline Package Installation
- [ ] All-in-One
- [ ] 1Panel
- [ ] Kubernetes
- [ ] Source Code
### ... | open | 2025-02-03T12:20:03Z | 2025-02-11T07:37:29Z | https://github.com/jumpserver/jumpserver/issues/14850 | [
"🐛 Bug",
"⏳ Pending feedback"
] | wlinuxgit | 2 |
tqdm/tqdm | jupyter | 1,000 | position argument implementation | - [ ] I have marked all applicable categories:
+ [ ] exception-raising bug
+ [x] visual output bug
+ [ ] documentation request (i.e. "X is missing from the documentation." If instead I want to ask "how to use X?" I understand [StackOverflow#tqdm] is more appropriate)
+ [ ] new feature request
- [x]... | open | 2020-07-06T15:23:37Z | 2023-12-06T04:55:46Z | https://github.com/tqdm/tqdm/issues/1000 | [] | haji-ali | 19 |
plotly/dash | dash | 2,866 | [BUG] No output callbacks with clientside_callback | If a clientside callback has no output, it generate `ID not found in layout` error:
```
clientside_callback(
"""
function(_) {
window.location.reload();
}
""",
Input("reset-button", "n_clicks"),
prevent_initial_call=True,
)
```
| closed | 2024-05-23T15:43:16Z | 2024-06-16T02:03:30Z | https://github.com/plotly/dash/issues/2866 | [
"bug"
] | T4rk1n | 1 |
pyro-ppl/numpyro | numpy | 1,323 | Bayesian Hierarchical Stacking Example | Hello,
The Bayesian Hierarchical Stacking example is not functioning. I tried in both the linked Google Colab & locally in jupyter lab.
Docs:
https://num.pyro.ai/en/latest/tutorials/bayesian_hierarchical_stacking.html
Link:
https://github.com/pyro-ppl/numpyro/tree/master/notebooks/source)/bayesian_hierarchic... | closed | 2022-02-04T21:21:16Z | 2022-02-09T02:56:31Z | https://github.com/pyro-ppl/numpyro/issues/1323 | [
"bug"
] | Vinnie-Palazeti | 7 |
waditu/tushare | pandas | 1,428 | 基金净值 fund_nav 参数太单一 | 1. 建议参考index的方式,参数增加start_date, end_date,取时间段内的数据(根据净值日期)
2. 输出,建议也加入pct_change
Tushare ID : 391630 | open | 2020-09-10T05:17:03Z | 2020-09-10T05:17:03Z | https://github.com/waditu/tushare/issues/1428 | [] | cj9208 | 0 |
yt-dlp/yt-dlp | python | 12,413 | cache path hard disk drive changed from E to F, [WinError 3] appears | ### Checklist
- [x] I'm asking a question and **not** reporting a bug or requesting a feature
- [x] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#readme)
- [x] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels))... | closed | 2025-02-19T12:52:53Z | 2025-02-20T15:52:34Z | https://github.com/yt-dlp/yt-dlp/issues/12413 | [
"question"
] | rmd13 | 2 |
django-oscar/django-oscar | django | 3,486 | Improve documentation for app forking command, and show examples of forking nested apps | The documentation for how to use `oscar_fork_app` could do with some improvement, specifically to explain that:
- The first argument to the command is an *app label* rather than a module path or anything else.
- The second argument is for the *top level target directory* into which all apps should be forked.
-... | open | 2020-08-28T11:24:07Z | 2020-09-19T03:11:31Z | https://github.com/django-oscar/django-oscar/issues/3486 | [
"✎ Docs"
] | solarissmoke | 1 |
qubvel-org/segmentation_models.pytorch | computer-vision | 811 | Add EfficientNetV2 encoders | Is there any plan to include the EfficientNetV2 networks (such us those available with torchvision>=0.13) among the encoders?
| closed | 2023-09-19T11:34:33Z | 2023-11-30T01:50:29Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/811 | [
"Stale"
] | valeriopaolicelli | 3 |
LAION-AI/Open-Assistant | machine-learning | 2,952 | How we run on the production model | I use the Open Assistant source but for the debugging mode only. What we should change if we want to deploy into production mode ?
Thank you | closed | 2023-04-28T07:47:46Z | 2023-04-29T10:16:06Z | https://github.com/LAION-AI/Open-Assistant/issues/2952 | [] | ntson2002 | 1 |
MaartenGr/BERTopic | nlp | 1,504 | bug with custom_labels in _topics_over_time.py | Hi,
it seems there is a bu in _topics_over_time.py when using custom_labels. In line 67, you loop over topics, but I think it should be selected_topics. My local fix for this line is:
topic_names = [[[str(topic), None]] + topic_model.topic_aspects_[custom_labels][topic] for topic in selected_topics]
Furt... | open | 2023-09-05T14:54:59Z | 2023-09-08T10:27:31Z | https://github.com/MaartenGr/BERTopic/issues/1504 | [] | rcprati | 3 |
apache/airflow | machine-learning | 47,488 | OpenLineage can silently lose Snowflake query_ids and can't support multiple query_ids | ### Apache Airflow Provider(s)
openlineage
### Versions of Apache Airflow Providers
latest
### Apache Airflow version
2.X
### Operating System
macos
### Deployment
Virtualenv installation
### Deployment details
_No response_
### What happened
When using `SqlExecuteQueryOperator` with Snowflake, and running... | open | 2025-03-07T09:43:27Z | 2025-03-07T09:51:04Z | https://github.com/apache/airflow/issues/47488 | [
"kind:bug",
"area:providers",
"needs-triage",
"provider:openlineage"
] | kacpermuda | 0 |
mirumee/ariadne-codegen | graphql | 155 | Mixin Strategy Produces Invalid Queries | ### Summary
The Mixins feature is a great idea for extending the functionality of generated classes, however the mixin directive is not removed from the final generated query, resulting in errors returned from remote APIs.
### Example
Let's say that we simply want to validate that a mixin has been applied by ret... | closed | 2023-05-22T17:57:18Z | 2023-05-30T06:59:20Z | https://github.com/mirumee/ariadne-codegen/issues/155 | [] | heyaphra | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.