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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
tflearn/tflearn | data-science | 463 | LSTM with more than one layer fails with "Cannot feed value ..." | I'm having an issue where I'm able to train a single layer LSTM without problem but adding a second layer results in a ValueError:
Single layer example:
```
net = tflearn.input_data([None,1000,4])
net = tflearn.lstm(net,128,dynamic=True,return_seq=False)
net = tflearn.fully_connected(net,1,activation='linear')
... | open | 2016-11-14T18:05:06Z | 2016-12-20T12:13:24Z | https://github.com/tflearn/tflearn/issues/463 | [] | AmitDeshwar | 5 |
junyanz/pytorch-CycleGAN-and-pix2pix | deep-learning | 1,063 | loading tensorflow datasets into google colab | I am a student currently working on a project to make low quality images to high quality images using CycleGan. I have found a dataset on Tensorflow called div2k which have images that are of high and low resolution. I tried downloading it into my computer from the main website of the dataset and moved it into my googl... | closed | 2020-06-10T05:22:27Z | 2020-06-17T19:29:09Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1063 | [] | randlelim | 10 |
pydantic/FastUI | fastapi | 187 | Display `pretty_datetime` | Show `ago` for last 48 hours, otherwise should prettier datetime. | open | 2024-02-13T12:27:36Z | 2024-02-13T12:27:36Z | https://github.com/pydantic/FastUI/issues/187 | [] | samuelcolvin | 0 |
mitmproxy/mitmproxy | python | 6,707 | `mitmproxy --scripts broken.py` with a broken script does not properly handle the error and leaves terminal in a funny state | #### Problem Description
I've noticed that when loading a broken script (e.g. syntax error) mitmproxy won't properly exit or keep running and show the error in the event log, as it does when live reloading a script.
#### Steps to reproduce the behavior:
broken.py
```
x
```
1. `mitmproxy --scripts broke... | closed | 2024-03-04T07:14:24Z | 2024-03-07T20:41:27Z | https://github.com/mitmproxy/mitmproxy/issues/6707 | [
"kind/bug",
"area/core"
] | Prinzhorn | 1 |
fastapi/sqlmodel | fastapi | 476 | Inheriting UserMixin class from flask-login library on SQLModel model crashes the app | ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the SQLModel documentation, with the integrated search.
- [X] I already searched in Google "How to X in SQLModel" and didn't find any information.
- [X] I al... | closed | 2022-10-22T00:10:59Z | 2022-11-08T14:57:16Z | https://github.com/fastapi/sqlmodel/issues/476 | [
"question"
] | km-monzurul-islam | 4 |
vitalik/django-ninja | rest-api | 1,149 | [BUG] Bearer authentication example from documentation doesn't work | Copying this from the documentation:
```
from ninja.security import HttpBearer
class AuthBearer(HttpBearer):
def authenticate(self, request, token):
if token == "supersecret":
return token
```
Results in:
```
AuthBase.__init__() takes 1 positional argument but 2 were given
T... | closed | 2024-05-02T22:57:54Z | 2024-05-02T23:03:19Z | https://github.com/vitalik/django-ninja/issues/1149 | [] | Marclev78 | 1 |
ARM-DOE/pyart | data-visualization | 1,602 | BUG: Cannot install arm-pyart 1.18.5 on macOS (arm64) | * Py-ART version: 1.18.5
* Python version: 3.12.4
* Operating System: macOS
### Description
Trying to instal the package in a fresh venv on this arch errors as
```shell
$ python -m pip install arm-pyart
...
ERROR: arm-pyart has an invalid wheel, arm-pyart has an invalid wheel, could not read 'arm_pyart-1.18... | closed | 2024-06-25T09:41:04Z | 2024-06-25T21:03:36Z | https://github.com/ARM-DOE/pyart/issues/1602 | [] | neutrinoceros | 12 |
streamlit/streamlit | data-science | 10,385 | Pinned columns (column config) do not work when hide_index=True | ### Checklist
- [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar issues.
- [x] I added a very descriptive title to this issue.
- [x] I have provided sufficient information below to help reproduce this issue.
### Summary
As the title describes - this is a simple one... | open | 2025-02-12T23:34:26Z | 2025-02-21T21:15:15Z | https://github.com/streamlit/streamlit/issues/10385 | [
"type:enhancement",
"type:docs",
"feature:st.column_config"
] | nickgreengithub | 2 |
dask/dask | scikit-learn | 11,765 | What scalar type is expected for DataFrame.divisions? | **Describe the issue**:
On dask main, `DataFrame.divisions` is a `tuple[np.ndarrray]` where each element is a scalar ndarray:
**Minimal Complete Verifiable Example**:
```python
In [1]: import dask.dataframe as dd, pandas as pd
In [2]: index = [1, 5, 10, 11, 12, 100, 200, 300]
...: df = pd.DataFrame({"a": range(8)... | closed | 2025-02-19T19:53:36Z | 2025-02-21T10:16:53Z | https://github.com/dask/dask/issues/11765 | [
"dataframe"
] | TomAugspurger | 1 |
NVIDIA/pix2pixHD | computer-vision | 337 | Issues with Running stylegan2_pytorch in gpu settings on colab notebook | It keeps raising AttributeError whenever torch_stylegan2.load_network_pkl() is called.
The code that I have run:
`import stylegan2_pytorch as torch_stylegan2
!mkdir networks
!gdown https://nvlabs-fi-cdn.nvidia.com/stylegan2/networks/stylegan2-ffhq-config-f.pkl -O networks/stylegan2-ffhq-config-f.pkl
network_pk... | open | 2024-04-11T09:18:13Z | 2024-04-11T09:24:47Z | https://github.com/NVIDIA/pix2pixHD/issues/337 | [] | mavisexp5 | 0 |
aimhubio/aim | tensorflow | 3,178 | Installation Issue [begineer] | ## ❓Question
while I tried to download It's showing following error:
I'm using windows OS.
I already installed pytorch-lightning==2. version
```sh
(venv) C:\Users\muthu\GitHub\TorchTutorials 😎>pip install aim
Collecting aim
Using cached aim-3.22.0.tar.gz (1.6 MB)
Installing build dependencies ... erro... | open | 2024-07-01T12:11:05Z | 2025-01-01T21:47:10Z | https://github.com/aimhubio/aim/issues/3178 | [
"type / question"
] | Muthukamalan | 4 |
polakowo/vectorbt | data-visualization | 17 | ypeError: No matching definition for argument type(s) array(float64, 2d, C), array(int32, 1d, C), array(bool, 1d, C) | I am trying to reproduce example from readme. I get error in this line
```
# Generate signals
fast_ma, slow_ma = vbt.MA.from_combinations(price, windows, 2)
```
The error message is:
```
---------------------------------------------------------------------------
TypeError Traceb... | closed | 2020-05-04T13:17:21Z | 2020-05-11T14:09:48Z | https://github.com/polakowo/vectorbt/issues/17 | [] | MislavSag | 23 |
Johnserf-Seed/TikTokDownload | api | 580 | 异常,接口内容返回异常: status_code=2 | [ 💻 ]:Windows平台
[ 🗻 ]:获取最新版本号中!
[ 🚩 ]:目前 14200 版本已是最新
[ 配置 ]:配置验证成功!
[ 配置 ]:读取本地配置完成!
[ 提示 ]:异常,接口内容返回异常: status_code=2
[2023-10-19 00:21:02,655] - Log.py] - ERROR: [ 提示 ]:异常,接口内容返回异常: status_code=2,Traceback (most recent call last):
File "Util\Profile.py", line 453, in get_Profile
... | closed | 2023-10-19T04:21:50Z | 2023-10-19T10:27:14Z | https://github.com/Johnserf-Seed/TikTokDownload/issues/580 | [
"无效(invalid)"
] | chengliubrother | 0 |
autogluon/autogluon | computer-vision | 4,157 | ValueError: Preset 'chronos_tiny' was not found. Valid presets: ['best_quality', 'high_quality', 'medium_quality', 'fast_training'] | 
| closed | 2024-05-02T07:27:41Z | 2024-05-02T07:40:33Z | https://github.com/autogluon/autogluon/issues/4157 | [] | iganggang | 1 |
widgetti/solara | jupyter | 817 | why? | Solara server is starting at http://aarch64-conda-linux-gnu:8765
ERROR: [Errno -2] Name or service not known | closed | 2024-10-15T08:15:38Z | 2024-10-15T09:02:47Z | https://github.com/widgetti/solara/issues/817 | [] | luckfu | 1 |
django-oscar/django-oscar | django | 4,366 | the message "No products found." at browse.html by version 3.2.5 | Hi, thank you for nice library.
Found a bug? Please fill out the sections below.
### Issue Summary
By version 3.2.5, I created a product, product detail page was made, but there is no product on catalogue and category page.
I install version 3.2.4 and the product is displayed.
### Steps to Reproduce
... | open | 2024-10-03T15:56:02Z | 2025-02-03T19:04:30Z | https://github.com/django-oscar/django-oscar/issues/4366 | [] | kobe2sha | 10 |
tortoise/tortoise-orm | asyncio | 1,405 | How to write this in tortoise | select count(*) from (select count(*) as count_1 from group GROUP BY user_id) tmp where count_1 > 300
How to write this in tortoise | closed | 2023-06-15T06:26:03Z | 2024-12-26T11:56:07Z | https://github.com/tortoise/tortoise-orm/issues/1405 | [
"question"
] | hu0514 | 1 |
adbar/trafilatura | web-scraping | 229 | Keep orderedness information of lists | I was wondering if it is possible to know whether a `<list>` in the extracted output came from an `<ul>` or an `<ol>`. Even with `include_formatting` (which I don't need), this information is omitted.
I saw that `<head>`, for instance, retains the level in the `rend` attribute. A similar attribute would be handy in ... | closed | 2022-07-29T14:03:56Z | 2022-12-21T12:11:42Z | https://github.com/adbar/trafilatura/issues/229 | [
"feedback"
] | DavidNemeskey | 4 |
replicate/cog | tensorflow | 1,330 | Which Cuda versions are not supported by Cog? | Does Cog support all CUDA versions or not?
I want to know if older CUDA versions are compatible and functional. | closed | 2023-10-05T10:32:28Z | 2023-10-05T19:28:20Z | https://github.com/replicate/cog/issues/1330 | [] | geoxpert0001 | 2 |
saulpw/visidata | pandas | 2,203 | [vdsql] Polishing vdsql, list of issues |
- [ ] #282: Select starting table in postgres from command-line
- [ ] #579: [Postgres] Allow inserting / deleting rows
... | open | 2023-12-31T07:37:54Z | 2023-12-31T07:38:18Z | https://github.com/saulpw/visidata/issues/2203 | [
"vdsql"
] | saulpw | 0 |
qubvel-org/segmentation_models.pytorch | computer-vision | 361 | ModuleNotFoundError: No module named 'segmentation_models_pytorch.losses' | Hello! Thanks so much for your work! When I want to use the losses here, there is a error:ModuleNotFoundError: No module named 'segmentation_models_pytorch.losses'. Would you help me to solve this problem? Thank you very much! | closed | 2021-03-08T01:24:27Z | 2023-05-20T00:12:55Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/361 | [
"Stale"
] | XinlingQiu | 7 |
cvat-ai/cvat | computer-vision | 8,396 | Could not create the task Open the Browser Console to get details | ### Actions before raising this issue
- [X] I searched the existing issues and did not find anything similar.
- [X] I read/searched [the docs](https://docs.cvat.ai/docs/)
### Steps to Reproduce
I'm simply trying to use the tool, but as soon as I add the image to the task I want to work on, the error "Could no... | closed | 2024-09-03T14:07:00Z | 2024-09-04T14:08:26Z | https://github.com/cvat-ai/cvat/issues/8396 | [
"bug"
] | jacopich | 0 |
microsoft/hummingbird | scikit-learn | 480 | Add support for SHAP package | SHAP is a general model attrition package: https://fburl.com/5lq7ho5y
I have a use case to first use SHAP to explain a sklearn/xgboost classifier and then convert the model to pytorch. SHAP is not supported yet for model conversion. Is there a quick way to walk it around? | closed | 2021-03-31T03:37:24Z | 2021-04-02T19:00:38Z | https://github.com/microsoft/hummingbird/issues/480 | [] | seuzha | 2 |
xinntao/Real-ESRGAN | pytorch | 161 | Epoch configuration | Hi. I'm training to control the amount of epochs when finetuning but I see no option to control it in finetune_realesrgan_x4plus.yml.
Thanks! | open | 2021-11-23T14:46:03Z | 2022-08-04T09:37:09Z | https://github.com/xinntao/Real-ESRGAN/issues/161 | [] | SirSykon | 1 |
axnsan12/drf-yasg | django | 354 | Request Body Param is being sent as a `String` instead of an `Array` of `Integers` | My auto generated docs appear correct but when sending a POST, django is receive the parameter as a string. What it's expecting is
```
{ 'ids': [<id1>, <id2>, ...] }
```
Django is instead receiving the following when making requests from yasg
```
{ 'ids': '[<id1>, <id2>, ...]' }
```
Trying to generate t... | open | 2019-04-23T19:57:08Z | 2025-03-07T12:16:49Z | https://github.com/axnsan12/drf-yasg/issues/354 | [
"triage"
] | jkleve | 2 |
jazzband/django-oauth-toolkit | django | 990 | Generated Access token using JWT | <!-- What is your question? -->
- Hi everyone, i'm try generate token with function `signed_token_generator`
- This is my settings:
```
OAUTH2_PROVIDER = {
"SCOPES_BACKEND_CLASS": "OauthToolket_RestFramework.scopes.ScopesBackend",
"ACCESS_TOKEN_GENERATOR": "oauthlib.oauth2.rfc6749.tokens.signed_token_gene... | closed | 2021-06-22T11:21:20Z | 2022-01-19T03:57:09Z | https://github.com/jazzband/django-oauth-toolkit/issues/990 | [
"question"
] | KhoaDauTay | 2 |
skypilot-org/skypilot | data-science | 4,533 | [Serve] Support event-based autoscaling | <!-- Describe the bug report / feature request here -->
Right now, we only have QPS-based autoscaling, which works pretty well for a lot of situations. But honestly, it’d be awesome if we could generalize it to support event-based scaling too. By making the autoscaler more flexible, we could let it play nicely with ... | open | 2025-01-05T01:47:32Z | 2025-01-05T01:47:32Z | https://github.com/skypilot-org/skypilot/issues/4533 | [] | gaocegege | 0 |
Anjok07/ultimatevocalremovergui | pytorch | 1,244 | FIXED - Linux Mint install problems | Hi,
after following your instructions, the installation step crashes (after downloading all dependencies) in the
`pip3 install -r requirements.txt`: PLEASE help me to fix this error: I tried a few times to install it, but I get the same problem....
https://imgur.com/IhQiZgi
`Collecting sklearn
Downloading s... | closed | 2024-03-17T15:58:41Z | 2024-03-20T16:54:19Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/1244 | [] | CodesoundR | 4 |
kubeflow/katib | scikit-learn | 1,946 | Should MutatingWebhook failurePolicy be `Ignore`? | /kind feature
**Describe the solution you'd like**
Not sure if this is a bug or a feature request, but the MutatingWebhook `failurePolicy`s are set to `Ignore`, which means it is easy to not notice if your webhook calls are failing. This was noticed when debugging #1795.
Is this the best configuration? Are t... | closed | 2022-09-02T20:54:50Z | 2023-08-04T23:27:55Z | https://github.com/kubeflow/katib/issues/1946 | [
"kind/feature"
] | ca-scribner | 3 |
GibbsConsulting/django-plotly-dash | plotly | 450 | small window | Hello guys,
I have a problem after deploying the app to Django (on PythonAnywhere).
The dash app appears in a very small window. One option to solve this is to use 'ratio' argument.
But is there any option like ratio=auto?

model.train(dataset_train, dataset_val,
... | open | 2021-08-20T17:17:17Z | 2021-08-20T17:32:23Z | https://github.com/matterport/Mask_RCNN/issues/2674 | [] | t00lbelt | 1 |
taverntesting/tavern | pytest | 538 | Key(s) not found in format: <var_name> = '???' Error After upgrading to 1.0. | I have recently upgraded the tavern to 1.0 but after upgrading and changing all tests compatible to 1.0.
Eg - ```body: -> json:``` in response.
Almost tests are failing with format error.
One scenerio:
1. data.yaml
```yaml
---
# Each file should have a name and description
name: User Variables
descri... | closed | 2020-04-16T07:02:32Z | 2020-04-17T10:22:03Z | https://github.com/taverntesting/tavern/issues/538 | [] | imkaka | 4 |
recommenders-team/recommenders | data-science | 1,246 | How to generate context embedding for DKN?[ASK] | ### Description
<!--- Describe your general ask in detail -->
I notice that context embedding is not used in the [dkn_deep_dive.ipynb](https://github.com/microsoft/recommenders/blob/master/examples/02_model_content_based_filtering/dkn_deep_dive.ipynb). But as DKN article describes, context embedding can improve the q... | open | 2020-11-16T00:40:27Z | 2020-12-17T09:14:56Z | https://github.com/recommenders-team/recommenders/issues/1246 | [
"help wanted"
] | ConnollyLeon | 5 |
microsoft/nni | tensorflow | 5,666 | Requests exception: too many redirects | **Describe the issue**:
running the following example experiment:
`nnictl create --config .\nni\examples\trials\mnist-pytorch\config_windows.yml`
getting this error:
[2023-08-18 10:22:56] Creating experiment, Experiment ID: nu5kfm0o
[2023-08-18 10:22:56] Starting web server...
[2023-08-18 10:22:59] WARNING... | open | 2023-08-18T08:38:27Z | 2023-08-18T08:38:27Z | https://github.com/microsoft/nni/issues/5666 | [] | Hadiaz1 | 0 |
kensho-technologies/graphql-compiler | graphql | 489 | Add Float field to test schema | Neither [Neo4j](https://neo4j.com/docs/cypher-manual/current/syntax/values/) nor [RedisGraph](https://oss.redislabs.com/redisgraph/cypher_support/#types) support Decimal types, but Neo4j does support floats and RedisGraph 64-bit doubles, so it would be nice to add a field like that to the schema and integration test da... | open | 2019-08-16T14:11:28Z | 2019-10-08T15:50:03Z | https://github.com/kensho-technologies/graphql-compiler/issues/489 | [
"maintainer quality-of-life"
] | LWprogramming | 0 |
HumanSignal/labelImg | deep-learning | 349 | Installing modified software not working properly | - OS: Windows 10
- PyQt version:5
I modified your software and adapted it to my needs and it works well when I run it from the source code. But when I tried to install it using pyinstaller, it doesn't read the images when I open a directory. Can you provide me with the correct way to install it? | open | 2018-08-13T11:01:26Z | 2018-08-13T11:01:26Z | https://github.com/HumanSignal/labelImg/issues/349 | [] | issahammoud | 0 |
PokeAPI/pokeapi | graphql | 379 | Pokemon types are inverted | All the pokemon secondary type appear as the first element in the type list.
The order is correct when I ran a local Django instance | closed | 2018-10-03T01:28:29Z | 2020-08-12T20:24:13Z | https://github.com/PokeAPI/pokeapi/issues/379 | [] | tien | 6 |
lux-org/lux | pandas | 113 | No module named 'luxwidget' when installing and activating the api | The console leaves me a "ModuleNotFoundError: No module named 'luxwidget'" when i try to run "jupyter nbextension install --sys-prefix --symlink --overwrite --py luxwidget" in cmd. | closed | 2020-10-16T09:53:50Z | 2020-10-16T22:27:33Z | https://github.com/lux-org/lux/issues/113 | [] | Smartog | 6 |
sloria/TextBlob | nlp | 403 | Pluralization gives dubious results on some corner cases | Hi,
Thanks for providing and maintaining this library.
I noticed that some corner cases are not handled properly.
Notably:
`
from textblob import Word
print(Word("lynx").pluralize()) # prints "lynges"
print(Word("jeans").pluralize()) # prints "jeanss"
`
I'm not a native speaker but I can't find any m... | open | 2021-10-30T04:54:13Z | 2021-10-30T04:54:13Z | https://github.com/sloria/TextBlob/issues/403 | [] | alcinos | 0 |
klen/mixer | sqlalchemy | 51 | Peewee backend doesn't commit by default | I found this surprising, and it seems like a bug, but the Peewee backend doesn't save by default. It seems like it should default to committing, like the Django backend does. Here's a simple test case:
``` python
from mixer.backend.peewee import mixer
from models import Foo
print(Foo.select().count()) # 0
mixer.blend... | closed | 2015-11-20T04:23:22Z | 2015-11-23T12:30:11Z | https://github.com/klen/mixer/issues/51 | [] | ghost | 1 |
jumpserver/jumpserver | django | 14,414 | [Question] How to fix a jquery old version vulnerability? | ### Product Version
4.3.1
### Product Edition
- [X] Community Edition
- [ ] Enterprise Edition
- [ ] Enterprise Trial Edition
### Installation Method
- [X] Online Installation (One-click command installation)
- [ ] Offline Package Installation
- [ ] All-in-One
- [ ] 1Panel
- [ ] Kubernetes
- [ ] Source Code
### E... | closed | 2024-11-06T20:09:26Z | 2025-03-20T13:13:13Z | https://github.com/jumpserver/jumpserver/issues/14414 | [
"✅ Done",
"🤔 Question",
"📦 z~release:PAM",
"📦 z~release:v4.8.0"
] | obgranat | 8 |
luispedro/mahotas | numpy | 58 | Bug in SURF sum_rect() | Shouldn't the lines 42 and 43 in file https://github.com/luispedro/mahotas/blob/master/mahotas/features/_surf.cpp be:
``` cpp
y1 = std::min<int>(y1, integral.dim(0)-1);
x1 = std::min<int>(x1, integral.dim(1)-1);
```
?
| closed | 2015-04-04T14:03:33Z | 2015-04-06T19:05:15Z | https://github.com/luispedro/mahotas/issues/58 | [] | Mimino666 | 1 |
Josh-XT/AGiXT | automation | 532 | Streamlit - Add console output for Tasks | ### Problem Description
Well to be able to see the action you got to view the logs in the device that you are hosting from. This is an issue as the multi user setup won't be able to remote into the host machine.
### Proposed Solution
have a console output so that any user can see the console output ONLY their agent ... | closed | 2023-05-31T04:00:22Z | 2023-06-09T02:33:29Z | https://github.com/Josh-XT/AGiXT/issues/532 | [
"type | request | enhancement",
"help wanted"
] | birdup000 | 5 |
dmlc/gluon-nlp | numpy | 1,142 | packaging is a required dependency | ```
2020-02-07 04:15:34,466 [INFO ] W-9000-model-stdout com.amazonaws.ml.mms.wlm.WorkerLifeCycle - import gluonnlp as nlp
2020-02-07 04:15:34,466 [INFO ] W-9000-model-stdout com.amazonaws.ml.mms.wlm.WorkerLifeCycle - File "/usr/local/lib/python3.6/site-packages/gluonnlp/__init__.py", line 49, in <module>
2020-... | closed | 2020-02-07T17:13:47Z | 2020-02-22T17:42:50Z | https://github.com/dmlc/gluon-nlp/issues/1142 | [
"bug",
"release focus"
] | leezu | 0 |
open-mmlab/mmdetection | pytorch | 11,882 | Different image resize scales used in training & test pipeline in YOLOX_tiny config file | In yolox tiny config file : _https://github.com/open-mmlab/mmdetection/blob/main/configs/yolox/yolox_tiny_8xb8-300e_coco.py_
img_scale = (640, 640) is used in train_pipeline while (416, 416) is used in test_pipeline.
Shouldn't both be same?
, Is it true? | https://github.com/codertimo/BERT-pytorch/blob/alpha0.0.1a4/bert_pytorch/model/transformer.py#L9
Thank you! | closed | 2018-10-23T03:40:23Z | 2018-10-23T04:16:11Z | https://github.com/codertimo/BERT-pytorch/issues/26 | [
"question"
] | guotong1988 | 2 |
graphistry/pygraphistry | pandas | 65 | Codec error when running Marvel Tutorial with Python 2 Kernel | To reproduce, execute marvel tutorial notebook with a python 2 kernel.
The command:
`plotter2.plot(unique_coappearences, heroes)`
Produces the error:
```
---------------------------------------------------------------------------
UnicodeEncodeError Traceback (most recent call last)
<ipython-i... | closed | 2016-05-18T21:13:11Z | 2016-05-19T06:02:47Z | https://github.com/graphistry/pygraphistry/issues/65 | [
"bug",
"p4"
] | padentomasello | 0 |
arogozhnikov/einops | numpy | 216 | [Feature suggestion] Naming einops keras layers | Hello, it would be really nice if one could name the eniops layers just like any other keras layer. Right now, the following code triggers an error.
```python
from einops.layers.tensorflow import Rearrange
tf.keras.Sequential([
tf.keras.Input((224, 224, 3), name="inputs"),
Rearrange("b h w c -> b c h w... | closed | 2022-10-08T05:08:54Z | 2024-01-24T23:30:30Z | https://github.com/arogozhnikov/einops/issues/216 | [
"feature suggestion"
] | Sangohe | 1 |
0xTheProDev/fastapi-clean-example | graphql | 6 | question on service-to-service | Is it an issue that we expose models directly? For example in BookService we expose model in get method, and we also use models of Author repository.
This implies that we are allowed to use those interfaces - CRUD, read all properties, call other relations, etc.
Is exposing schemas objects between domains is a better... | closed | 2023-02-13T10:09:41Z | 2023-04-25T07:10:49Z | https://github.com/0xTheProDev/fastapi-clean-example/issues/6 | [] | Murtagy | 1 |
kymatio/kymatio | numpy | 333 | Test for raised errors in `Scattering2D.forward` | One `TypeError` and three `RuntimeError`s may be raised by `forward`, but are not currently tested. For example, see [here](https://codecov.io/gh/kymatio/kymatio/src/82f21ed11e9152cd234e63af96d48300210429a9/kymatio/scattering2d/scattering2d.py#L122). | closed | 2019-02-16T21:54:27Z | 2019-03-02T19:30:30Z | https://github.com/kymatio/kymatio/issues/333 | [
"2D",
"tests"
] | janden | 0 |
bigscience-workshop/petals | nlp | 551 | Reachability Issue for private swarm | I am creating a private swarm using backbone peer hosted at aws EC2 instance and trying to connect my machine's GPU but getting reachability issues.
I have followed the list of commands listed below.
```python3 -m petals.cli.run_dht --host_maddrs /ip4/0.0.0.0/tcp/31337 --identity_path bootstrap1.id```
I am getting... | closed | 2024-01-12T06:34:03Z | 2024-11-26T21:09:09Z | https://github.com/bigscience-workshop/petals/issues/551 | [] | VarunJoshi10 | 1 |
deepinsight/insightface | pytorch | 2,455 | Arcface_paddle :Why are the contents of FresResNet50.pdiparams output by export.py different? | When checking the two output by export.py with md5sum, only the contents of FresResNet50.pdiparams are different.
sh scripts/export_static.sh && md5sum /FresResNet50/exported_model/*
4166d80f82ba77cc7254432871c21470 /FresResNet50.pdiparams
96637fd6ffa626790b2607445ef21cce /FresResNet50.pdmodel
sh scripts/expo... | open | 2023-10-18T02:33:47Z | 2023-10-18T02:33:47Z | https://github.com/deepinsight/insightface/issues/2455 | [] | kenmiyauchi | 0 |
plotly/dash-table | dash | 279 | Use new refs pattern instead of legacy string pattern | React 16 introduced a new pattern for refs, described [here](https://reactjs.org/docs/refs-and-the-dom.html) - we are using the string pattern, described in that doc as "legacy". It's probably not a concern until it will be deprecated in React 18 (or later?) but it could give us some performance gains. Making this issu... | open | 2018-12-04T17:56:27Z | 2018-12-04T17:56:27Z | https://github.com/plotly/dash-table/issues/279 | [
"dash-type-maintenance"
] | valentijnnieman | 0 |
dpgaspar/Flask-AppBuilder | flask | 2,263 | '_FakeStack' object has no attribute '__ident_func__' |
### Environment
win 11 Python 3.8.10
Flask-Appbuilder version:
4.5.0
pip freeze output:
aliyun-python-sdk-core==2.13.36
aliyun-python-sdk-dysmsapi==2.1.2
aliyun-python-sdk-kms==2.16.2
apispec==6.6.1
async-timeout==4.0.2
attrs==23.2.0
Babel==2.15.0
bcrypt==4.0.1
beautifulsoup4==4.12.2
blinker==1... | closed | 2024-07-19T14:31:01Z | 2024-07-20T00:11:00Z | https://github.com/dpgaspar/Flask-AppBuilder/issues/2263 | [] | LeiYangGH | 2 |
ets-labs/python-dependency-injector | flask | 177 | Question on testing with python-dependency-injector | Hello and thank you for such a great library.
I have a question regarding of how to test application, that uses python-dependency-injector library.
Lets take simple usecase:
```
class EmailSender:
def send(self, email):
pass
class SmtpEmailSender:
# implementation with use of smpt librar... | closed | 2018-01-14T07:08:37Z | 2018-01-17T13:47:12Z | https://github.com/ets-labs/python-dependency-injector/issues/177 | [
"question"
] | asyncee | 9 |
errbotio/errbot | automation | 1,439 | !repos command fails with error '''Computer says nooo. See logs for details: b'repo_index' ''' | In order to let us help you better, please fill out the following fields as best you can:
### I am...
* [ *] Reporting a bug
* [ ] Suggesting a new feature
* [ ] Requesting help with running my bot
* [ ] Requesting help writing plugins
* [ ] Here about something else
### I am running...
* Errbot version... | closed | 2020-08-21T05:37:19Z | 2020-08-31T06:46:42Z | https://github.com/errbotio/errbot/issues/1439 | [
"type: support/question",
"fix-available"
] | netwninja | 1 |
davidteather/TikTok-Api | api | 544 | [BUG] - gevent.exceptions.InvalidSwitchError: Invalid switch into Event.wait(): () | Sorry, I'm from Russia, I use a translator. Your library is working properly, but often after a while such an error is thrown out
Traceback (most recent call last):
File "main.py", line 1283, in <module>
_token_bot.polling(none_stop=True, interval=0)
File "/usr/local/lib/python3.8/dist-packages/telebot/__... | closed | 2021-03-30T12:18:10Z | 2022-02-14T03:09:11Z | https://github.com/davidteather/TikTok-Api/issues/544 | [
"bug"
] | K1NDER-ai | 1 |
koxudaxi/datamodel-code-generator | pydantic | 1,901 | datamodel-codegen produces class with missing body parts | **Describe the bug**
Within the OSCAL schema is:
```
"EmailAddressDatatype" :
{ "description" : "An email address string formatted according to RFC 6531.",
"allOf" :
[
{ "$ref" : "#/definitions/StringDatatype" },
{ "type" : "string",
"format" : "email",
"pattern"... | open | 2024-04-03T18:00:11Z | 2024-04-03T18:00:11Z | https://github.com/koxudaxi/datamodel-code-generator/issues/1901 | [] | degenaro | 0 |
deepspeedai/DeepSpeed | machine-learning | 6,914 | Train batch size errors | [rank0]: AssertionError: Check batch related parameters. train_batch_size is not equal to micro_batch_per_gpu * gradient_acc_step * world_size 8 != 2 * 1 * 1
在前面的dist.world_size打印获取=4,但是依然不行 | closed | 2024-12-25T09:56:11Z | 2025-01-24T15:53:18Z | https://github.com/deepspeedai/DeepSpeed/issues/6914 | [] | lckkkk02 | 4 |
google-research/bert | tensorflow | 759 | Exporting probabilities over the learned vocabulary | Currently, the `extract_features.py` file supports extracting representations before the last output layer but I want to extract the final probabilities over the vocabulary. I modified the code with the following addition but it doesn't seem to work (the probabilities I'm getting are all very small).
```
model_outp... | closed | 2019-07-12T18:44:11Z | 2019-07-16T15:32:33Z | https://github.com/google-research/bert/issues/759 | [] | lioutasb | 0 |
cleanlab/cleanlab | data-science | 910 | Add underperforming_group issue type among the Datalab defaults | Test issue manager with different datasets (Image, tabular etc.) to make sure that the underperforming group in the dataset is extracted successfully. List any failure cases that might need to be addressed before adding this issue type to the defaults. | closed | 2023-12-07T04:27:04Z | 2024-02-12T16:27:16Z | https://github.com/cleanlab/cleanlab/issues/910 | [
"enhancement",
"next release"
] | tataganesh | 2 |
flaskbb/flaskbb | flask | 661 | Update tests to use modern versions of python | Change the build tests so they no longer use the obsolete versions of python and use currently supported ones. | open | 2024-04-08T17:22:49Z | 2024-04-08T17:22:49Z | https://github.com/flaskbb/flaskbb/issues/661 | [] | gmweinberg | 0 |
nltk/nltk | nlp | 3,261 | Unable to get local issuer certificate CentOS_7 | Hi,
I'm trying to download the punkt package using nltk.download('punkt') command and I got the following error:
[nltk_data] Error loading punkt: <urlopen error [SSL:
[nltk_data] CERTIFICATE_VERIFY_FAILED] certificate verify failed:
[nltk_data] unable to get local issuer certificate (_ssl.c:1002)>
I'm... | open | 2024-06-04T09:14:07Z | 2025-01-30T17:46:28Z | https://github.com/nltk/nltk/issues/3261 | [] | francoiscap | 2 |
pytorch/pytorch | deep-learning | 149,475 | IndexError in linear_binary when X and Y are the same with max-autotune enabled | ### 🐛 Describe the bug
When the x and y are the same in the inputs with max-autotune enabled, an index error occurs.
Simple reproducer:
```
class Model(torch.nn.Module):
def __init__(self):
super().__init__()
self.linear = torch.nn.Linear(1024, 1024)
def forward(self, input):
out = se... | open | 2025-03-19T02:23:52Z | 2025-03-19T02:25:20Z | https://github.com/pytorch/pytorch/issues/149475 | [
"oncall: cpu inductor"
] | CaoE | 0 |
521xueweihan/HelloGitHub | python | 2,278 | 【项目推荐】Vue Vben Admin ,一个基于vite+vue3+antd的免费开源的中后台模版 | ## 推荐项目
<!-- 这里是 HelloGitHub 月刊推荐项目的入口,欢迎自荐和推荐开源项目,唯一要求:请按照下面的提示介绍项目。-->
<!-- 点击上方 “Preview” 立刻查看提交的内容 -->
<!--仅收录 GitHub 上的开源项目,请填写 GitHub 的项目地址-->
- 项目地址:https://github.com/vbenjs/vue-vben-admin
<!--请从中选择(C、C#、C++、CSS、Go、Java、JS、Kotlin、Objective-C、PHP、Python、Ruby、Rust、Swift、其它、书籍、机器学习)-->
- 类别:JS
... | closed | 2022-07-10T03:45:30Z | 2022-07-31T07:25:12Z | https://github.com/521xueweihan/HelloGitHub/issues/2278 | [
"JavaScript 项目"
] | ethanguo770 | 2 |
cvat-ai/cvat | tensorflow | 9,171 | CVAT Installation using Singularity instead of Docker? | ### Actions before raising this issue
- [x] I searched the existing issues and did not find anything similar.
- [x] I read/searched [the docs](https://docs.cvat.ai/docs/)
### Is your feature request related to a problem? Please describe.
I am trying to run a CVAT service on my school cluster, and I was wondering if ... | closed | 2025-03-04T16:20:23Z | 2025-03-06T16:29:47Z | https://github.com/cvat-ai/cvat/issues/9171 | [
"enhancement"
] | rachitsaluja | 1 |
holoviz/panel | matplotlib | 7,158 | Add Context Menu Feature to Tabulator | #### Is your feature request related to a problem? Please describe.
No
#### Describe the solution you'd like
Tabulator has a left/right click context menu feature where callbacks can be registered. Having a context menu option for rows and cells would let the developer provide multiple options to perform additiona... | open | 2024-08-17T10:12:18Z | 2025-02-20T15:04:49Z | https://github.com/holoviz/panel/issues/7158 | [
"type: enhancement"
] | Cyb3r-Monk | 0 |
google-research/bert | tensorflow | 1,240 | How to deal with this problem | ValueError: Tensor conversion requested dtype string for Tensor with dtype float32: <tf.Tensor 'args_0:0' shape=() dtype=float32>
| open | 2021-06-28T12:39:32Z | 2021-06-28T12:39:32Z | https://github.com/google-research/bert/issues/1240 | [] | justyyau | 0 |
deepset-ai/haystack | machine-learning | 8,132 | clean up FilterRetrieverdocstrings | closed | 2024-08-01T07:10:38Z | 2024-08-01T11:16:45Z | https://github.com/deepset-ai/haystack/issues/8132 | [] | agnieszka-m | 0 | |
dgtlmoon/changedetection.io | web-scraping | 2,307 | UI - Text Filtering not displaying filters when watched site is added to a group with filters. |
**Describe the bug**
Given a watched website with text filters, if it is added to a group which has filters too, the text filters in the website edit page do not show anymore, but are applied.
The system default is playwright.
**Version**
v0.45.17
**To Reproduce**
Steps to reproduce the behavior:
1. Cre... | closed | 2024-04-14T11:17:34Z | 2024-04-16T16:48:52Z | https://github.com/dgtlmoon/changedetection.io/issues/2307 | [
"user-interface",
"triage"
] | Dragonatorul | 2 |
onnx/onnx | tensorflow | 6,601 | [RFC] ONNX next wheel build platform: for example manylinux-2.28? | # Ask a Question
### Question
Sooner or later, we will have to decide when we want to switch to a new manylinux platform and how we want to organize the transition. Pytorch deals with it in the following way.
(https://github.com/pytorch/pytorch/issues/123649
I would be very interested and happy to hear abou... | open | 2024-12-29T17:30:01Z | 2025-03-12T05:50:39Z | https://github.com/onnx/onnx/issues/6601 | [
"question",
"rfc"
] | andife | 2 |
pydantic/pydantic-settings | pydantic | 203 | How to Override Deeply Nested Settings using Environment Variables? | Hello,
Is it possible to override a deeply nested setting without having to redefine the entirety of the model?
Below is a modified example based off of [Parsing environment variable values](https://docs.pydantic.dev/latest/concepts/pydantic_settings/#parsing-environment-variable-values):
```python
import os
... | closed | 2023-12-28T18:10:16Z | 2024-02-21T02:45:06Z | https://github.com/pydantic/pydantic-settings/issues/203 | [] | kschwab | 10 |
jupyter-incubator/sparkmagic | jupyter | 446 | Why %%sql outputs timestamp in UTC instead of local format? | Same queries have different output. Looks like autoviz converts timestamp to UTC unnecessarily (We're in UTC+8). It's so annoying. How could we make it show in our local timezone?
Sparkmagic version is 0.11.4
... | open | 2018-03-26T06:36:19Z | 2018-03-26T06:36:19Z | https://github.com/jupyter-incubator/sparkmagic/issues/446 | [] | raiden2012 | 0 |
nonebot/nonebot2 | fastapi | 3,241 | Plugin: 群聊总结 | ### PyPI 项目名
nonebot_plugin_summary_group
### 插件 import 包名
nonebot_plugin_summary_group
### 标签
[{"label":"群聊总结","color":"#b8e994"},{"label":"AI","color":"#1289a7"},{"label":"分析","color":"#0652dd"}]
### 插件配置项
```dotenv
GEMINI_KEY=xyz
```
### 插件测试
- [ ] 如需重新运行插件测试,请勾选左侧勾选框 | closed | 2025-01-05T07:20:22Z | 2025-01-07T08:07:30Z | https://github.com/nonebot/nonebot2/issues/3241 | [
"Plugin",
"Publish"
] | StillMisty | 3 |
jupyter-book/jupyter-book | jupyter | 1,443 | singlehtml builder not available | ### Link to the documentation you'd like to improve
https://jupyterbook.org/basics/build.html#types-of-build-outputs
### What to improve
The information provided about the list of builders seems inaccurate: singlehtml builder doesn't seem to be available.
```python
> jupyter-book --version
Jupyter Book : 0... | closed | 2021-08-27T14:56:41Z | 2021-08-27T16:03:11Z | https://github.com/jupyter-book/jupyter-book/issues/1443 | [
"documentation"
] | akhmerov | 3 |
open-mmlab/mmdetection | pytorch | 11,324 | test_pipleline in RTMDet config file | Hello
How are you?
I am using the latest released version (3.2.0) of mmdetection.
I found that there is an issue in test_pipeline of RTMDet config file.

I think that "LoadAnnotations" should be placed right... | open | 2023-12-30T01:49:59Z | 2024-01-08T03:11:30Z | https://github.com/open-mmlab/mmdetection/issues/11324 | [] | rose-jinyang | 1 |
matplotlib/mplfinance | matplotlib | 308 | how can I embed my mplfinance graph(mpf_animation_demo1.py) in Tkinter ? | Ask anything you want about mplfinance usage, project philosophy and/or priorities, or anything else related to mplfinance.
Display the following animation graph on the tkinter,environment:python3.6 +windows10 desktop
Below is mpf_animation_demo1.py:
```python
import pandas as pd
import mplfinance as mpf
import ... | open | 2021-01-02T09:54:18Z | 2021-01-10T00:09:14Z | https://github.com/matplotlib/mplfinance/issues/308 | [
"question"
] | hmhjapan | 2 |
bendichter/brokenaxes | matplotlib | 38 | height_ratios ignored | Specified height_ratio=[1,4] below (or any other ratio) but it is being ignored.
Current bottom axis looks squished otherwise.
```
#define lower y-axis range and upper y-axis range
bax = brokenaxes( ylims=((0, 2), (3,10)), height_ratios=[1,4])
# Plot
bax.plot('Year', 'Barbiturates', data=df2, color='blue'... | closed | 2019-08-23T02:50:34Z | 2019-09-12T17:23:13Z | https://github.com/bendichter/brokenaxes/issues/38 | [] | janetfb9109 | 4 |
zappa/Zappa | flask | 1,053 | Will my data base get lots of connections If there are many requests happen | <!--- Provide a general summary of the issue in the Title above -->
## Context
I love zappa very much as my team can run the flask application on aws lambda. We don't have to worry our application will be offline someday.
But we are also using SQLAlchemy to connect db in our application. With my understanding lamb... | closed | 2021-10-10T16:16:38Z | 2022-07-16T04:19:52Z | https://github.com/zappa/Zappa/issues/1053 | [] | clown-0726 | 2 |
mckinsey/vizro | pydantic | 361 | Decimal numbers are sometimes being cut-off in sliders/range-sliders | ### Description
Decimal numbers are sometimes being cut-off in sliders/range-sliders.

This seems to **only** happen when the `step` argument is not defined. When the `step` argument is ... | closed | 2024-03-12T09:03:05Z | 2024-07-09T15:48:02Z | https://github.com/mckinsey/vizro/issues/361 | [
"Bug Report :bug:"
] | huong-li-nguyen | 2 |
adbar/trafilatura | web-scraping | 203 | ModuleNotFoundError: No module named '_lzma' in 1.2.1 | closed | 2022-05-02T12:25:22Z | 2022-09-09T23:23:33Z | https://github.com/adbar/trafilatura/issues/203 | [
"feedback"
] | marban | 3 | |
plotly/jupyter-dash | jupyter | 38 | jupyter-dash R library | Hello,
Is there a way to create an R library so that I could run r-Dash in jupyter lab?
Thanks!
Elze | open | 2020-09-30T18:26:43Z | 2020-09-30T18:26:43Z | https://github.com/plotly/jupyter-dash/issues/38 | [] | elzerac | 0 |
paperless-ngx/paperless-ngx | machine-learning | 9,302 | [BUG] Unable to remove user group from permissions | ### Description
When removing a user group from the permission panel, it is ignored on reload. Even when using bulk edit.
### Steps to reproduce
1. Add two or more user groups:

2. Remove one of these groups and hit save:
![... | closed | 2025-03-05T13:36:09Z | 2025-03-05T15:57:08Z | https://github.com/paperless-ngx/paperless-ngx/issues/9302 | [
"not a bug"
] | TimGoll | 5 |
ymcui/Chinese-LLaMA-Alpaca | nlp | 319 | 多进程跑出现loss为0,eval loss为nan | 感谢您使用Issue提问模板,请按照以下步骤提供相关信息。我们将优先处理信息相对完整的Issue,感谢您的配合。
*提示:将[ ]中填入x,表示打对钩。提问时删除上面这两行。请只保留符合的选项,删掉其他。*
### 详细描述问题
采用多个进程微调chinese_lora_alpaca_plus_13b模型的时候出现loss为0,并且eval loss为nan,padding_side为right
### 运行截图或log
`
and this
`elmo([['вопрос жизни и смерти']])`
The embedding size is the... | closed | 2019-05-05T10:23:41Z | 2019-05-14T18:57:31Z | https://github.com/deeppavlov/DeepPavlov/issues/829 | [] | joistick11 | 2 |
Lightning-AI/pytorch-lightning | deep-learning | 19,829 | How to incorporate vLLM in Lightning for LLM inference? | ### Description & Motivation
[vLLM](https://github.com/vllm-project/vllm) is one of the most popular and effective tool for quick, large-scale LLM inference. Are there any existing examples of incorporating vLLM in Lightning? I have not found any so far.
### Pitch
Adding inference via vLLM under the Lightning framew... | open | 2024-04-30T20:08:03Z | 2024-09-04T06:42:13Z | https://github.com/Lightning-AI/pytorch-lightning/issues/19829 | [
"feature",
"needs triage"
] | YuWang916 | 3 |
Neoteroi/BlackSheep | asyncio | 76 | How to bind path to api endpoint? | Hey, I'm trying to bind dynamic path to api endpoint in BlackSheep just like we do in flask and quart. But it's not working.
Example:
In flask and quart it can be done like this:
url: xyz.com/get/file/dynamic/path/to/file
```
@api.route('/get/file/<path:filepath>', methods=['GET'])
def get_file(filepath):
..... | closed | 2021-01-19T06:10:36Z | 2021-01-24T19:17:35Z | https://github.com/Neoteroi/BlackSheep/issues/76 | [
"enhancement",
"fixed in branch"
] | abhinavatai | 5 |
zihangdai/xlnet | nlp | 111 | error in pretrain an XLNet . train_gpu.py. | I have successfully ran `spm_train \
--input=$INPUT \
--model_prefix=sp10m.cased.v3 \
--vocab_size=32000 \
--character_coverage=0.99995 \
--model_type=unigram \
--control_symbols=<cls>,<sep>,<pad>,<mask>,<eod> \
--user_defined_symbols=<eop>,.,(,),",-,–,£,€ \
--shuffle_input_sentence \
--input_senten... | closed | 2019-07-03T11:53:24Z | 2019-07-15T19:28:52Z | https://github.com/zihangdai/xlnet/issues/111 | [] | Bagdu | 9 |
TheKevJames/coveralls-python | pytest | 156 | Support Mercurial | I created at PR #155.
I've added a new environment variable called USE_HG, which if set will use mercurial. I mainly left the existing API mostly alone, except two things:
1. I renamed `.git_info` to `.dvcs_info`, which returns the same data structure.
2. I moved run_command to a new file called utilities.
2.b ... | closed | 2017-06-13T14:19:23Z | 2018-08-25T10:50:23Z | https://github.com/TheKevJames/coveralls-python/issues/156 | [] | eire1130 | 5 |
streamlit/streamlit | machine-learning | 10,751 | Support admonitions / alerts / callouts in markdown | ### Checklist
- [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests.
- [x] I added a descriptive title and summary to this issue.
### Summary
Implement support for alert blocks (aka admonitions) within the Streamlit markdown flavour.
### Why?
This ... | open | 2025-03-12T17:00:47Z | 2025-03-12T17:03:22Z | https://github.com/streamlit/streamlit/issues/10751 | [
"type:enhancement",
"feature:markdown"
] | lukasmasuch | 1 |
jina-ai/serve | machine-learning | 6,186 | Jina AI install error on Ubuntu 22.04 and Python 3.12 system | **Describe the bug**
The error pops up when i try to install the jina-ai python package on my Ubuntu machine.
Building GRPC wheel failure.
[jina install error.txt](https://github.com/user-attachments/files/16538089/jina.install.error.txt)
**Describe how you solve it**
Not Solved yet
---
<!-- Optional, but ... | closed | 2024-08-08T05:38:43Z | 2024-12-31T07:33:55Z | https://github.com/jina-ai/serve/issues/6186 | [] | teetangh | 15 |
microsoft/nlp-recipes | nlp | 279 | [ASK] Modify ReadMe for question_answering folder | ### Description
Update the notebook table with the correct naming of the notebooks and names.
### Other Comments
**Principles of NLP Documentation**
Each landing page at the folder level should have a ReadMe which explains -
○ Summary of what this folder offers.
○ Why and how it benefits users
○ As ap... | closed | 2019-08-13T21:37:06Z | 2019-08-19T14:16:23Z | https://github.com/microsoft/nlp-recipes/issues/279 | [
"documentation",
"release-blocker"
] | dipanjan77 | 0 |
apify/crawlee-python | web-scraping | 717 | Relax pydantic <2.10.0 constraint once issues solved | With pydantic 2.10.0 we currently get errors like:
```
pydantic.errors.PydanticUserError: `Configuration` is not fully defined; you should define `Any`, then call `Configuration.model_rebuild()
```
It was working in pydantic version 2.9.2
Relax <2.10.0 contraint in pyproject.toml once issues are solved in Pydant... | closed | 2024-11-21T10:33:35Z | 2024-12-05T15:35:32Z | https://github.com/apify/crawlee-python/issues/717 | [
"t-tooling",
"adhoc"
] | Pijukatel | 2 |
jacobgil/pytorch-grad-cam | computer-vision | 184 | Suggestion to add Zoom-CAM | Full paper: https://ieeexplore.ieee.org/abstract/document/9412980
GitHub Repo: https://github.com/X-Shi/Zoom-CAM
Hi, I would like to suggest the addition of Zoom-CAM into this library. From the paper, the visualizations provided look promising. | closed | 2021-12-22T03:27:20Z | 2022-04-01T07:48:52Z | https://github.com/jacobgil/pytorch-grad-cam/issues/184 | [] | plthon | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.