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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
ray-project/ray | deep-learning | 50,694 | Make sure precommit hook linter and CI matches | ### What happened + What you expected to happen
As of now, these two doesn't match.
An example, even the PR passes local precommit hook, it still fails CI: https://buildkite.com/ray-project/microcheck/builds/11578
### Versions / Dependencies
N/A
### Reproduction script
N/A
### Issue Severity
Low: It annoys or f... | open | 2025-02-18T20:41:03Z | 2025-03-11T03:40:38Z | https://github.com/ray-project/ray/issues/50694 | [
"bug",
"P2"
] | dentiny | 3 |
plotly/dash-table | plotly | 627 | Footer | Table footers would be useful in some cases:
- show column totals or other aggregations
- live data: you could use the footer for quickly-changing/accumulating current data, without having to push the entire main data array with every change. Then when that data is finalized, move it into the main array just once and... | open | 2019-10-16T03:26:56Z | 2020-08-28T00:10:16Z | https://github.com/plotly/dash-table/issues/627 | [
"dash-type-enhancement"
] | alexcjohnson | 1 |
nltk/nltk | nlp | 2,459 | nltk.metrics.distance.jaro_similarity returns lower values than it should | Jaro similarity is supposed to give the same results if the strings are reversed:
```
from nltk.metrics import distance as dist
a='rureiter'
b='enreiter'
print("regular={}, reversed={}".format(dist.jaro_similarity(a, b), dist.jaro_similarity(a[::-1], b[::-1])))
```
The code above prints `regular=0.722222222222... | closed | 2019-11-10T16:17:21Z | 2024-01-23T16:06:21Z | https://github.com/nltk/nltk/issues/2459 | [
"metrics"
] | michael-veksler | 4 |
eriklindernoren/ML-From-Scratch | data-science | 72 | Runtime error during backward_pass() of PoolingLayer | I greatly appreciate your work and clearly written code which gives incredible insights into the back propagation technique. I've encountered a bit of a bug which is pretty solvable, but I don't want to make a pull request as I'm not sure of default values here.
It's at layers.py:400 (at the end of the line, last p... | open | 2020-01-01T18:25:58Z | 2020-01-01T19:31:05Z | https://github.com/eriklindernoren/ML-From-Scratch/issues/72 | [] | krworks | 1 |
agronholm/anyio | asyncio | 308 | Document expectations on the `ByteReceiveStream.receive()` method. | It's unclear if [the `ByteReceiveStream.receive()` method](https://anyio.readthedocs.io/en/stable/api.html#anyio.abc.ByteReceiveStream) can be expected to possibly return `b""`.
If it *might* return `b""` then when performing a read-some-data-or-timeout, the user needs to consider that as a possible case, and always... | closed | 2021-06-11T10:29:12Z | 2021-06-17T15:33:41Z | https://github.com/agronholm/anyio/issues/308 | [
"documentation"
] | tomchristie | 2 |
microsoft/nni | machine-learning | 5,602 | Serializer behavior in v2.8 and v2.9 or higher | **Describe the issue**:
I'm trying to perform a model search in retiarii, but the behavior differs depending on the version of NNI.
The settings for nni.trace are as follows:
```
@nni.trace
class MyDataset(torch.utils.data.Dataset):
def __init__(self, root: str, train: bool = True):
filename =... | closed | 2023-06-08T12:05:52Z | 2023-06-19T00:40:33Z | https://github.com/microsoft/nni/issues/5602 | [] | makonaga | 10 |
babysor/MockingBird | deep-learning | 524 | python3 运行demo_toolbox.py的时候提示 Error: Model files not found. Please download the models | **Summary[问题简述(一句话)]**
A clear and concise description of what the issue is.
**Env & To Reproduce[复现与环境]**
描述你用的环境、代码版本、模型
**Screenshots[截图(如有)]**
If applicable, add screenshots to help
<img width="571" alt="image" src="https://user-images.githubusercontent.com/17965372/165520089-6559daf8-eb9f-42d4-86e0-91745... | closed | 2022-04-27T12:42:17Z | 2023-02-11T09:45:27Z | https://github.com/babysor/MockingBird/issues/524 | [] | kirin0926 | 2 |
huggingface/datasets | pytorch | 7,298 | loading dataset issue with load_dataset() when training controlnet | ### Describe the bug
i'm unable to load my dataset for [controlnet training](https://github.com/huggingface/diffusers/blob/074e12358bc17e7dbe111ea4f62f05dbae8a49d5/examples/controlnet/train_controlnet.py#L606) using load_dataset(). however, load_from_disk() seems to work?
would appreciate if someone can explain why ... | open | 2024-11-26T10:50:18Z | 2024-11-26T10:50:18Z | https://github.com/huggingface/datasets/issues/7298 | [] | sarahahtee | 0 |
aminalaee/sqladmin | asyncio | 361 | Two relations on model (foreign key), but one field on model | ### Checklist
- [X] The bug is reproducible against the latest release or `master`.
- [X] There are no similar issues or pull requests to fix it yet.
### Describe the bug
There are two correlations per table (seller, buyer), but a table is generated where there is only one users field.
```python
class DealModel(... | closed | 2022-10-19T13:53:22Z | 2022-11-08T10:59:28Z | https://github.com/aminalaee/sqladmin/issues/361 | [] | Egnod | 2 |
deepset-ai/haystack | machine-learning | 8,204 | DocumentStore deserialiation with from_dict creates a new class instead of calling from_dict on the DocumentStore | **Describe the bug**
Components that deserialize a document store through `to_dict` do not call `from_dict` on the document store, but create a new instance of it. That can be wrong if the functionality differs.
We found that problem while testing out the new IAM workflow in the OpenSearch integration together with a... | closed | 2024-08-12T16:16:13Z | 2024-08-14T08:56:33Z | https://github.com/deepset-ai/haystack/issues/8204 | [
"type:bug"
] | FHardow | 0 |
vi3k6i5/flashtext | nlp | 53 | Any plans for a Java port? | :-) | open | 2018-06-17T11:26:11Z | 2018-06-17T11:26:11Z | https://github.com/vi3k6i5/flashtext/issues/53 | [] | matanox | 0 |
nltk/nltk | nlp | 2,710 | Empty README file | #2514 added an empty `README` file next to the existing `README.md` | closed | 2021-05-07T16:59:39Z | 2021-05-13T10:42:01Z | https://github.com/nltk/nltk/issues/2710 | [] | remram44 | 0 |
hbldh/bleak | asyncio | 798 | Don't use bluetoothctl | * bleak version: 0.14.2
* Python version: 3
* Operating System: GNU/Linux
* BlueZ version: 5.60
### Description
Trying to use bleak inside a Flatpak sandbox fails because bluetoothctl, like all other system utils, can't be accessed.
Inside the bluezdbus backend in `__init__.py` a bluetoothctl subprocess is ... | closed | 2022-04-06T09:10:39Z | 2023-03-18T16:50:15Z | https://github.com/hbldh/bleak/issues/798 | [
"enhancement",
"dependencies",
"Backend: BlueZ"
] | kq98 | 2 |
ultralytics/yolov5 | deep-learning | 12,723 | Retraining yolov5 for additional data | ### Search before asking
- [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions.
### Question
I have trained a yolov5 model using the pre trained weight for my custom dataset.It conta... | closed | 2024-02-09T07:21:18Z | 2024-03-22T00:20:02Z | https://github.com/ultralytics/yolov5/issues/12723 | [
"question",
"Stale"
] | humairaneha | 2 |
docarray/docarray | fastapi | 1,264 | DocIndex: Validate if `search_field` is valid | When a user passes a `search_field` we should check in the abstract class if it correspons to one of the columns that was parsed from the schema. That we the backend implementer does not have to worry about it, and we can give a uniform error message. | closed | 2023-03-21T15:47:34Z | 2023-04-11T14:01:38Z | https://github.com/docarray/docarray/issues/1264 | [
"DocArray v2",
"good-first-issue",
"area/document-index"
] | JohannesMessner | 5 |
dropbox/PyHive | sqlalchemy | 235 | SyntaxError in Python 3.7 when importing hive | Importing hive yields the following error, with Python 3.7:
```python
>>> from pyhive import hive
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python37\lib\site-packages\pyhive\hive.py", line 337
def execute(self, operation, parameters=None, async=False):
... | closed | 2018-09-07T08:09:17Z | 2018-09-10T16:59:09Z | https://github.com/dropbox/PyHive/issues/235 | [] | ragerin | 2 |
python-restx/flask-restx | api | 605 | Please output the schema name that is giving error | I got `Unable to render schema` and I had to tweak the library code to find out which of my 20+ schemas is causing the problem. By tweaking, I mean just printing out schemas in swagger.py's serialize_definitions(self) to until I receive an error. It would be less frustrating if the library directly told the name of my ... | open | 2024-05-23T14:30:26Z | 2024-05-23T14:33:03Z | https://github.com/python-restx/flask-restx/issues/605 | [
"enhancement"
] | Nafyaz | 0 |
lucidrains/vit-pytorch | computer-vision | 33 | why only first vector is sufficient for classification | Thank you very much for sharing this great code.
I wonder why only the [first vector](https://github.com/lucidrains/vit-pytorch/blob/f1deb5fb7e7606dcb1d648f6e22c5f0631dce0e4/vit_pytorch/vit_pytorch.py#L126) is sufficient for classifying the data (referred in paper as z0). I checked the paper, but it was not clear als... | closed | 2020-11-24T03:49:47Z | 2020-11-25T05:37:17Z | https://github.com/lucidrains/vit-pytorch/issues/33 | [] | besaman | 5 |
nerfstudio-project/nerfstudio | computer-vision | 2,989 | Adjustable camera positions | Is there a reason why nerf.studio, instant-ngp, dust3r etc don't allow users to manually correct the camera positions in the software itself visually? To me it seems like this would make sense for refinement? But at the moment we have to manually adjust a transforms.json file every time which just seems absurd.
| open | 2024-03-08T08:18:33Z | 2024-03-08T09:56:14Z | https://github.com/nerfstudio-project/nerfstudio/issues/2989 | [] | mrbid | 2 |
NullArray/AutoSploit | automation | 774 | Divided by zero exception44 | Error: Attempted to divide by zero.44 | closed | 2019-04-19T16:00:37Z | 2019-04-19T16:37:55Z | https://github.com/NullArray/AutoSploit/issues/774 | [] | AutosploitReporter | 0 |
PokeAPI/pokeapi | api | 1,044 | Why isnt csv a submodule just like sprites and cries? | Question basically given in title, but why isnt the dex data in a submodule like cries and sprites?
pokeapi/pokedex exists, probably cause its cloned from veekun/pokedex, but then this repo could be used to track technical issues, and pokedex for content issues. | open | 2024-02-15T09:37:04Z | 2024-02-21T20:48:52Z | https://github.com/PokeAPI/pokeapi/issues/1044 | [] | GreatNovaDragon | 2 |
google-research/bert | tensorflow | 451 | run_squad.py only seems to use one cpu (and ignore the GPU) | I am trying to perform the SQUAD training, but it seems to ignore the GTX1080 (although it is available to tensorflow) and run on the CPU, on a single core.
python run_squad.py \
--vocab_file=$BERT_BASE_DIR/vocab.txt \
--bert_config_file=$BERT_BASE_DIR/bert_config.json \
--init_checkpoint=$BERT_BASE_D... | closed | 2019-02-23T15:09:46Z | 2019-03-04T14:16:17Z | https://github.com/google-research/bert/issues/451 | [] | bbreton3 | 2 |
ionelmc/pytest-benchmark | pytest | 81 | KeyError: 'ops' with pytest-benchmark compare | I only have one saved benchmark currently, which is written by 3.0.0:
[0001_x.json.txt](https://github.com/ionelmc/pytest-benchmark/files/1170147/0001_x.json.txt) (renamed so I can upload it here)
When I do `pytest-benchmark compare` with 3.1.0, I get:
```
Computing stats ...Traceback (most recent call last)... | closed | 2017-07-24T14:42:30Z | 2017-07-26T11:56:01Z | https://github.com/ionelmc/pytest-benchmark/issues/81 | [] | The-Compiler | 1 |
aleju/imgaug | deep-learning | 358 | numpy.dtype("f16") is not available (exception in dtype.py, numpy 1.10) | Hi,
```python
Traceback (most recent call last):
File "D:\SEGMENT\new-bioseg\seg\lib\site-packages\imgaug\dtypes.py", line 65, in get_minimal_dtype
promoted_dt_highres = np.dtype(promoted_dt_highres)
TypeError: data type "f16" not understood
During handling of the above exception, another exception occu... | open | 2019-07-16T05:13:58Z | 2019-08-14T14:54:56Z | https://github.com/aleju/imgaug/issues/358 | [] | KUR-creative | 1 |
assafelovic/gpt-researcher | automation | 981 | "Incompatible Model Error" or "JSON Error" | Hello, I'm encountering an issue with installing and running the GPT Researcher application. After following the installation steps, the application returns several errors when I try to initiate a search.
**Steps Followed to Install the Application:**

…and Grip 4.1.0:

X, y = data... | closed | 2020-04-08T00:54:31Z | 2020-04-21T00:37:33Z | https://github.com/microsoft/hummingbird/issues/22 | [
"bug"
] | ksaur | 5 |
microsoft/MMdnn | tensorflow | 22 | Convert ResNet101 from TensorFlow to PyTorch | Dear @kitstar,
I want to convert a _ResNet V1 101_ model (from TF-Slim) to PyTorch. Would you please kindly help me to do that?
Just as another suggestion, I think it would be great if you create a README.md file for PyTorch conversion section.
| closed | 2017-12-06T07:25:40Z | 2022-07-20T07:45:07Z | https://github.com/microsoft/MMdnn/issues/22 | [] | ahkarami | 19 |
getsentry/sentry | python | 87,480 | Sentry Grafana Integration | ### Problem Statement
We have 1 project, and there are 20 teams linked to it, each with their own url. The errors/issues are linked to the teams with ownership rules. We cannot filter this project within the dashboard from Grafana because the field url value is not available within the Grafana.
### Solution Brainstor... | closed | 2025-03-20T10:42:21Z | 2025-03-21T22:49:54Z | https://github.com/getsentry/sentry/issues/87480 | [
"Product Area: Settings - Integrations"
] | NazAksay | 2 |
nltk/nltk | nlp | 3,127 | Determine whether a Punkt model is available without loading it | Hi,
In some code, I'd like to check whether a Punkt model is available or not without loading the file (that is, without using `sent_tokenize` with dummy text and the language). The way to do it is not documented at all.
I dug into `nltk.data.load` and the whole module to come up with a solution. It's really dif... | open | 2023-03-02T16:08:45Z | 2023-11-27T17:38:00Z | https://github.com/nltk/nltk/issues/3127 | [] | dourouc05 | 1 |
huggingface/datasets | computer-vision | 7,354 | A module that was compiled using NumPy 1.x cannot be run in NumPy 2.0.2 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with 'pybind11>=2.12'. | ### Describe the bug
Following this tutorial: https://huggingface.co/docs/diffusers/en/tutorials/basic_training and running it locally using VSCode on my MacBook. The first line in the tutorial fails: from datasets import load_dataset
dataset = load_dataset('huggan/smithsonian_butterflies_subset', split="train"). w... | closed | 2025-01-04T18:30:17Z | 2025-01-08T02:20:58Z | https://github.com/huggingface/datasets/issues/7354 | [] | jamessdixon | 1 |
fastapi/sqlmodel | sqlalchemy | 139 | equivalent for .subquery('t2') sqlalchemy | ### 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... | open | 2021-10-19T02:01:37Z | 2022-06-01T12:56:50Z | https://github.com/fastapi/sqlmodel/issues/139 | [
"question"
] | movaldivia | 1 |
serengil/deepface | machine-learning | 796 | how to use gpu or somethingelse to increase the speed of prediction | I want to use vedio frame as the input, but the fps of the vedio get only 3-4fps | closed | 2023-07-10T02:27:06Z | 2023-07-16T05:26:17Z | https://github.com/serengil/deepface/issues/796 | [
"question"
] | divergent020620 | 2 |
graphdeco-inria/gaussian-splatting | computer-vision | 370 | what is the better/best optimization policy(xyz_gradient_accum)? (has detail desciption) | now:
for iteration:
...
loss.backward() #gradients generated !!!
...
add_densification_stats() #gradients accumulated !!!
...
if iteration > densify_from_iter and iteration % densification_interval == 0:
densify_and_prune() -> densify_and_clone() | densify_and_split() ->... | closed | 2023-10-21T14:15:29Z | 2023-10-21T14:40:27Z | https://github.com/graphdeco-inria/gaussian-splatting/issues/370 | [] | yuedajiong | 1 |
allenai/allennlp | nlp | 5,405 | Evaluator Class to allow more metrics and saving of input tokens during evaluation | **Is your feature request related to a problem? Please describe.**
An `Evaluator` class similar would allow specifying more metrics to run and how to post-process the input batches for saving.
**Describe the solution you'd like**
An `Evaluator` class similar to [`Trainer`](https://github.com/allenai/allennlp/b... | closed | 2021-09-12T13:17:07Z | 2022-01-27T13:24:39Z | https://github.com/allenai/allennlp/issues/5405 | [
"Contributions welcome"
] | gabeorlanski | 12 |
dropbox/PyHive | sqlalchemy | 21 | Pre-fetch method | When working with large amounts of data, it'd be nice to have fetch continue to pull records in another thread. For example, cursor.prefetchmany(100000) would return 100k rows on the first call, then spawn a new thread to fetch the next 100k rows.
| closed | 2015-06-30T21:58:14Z | 2015-07-01T20:40:36Z | https://github.com/dropbox/PyHive/issues/21 | [] | Downchuck | 3 |
wandb/wandb | data-science | 9,091 | [Bug]: config bug when using wandb with python-lightning | ### Describe the bug
<!--- Describe your issue here --->
When using wandb with pytorch-lightning, we use "from lightning.pytorch.loggers import WandbLogger" and use "wandb_logger=WandbLogger()" to define a logger, and then use it as a parameter in object "lightning.Trainer".
It raise a bug when trying to set up a conf... | closed | 2024-12-15T13:08:03Z | 2025-01-08T17:44:42Z | https://github.com/wandb/wandb/issues/9091 | [
"ty:bug",
"c:sdk:integration",
"c:sdk:config"
] | Chandery | 11 |
lepture/authlib | flask | 173 | Startlette client no longer works with httpx 0.8.0 | **Describe the bug**
With httpx==0.7.8, the example https://github.com/authlib/demo-oauth-client/tree/master/starlette-google-login runs as is. However, with httpx==0.8.0, it does not.
**Error Stacks**
```
ImportError: cannot import name 'AsyncClient' from 'httpx' (/.../venv/lib/python3.7/site-packages/httpx/... | closed | 2019-11-30T18:31:46Z | 2019-12-01T09:51:11Z | https://github.com/lepture/authlib/issues/173 | [
"bug"
] | jorgecarleitao | 3 |
explosion/spaCy | data-science | 13,462 | The `transition_parser` in `Spacy` is not compatible with the use of cuda for inference | I am facing an issue where am trying to run a spacy based pipeline, using the `en_core_web_trf:3.7.3` model, whereby the `transition_parser` seems to be placing tensors on cpu instead of the gpu as can be seen in the logs below:
```
2024-04-26 10:31:25,319 [mlserver.parallel] ERROR - An error occurred calling metho... | closed | 2024-04-26T13:26:20Z | 2024-06-29T00:02:28Z | https://github.com/explosion/spaCy/issues/13462 | [
"gpu",
"feat / transformer"
] | hseelawi | 3 |
deepfakes/faceswap | machine-learning | 1,163 | Legacy face centering is not working correctly | Legacy face centering is not working correctly. I'm uploading a preview image for face and legacy centering to compare.

 -> pd.DataFrame:
matches_df['HW'] = self._compute_last_results(matches_df=matches_df, team_column='Home Team', result='H')
return matche... | open | 2024-04-11T12:46:29Z | 2024-04-11T12:46:29Z | https://github.com/kochlisGit/ProphitBet-Soccer-Bets-Predictor/issues/81 | [] | kwadwobro | 0 |
stanfordnlp/stanza | nlp | 1,187 | Permission Denied when running stanza | I have a Django app hosted on ubuntu apache where am carrying out pos tagging with stanza.
Every time I launch the application am getting this error
` Permission denied: 'home/ooglobe/tmpw_4rz8p9',` and when I refresh the page the temp file keeps changing `Permission denied: 'home/ooglobe/tmp6nn3pf0o',`
This is ... | closed | 2023-02-03T09:02:32Z | 2023-02-03T13:23:48Z | https://github.com/stanfordnlp/stanza/issues/1187 | [] | ebyau | 0 |
sktime/pytorch-forecasting | pandas | 1,678 | [MNT] retroactively fix failing readthedocs versions 1.1.0 and 1.1.1 | Retroactively, the readthedocs versions 1.1.0 and 1.1.1 are failing due to faulty/deprecated `.readthedocs.yml` settings.
We should try to fix this, although I'm not sure whether it can be done.
A fix would be:
1. replace the `.readthedocs.yml` at the tag with the current one, and replace the `pyproject.toml` ... | open | 2024-09-20T19:18:59Z | 2024-09-20T19:19:15Z | https://github.com/sktime/pytorch-forecasting/issues/1678 | [
"documentation",
"maintenance"
] | fkiraly | 0 |
healthchecks/healthchecks | django | 613 | Integration Disabled | Hello,
I'm using the webook integration for Mattermost, I don't know why because I can't see any error, but happens after sometimes that I don't receive any messages and when I go to integrations page I see the mattermost integration is disabled.
If I do test I receive the message, but I don't get any messages from a... | closed | 2022-03-01T22:43:35Z | 2022-03-09T10:25:54Z | https://github.com/healthchecks/healthchecks/issues/613 | [] | lettore | 4 |
pyppeteer/pyppeteer | automation | 436 | 1.0.2: pytest is failing in most of the units wih `Browser closed unexpectedly` | I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.
- `python3 -sBm build -w --no-isolation`
- because I'm calling `build` with `--no-isolation` I'm using during all processes only locally installed modules
-... | closed | 2023-04-28T09:53:43Z | 2024-02-09T06:09:41Z | https://github.com/pyppeteer/pyppeteer/issues/436 | [] | kloczek | 1 |
Nike-Inc/koheesio | pydantic | 57 | [FEATURE] Remove Cerberus from secrets | <!-- We follow Design thinking principles to bring the new feature request to life. Please read through [Design thinking](https://www.interaction-design.org/literature/article/5-stages-in-the-design-thinking-process) principles if you are not familiar. -->
<!-- This is the [Board](https://github.com/orgs/Nike-Inc/pr... | closed | 2024-08-09T10:27:37Z | 2024-08-09T11:31:43Z | https://github.com/Nike-Inc/koheesio/issues/57 | [
"enhancement"
] | mikita-sakalouski | 0 |
xmu-xiaoma666/External-Attention-pytorch | pytorch | 33 | About coatnet | 感觉博主对coatnet的实现在很多地方有问题(也吐槽一下coatnet这篇论文很多细节都没说清楚)
我觉得最重要的一个概念是文章作者所说的relative attention。文章本身也没聊这个概念,不过它在这个概念的基础上折腾了一下卷积和自注意力的权重公式。最最关键的是,作者是通过引入**全局静态卷积核**来融合卷积与transformer的(说得更简单一点就是,人论文里模型的图中写的是Rel-Attention,而不是普通的Attention)。说实话这个全局静态卷积核我是没有在博主你的实现里看到。
另外,我好像也没看到任何残差连接,x = out + x呢。。
抱歉,大晚上脑子有点晕,很多表述不是很妥,不过我觉得我想说... | open | 2021-09-12T14:19:11Z | 2021-09-18T06:40:01Z | https://github.com/xmu-xiaoma666/External-Attention-pytorch/issues/33 | [] | ShiveryMoon | 0 |
assafelovic/gpt-researcher | automation | 423 | Missing python requirement blocks starting the service from a Docker build | I ran the following and ran into the error below.
```shell
#!/bin/sh
git clone git@github.com:assafelovic/gpt-researcher.git
cd gpt-researcher
docker compose build
docker compose up
```
NOTE: I have my .env populated
Adding lxml[html_clean] to the requirements.txt solved the problem.
> W... | closed | 2024-04-02T18:55:57Z | 2024-04-03T09:29:05Z | https://github.com/assafelovic/gpt-researcher/issues/423 | [] | scottmoney | 5 |
plotly/dash-core-components | dash | 755 | Multiple Loading Controls broken if ids are substrings of each other | When using multiple Loadings on the same page, and having a lot of controls with similar IDs inside of each of them, I have found some irregularities where multiple Loading elements would trigger, even if there was no callback outputting data to any of its children.
I managed to condense this into a minimum proof-of... | open | 2020-02-13T13:55:45Z | 2020-02-13T13:57:22Z | https://github.com/plotly/dash-core-components/issues/755 | [] | wolfgangpfnuer | 0 |
huggingface/datasets | pandas | 6,470 | If an image in a dataset is corrupted, we get unescapable error | ### Describe the bug
Example discussed in detail here: https://huggingface.co/datasets/sasha/birdsnap/discussions/1
### Steps to reproduce the bug
```
from datasets import load_dataset, VerificationMode
dataset = load_dataset(
'sasha/birdsnap',
split="train",
verification_mode=VerificationMode.ALL_C... | open | 2023-12-04T20:58:49Z | 2023-12-04T20:58:49Z | https://github.com/huggingface/datasets/issues/6470 | [] | chigozienri | 0 |
pytest-dev/pytest-html | pytest | 440 | extra.svg(content: type?) | Hi, what should be the content type to pass when appending extra.svg()?
While doing:
`extra.append(extras.svg(svg))`
with
```python
svg = """<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="43" fill="none" stroke="#000" stroke-width="9"/>
<path d="M50,42c-6-9-20-9... | closed | 2021-01-21T20:59:34Z | 2021-01-25T16:47:55Z | https://github.com/pytest-dev/pytest-html/issues/440 | [] | dramoz | 2 |
onnx/onnx | scikit-learn | 6,606 | Allow release CIs to run when a PR with the "run release CIs" label is updated | We need to update https://github.com/onnx/onnx/blob/64adc906975f6ac32512961c95a1bdeb6f1047a1/.github/workflows/create_release.yml#L10-L15 such that when a PR with the label updates (e.g. new commits are added) the release CIs also runs. This way developers do not need to remove and re-add the label to trigger the CIs.
... | open | 2024-12-31T16:41:58Z | 2025-02-19T17:33:27Z | https://github.com/onnx/onnx/issues/6606 | [
"module: CI pipelines",
"contributions welcome"
] | justinchuby | 0 |
httpie/cli | rest-api | 1,171 | Method POST is used always when executing from go as external command | ## Checklist
- [x] I've searched for similar issues.
- [x] I'm using the latest version of HTTPie.
---
## Minimal reproduction code and steps
```go
package main
import (
"fmt"
"os/exec"
"strings"
)
func main() {
cmd := exec.Command("http", "-v", "--download", "pie.dev/image/png")
cmd.Stdi... | closed | 2021-10-01T20:09:20Z | 2021-10-14T15:15:09Z | https://github.com/httpie/cli/issues/1171 | [
"invalid"
] | vishr | 5 |
wagtail/wagtail | django | 12,560 | Internal links with anchor | ### Is your proposal related to a problem?
I want to link to a page. Not just the page, but also anchor within the page.
### Describe the solution you'd like
To be able to select page for the internal link + optional anchor.
### Describe alternatives you've considered
I can use external links for this, but then if... | open | 2024-11-10T10:48:50Z | 2024-11-10T10:48:50Z | https://github.com/wagtail/wagtail/issues/12560 | [
"type:Enhancement"
] | hovi | 0 |
littlecodersh/ItChat | api | 559 | 騰訊新聞亂入,造成 itchat bot 卡住,怎避免? | 有人碰到這個問題嗎?
騰訊新聞亂入,造成 itchat bot 卡住。幸好按過 Ctrl-C 之後,還能繼續。
這怎避免?
目前機器正在跑,我晚點找機會把 itchat debug enable 起來看它怎麼說。。。。 | closed | 2017-12-01T10:31:09Z | 2018-02-28T08:47:24Z | https://github.com/littlecodersh/ItChat/issues/559 | [] | hcchengithub | 2 |
jupyter/nbviewer | jupyter | 750 | Scrolling in windows | I am checking in notebooks that show output scrolling in windows. On GitHub and in nbviewer, the scrollable windows are lost.
For example, this has scrollable windows in Jupyter, but not in nbviewer.
https://github.com/biblicalhumanities/greek-new-testament/blob/master/labnotes/dative-direct-objects.ipynb
htt... | closed | 2017-12-22T19:36:15Z | 2020-02-04T19:31:22Z | https://github.com/jupyter/nbviewer/issues/750 | [
"tag:Upstream"
] | jonathanrobie | 2 |
modin-project/modin | data-science | 7,021 | Implement to/from_dask_dataframe functions | closed | 2024-03-07T09:15:45Z | 2024-03-18T19:04:39Z | https://github.com/modin-project/modin/issues/7021 | [
"new feature/request 💬",
"Dask ⚡"
] | Retribution98 | 0 | |
huggingface/diffusers | deep-learning | 10,866 | Lumina Image 2.0 lora not working with lora available on Civitai | ### Describe the bug
Using Lumina 2.0 lora from civitai throw error.
Works fine for https://huggingface.co/sayakpaul/trained-lumina2-lora-yarn
### Reproduction
I tried using loras listed here
https://civitai.com/search/models?baseModel=Lumina&modelType=LORA&sortBy=models_v9&query=lumina
with code
https://huggingfa... | closed | 2025-02-21T19:04:59Z | 2025-03-07T12:28:57Z | https://github.com/huggingface/diffusers/issues/10866 | [
"bug"
] | nitinmukesh | 8 |
3b1b/manim | python | 1,936 | Running the example code works briefly and then generates a stack trace and exits | ### Describe the error
Running the example code works briefly and then generates a stack trace and exits
### Code and Error
```
$ manimgl example_scenes.py OpeningManimExample
```
**Error**:
```
sh: latex: command not found{c}\quad \\\quad \\\end{array}\right]"
[09:38:08] ERROR LaTeX Error! Not a worry... | closed | 2022-12-19T14:51:32Z | 2024-05-18T02:16:32Z | https://github.com/3b1b/manim/issues/1936 | [] | ocheret | 3 |
docarray/docarray | fastapi | 1,005 | del and delitem | try del and delitem, especially in docarray stacked, and implement/fix it if needed | closed | 2023-01-11T08:51:18Z | 2023-02-08T08:53:32Z | https://github.com/docarray/docarray/issues/1005 | [] | JohannesMessner | 0 |
albumentations-team/albumentations | deep-learning | 2,466 | [Feature request] Add apply_to_images to RandomResizedCrop | open | 2025-03-11T01:34:18Z | 2025-03-12T04:51:03Z | https://github.com/albumentations-team/albumentations/issues/2466 | [
"enhancement",
"good first issue"
] | ternaus | 3 | |
supabase/supabase-py | fastapi | 973 | Unable to perform string concatenation with .select | # Bug report
<!--
⚠️ We receive a lot of bug reports which have already been solved or discussed. If you are looking for help, please try these first:
- Docs: https://docs.supabase.com
- Discussions: https://github.com/supabase/supabase/discussions
- Discord: https://discord.supabase.com
Before opening a... | closed | 2024-10-21T18:49:40Z | 2024-10-21T22:49:48Z | https://github.com/supabase/supabase-py/issues/973 | [
"bug"
] | rdong8 | 1 |
brightmart/text_classification | nlp | 76 | TextRCNN model predict error | Restoring Variables from Checkpoint
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/client/session.py", line 1327, in _do_call
return fn(*args)
File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/client/session.py", line 1312, in _run_fn
opti... | open | 2018-08-03T09:45:20Z | 2018-12-24T08:44:32Z | https://github.com/brightmart/text_classification/issues/76 | [] | kevinsay | 3 |
vllm-project/vllm | pytorch | 15,025 | [Bug]: Speculative decoding with a draft model makes generation slower | ### Your current environment
I tried several vLLM versions (0.6.2 and latest 0.7.3) and have consistent speed drop when using speculative decoding with draft model. Tried on L4 and T4 GPU in Colab.
### 🐛 Describe the bug
Main model - `1.7B,` speculative model - `135M` parameters (`SmolLMv2` family of models)
I trai... | open | 2025-03-18T10:45:18Z | 2025-03-20T11:38:50Z | https://github.com/vllm-project/vllm/issues/15025 | [
"bug"
] | maiiabocharova | 1 |
gradio-app/gradio | data-visualization | 10,344 | example of adding custom js from Gradio docs is not working | ### Describe the bug
I am struggling to accomplish something similar to the example from here: https://www.gradio.app/guides/custom-CSS-and-JS (passing some value from python function to execute in js), but apparently even the example from the gradio website is not working. Could you please suggest an example which wo... | open | 2025-01-13T12:43:00Z | 2025-02-21T14:02:32Z | https://github.com/gradio-app/gradio/issues/10344 | [
"bug"
] | SlimakSlimak | 1 |
robotframework/robotframework | automation | 4,575 | Add `on_limit_message` option to WHILE loops to control message used if loop limit is exceeded | Currently, the error raised when the limit of the WHILE loop is reached isn't customizable. As a result of the issue #4562, we decided to add an option named `on_limit_message` on the WHILE loop.
Here is an example :
```
*** Test Cases ***
On limit message
WHILE True limit=5 on_limit_message=Custo... | closed | 2022-12-24T16:59:51Z | 2023-05-05T14:23:21Z | https://github.com/robotframework/robotframework/issues/4575 | [
"enhancement",
"priority: medium",
"beta 1",
"acknowledge",
"pr",
"effort: small"
] | asaout | 3 |
QuivrHQ/quivr | api | 3,114 | Invariant SQL scripts | closed | 2024-08-30T07:25:16Z | 2024-09-02T12:41:45Z | https://github.com/QuivrHQ/quivr/issues/3114 | [
"backend",
"area: scripts"
] | linear[bot] | 1 | |
mwaskom/seaborn | matplotlib | 2,843 | Adding mask as a argument within the seaborn heatmap | ### Feature improvement to heatmap in seaborm

In the above image when we create a correlation, we get the same data twice. This causes bit confusion to the end-users.So usually we add a mask manually an... | closed | 2022-06-09T11:31:03Z | 2022-06-09T11:45:31Z | https://github.com/mwaskom/seaborn/issues/2843 | [] | krishnaduttPanchagnula | 1 |
sunscrapers/djoser | rest-api | 285 | Response message | I found it's a really good library except the response is really not giving any useful information, the only error response given is BAD_REQUEST. I really suggest someone could improve that. Also the documentation is not clear, please give more examples. | open | 2018-07-04T15:13:49Z | 2019-01-18T11:51:44Z | https://github.com/sunscrapers/djoser/issues/285 | [] | songlin-96 | 2 |
kennethreitz/responder | graphql | 443 | AttributeError: 'str' object has no attribute 'decode' | **Responder version:** 3.0.2.0
**Python version:** Python 3.8.6
**Steps to reproduce:** In _/etc/responder/Responder.conf_ `Challenge = 1122334455667788`
```
root@kali:/# responder -wrf -I wlan0
__
.----.-----.-----.-----.-----.-----.--| |.-----.----.
| _| -__... | closed | 2020-10-17T06:19:19Z | 2020-10-18T06:23:01Z | https://github.com/kennethreitz/responder/issues/443 | [] | m41denx | 0 |
postmanlabs/httpbin | api | 80 | IP address returned is no longer correct | If I do:
``` python
import requests
print requests.get('http://httpbin.org/get').json()['origin']
```
I get the wrong IP address. Same happens every other place I test this from.
| closed | 2013-01-19T16:54:19Z | 2018-04-26T17:50:58Z | https://github.com/postmanlabs/httpbin/issues/80 | [] | sigmavirus24 | 6 |
graphql-python/graphene-mongo | graphql | 49 | Cannot return null for non-nullable field Type.field. | If I create add a new field and the field is null, it leads to an error in
```Cannot return null for non-nullable field Type.field.```
In my model, I didn't set required to true for that field. After inspecting I found this in converter.py
```String(description=field.db_field, required=not field.null)```
which se... | closed | 2018-08-18T15:48:05Z | 2018-09-06T02:15:55Z | https://github.com/graphql-python/graphene-mongo/issues/49 | [] | marvinkome | 4 |
OFA-Sys/Chinese-CLIP | nlp | 304 | Delete | 先占个坑(本周内填完),记录我实现应用的心得,以供需要的人参考。
为实现类似[README中的应用](https://www.modelscope.cn/studios/iic/chinese_clip_applications/summary),分为前后端的部署。
## 前端的部署
## 后端服务的部署
### 步骤1:数据的处理
clip-retrieval里案例处理数据集是用img2dataset, 除了这种方式,你还可以自己处理数据对,保证图文匹配就行。例如:你保证你的数据集文件夹下:有 xxxx.png和xxxx.txt即可,这个xxxx是个ID,同一个图片和文本对要保证一致。
### 步骤2:all_cl... | closed | 2024-04-22T13:57:17Z | 2024-04-24T03:23:46Z | https://github.com/OFA-Sys/Chinese-CLIP/issues/304 | [] | ChesonHuang | 0 |
deeppavlov/DeepPavlov | tensorflow | 880 | NER crashes during initialization | I use last version ipavlov library from pip, and have following code:
```self.NER = build_model(configs.ner.ner_rus, download=True)```
This code throws exception:
```
File "/usr/local/lib/python3.6/dist-packages/deeppavlov/core/commands/infer.py", line 61, in build_model
component = from_params(component... | closed | 2019-06-14T12:42:38Z | 2020-05-13T09:48:13Z | https://github.com/deeppavlov/DeepPavlov/issues/880 | [] | bavadim | 1 |
dgtlmoon/changedetection.io | web-scraping | 2,934 | 'Recheck all in ¨tag-name"' doesn't enqueue PAUSED watches | **Describe the bug**
Here is a **CORRECTED** report of the closed issue https://github.com/dgtlmoon/changedetection.io/issues/2932
The UI has a button called 'Recheck all in ¨_tag-name_"' under the list of watches assigned to a tag. Pressing it doesn't enqueue _paused watches_ for re-checking. The appearing notificati... | open | 2025-01-27T20:24:57Z | 2025-01-29T16:12:26Z | https://github.com/dgtlmoon/changedetection.io/issues/2934 | [
"triage"
] | birukoff | 5 |
zihangdai/xlnet | nlp | 159 | is Xlnet base released? | It was projected to be released June 2019. I am waiting eagerly for it. | open | 2019-07-13T13:46:23Z | 2019-07-13T23:49:12Z | https://github.com/zihangdai/xlnet/issues/159 | [] | bhomass | 1 |
hankcs/HanLP | nlp | 1,181 | 为什么我提取地址的时候和Demo上的不一样呢 | 对于同一个地址,DEMO和我的程序分出来是不一样的,我使用的是1.7.3
上海上海市浦东新区金桥镇金高路2216弄
DEMO分出来是:上海 上海市 浦东新区 金桥镇 金高 路 2216 弄
我的程序分出来是:[上海/ns, 上海市浦东新区/ns, 金桥镇/ns, 金高路/ns, 2216/m, 弄/v]
把上海市浦东新区没有分开成上海市 浦东新区
代码:
Segment segment = HanLP.newSegment().enablePlaceRecognize(true);
List<Term> termList = segment.seg("上海上海市浦东新区金桥镇金高路221... | closed | 2019-05-24T11:25:56Z | 2020-01-01T10:49:42Z | https://github.com/hankcs/HanLP/issues/1181 | [
"ignored"
] | hf200012 | 1 |
huggingface/datasets | computer-vision | 7,281 | File not found error | ### Describe the bug
I get a FileNotFoundError:
<img width="944" alt="image" src="https://github.com/user-attachments/assets/1336bc08-06f6-4682-a3c0-071ff65efa87">
### Steps to reproduce the bug
See screenshot.
### Expected behavior
I want to load one audiofile from the dataset.
### Environmen... | open | 2024-11-07T09:04:49Z | 2024-11-07T09:22:43Z | https://github.com/huggingface/datasets/issues/7281 | [] | MichielBontenbal | 1 |
dask/dask | pandas | 11,270 | Update optuna docs to point to Optuna-integration | Optuna moved some 3rd party things to optuna-integration
We should update https://docs.dask.org/en/stable/ml.html#hyperparameter-optimization and potentially more to point to the correct location. i.e.
```
from optuna_integration import DaskStorage
``` | open | 2024-08-02T17:22:24Z | 2024-08-02T17:22:29Z | https://github.com/dask/dask/issues/11270 | [
"documentation"
] | phofl | 0 |
paperless-ngx/paperless-ngx | machine-learning | 8,621 | [BUG] Concise description of the issue | ### Description
Using the API to insert tags with specific colors, ignores hex codes. All tags added have the same generic colors, no matter what hex value is provided.
curl -X POST "http://paperless:8000/api/tags/" \
-H "Authorization: Token xxxxxx" \
-H "Content-Type: application/json" \
-d '{"name": "test-ta... | closed | 2025-01-06T17:27:15Z | 2025-01-06T18:11:46Z | https://github.com/paperless-ngx/paperless-ngx/issues/8621 | [
"not a bug"
] | etsiot | 1 |
apache/airflow | data-science | 47,670 | Able to create multiple backfills on same date | ### Apache Airflow version
3.0.0
### If "Other Airflow 2 version" selected, which one?
_No response_
### What happened?
Able to create multiple backfills on same date if logical_date is different.
This is happening with Dags which uses timedelta in schedule.
<img width="1031" alt="Image" src="https://github.com/u... | closed | 2025-03-12T10:17:04Z | 2025-03-15T15:28:34Z | https://github.com/apache/airflow/issues/47670 | [
"kind:bug",
"area:core",
"area:backfill",
"affected_version:3.0.0beta"
] | atul-astronomer | 3 |
scrapy/scrapy | web-scraping | 6,433 | core.engine/Signal handler polluting log | ### Description
The `OffsiteMiddleware` logs a single message for each domain filtered. Great!
But then the `core.engine` logs a message for every single url filtered by the OffsiteMiddleware.
(LOG_LEVEL: DEBUG)
The websites I am scraping have like 10 external links to twitter/youtube/etc in each page. For hund... | closed | 2024-07-08T20:13:30Z | 2024-09-10T07:01:38Z | https://github.com/scrapy/scrapy/issues/6433 | [] | djuntsu | 6 |
httpie/cli | python | 685 | [Feature] Upload Progress Bar | Would be great to have an upload bar as well. | open | 2018-06-24T20:30:40Z | 2021-06-28T17:47:40Z | https://github.com/httpie/cli/issues/685 | [
"needs product design"
] | qoomon | 8 |
Yorko/mlcourse.ai | numpy | 666 | Misleading hyperlink on https://mlcourse.ai/roadmap | Misleading hyperlink on https://mlcourse.ai/roadmap
Chapter: "Week 5. Bagging and Random Forest"
Link: “Random Forest”
Actual link: https://mlcourse.ai/articles/topic5-part1-bagging/
Expected link: https://mlcourse.ai/articles/topic5-part2-rf/ | closed | 2020-06-02T17:17:10Z | 2020-06-06T07:47:59Z | https://github.com/Yorko/mlcourse.ai/issues/666 | [
"minor_fix"
] | www050 | 1 |
pennersr/django-allauth | django | 3,734 | SOCIALACCOUNT_PROVIDER nextcloud ignores settings | I have to manually change the domain (it just uses the default nextcloud.example.org), but after that connecting my nextcloud account still fails. I entered the settings json through the django admin panel, but I don't see any relevant logging.
. When I get to `python scripts/shuffle_rec.py <path to folder containing train.idx/.lst/.rec>`, I got the following error:
```
Process Process-1:
Traceback (most re... | closed | 2023-02-28T09:34:18Z | 2023-04-04T05:40:00Z | https://github.com/deepinsight/insightface/issues/2254 | [] | HeChengHui | 5 |
reiinakano/scikit-plot | scikit-learn | 94 | ValueError: Found input variables with inconsistent numbers of samples | I'm trying to plot the ROC curve, but I get **ValueError: Found input variables with inconsistent numbers of samples.**
Here's the code I use:
`skplt.metrics.plot_roc(labels_test.values, pred_w2v_cnn.values)
plt.show()`
Both labels_test.values and pred_w2v_cnn.values have the same length and both are of type ... | open | 2018-09-19T23:19:58Z | 2018-09-25T09:42:01Z | https://github.com/reiinakano/scikit-plot/issues/94 | [] | AntonioAntovski | 3 |
koxudaxi/datamodel-code-generator | pydantic | 1,559 | Dataclasses not ordering properties correctly | **Describe the bug**
dataclass generation does not put fields with initialisers after fields without initialisers
**To Reproduce**
Example schema:
```yaml
i$id: https://practique.net/response.json
$schema: http://json-schema.org/schema#
type: object
required:
- a
- b
properties:
a:
type: st... | closed | 2023-09-21T08:25:24Z | 2023-10-06T21:28:13Z | https://github.com/koxudaxi/datamodel-code-generator/issues/1559 | [
"bug"
] | keean | 10 |
home-assistant/core | python | 140,651 | [Overkiz] - Entity sensor.luminosite_rssi_level (<class 'homeassistant.components.overkiz.sensor.OverkizStateSensor'>) | ### The problem
I see an error message in the system log. This looks like a mi match on unit for sensor Rssi for this equipment (https://boutique.somfy.fr/capteur-de-soleil-exterieur.html).
### What version of Home Assistant Core has the issue?
core-2025.3.3
### What was the last working version of Home Assistant C... | open | 2025-03-15T07:52:49Z | 2025-03-16T09:02:22Z | https://github.com/home-assistant/core/issues/140651 | [
"integration: overkiz"
] | alsmaison | 3 |
gee-community/geemap | jupyter | 2,085 | Activation Code Error | <!-- Please search existing issues to avoid creating duplicates. -->
### Environment Information MacBook Pro M3 / Safari Browser
Please run the following code on your computer and share the output with us so that we can better debug your issue:
```python
import geemap
geemap.Report()
```
### Description
... | closed | 2024-07-18T14:26:19Z | 2024-07-18T14:31:56Z | https://github.com/gee-community/geemap/issues/2085 | [
"bug"
] | douglagug | 2 |
jumpserver/jumpserver | django | 14,179 | [Bug] 最近登录记录不完整 | ### 产品版本
v3.10.13
### 版本类型
- [X] 社区版
- [ ] 企业版
- [ ] 企业试用版
### 安装方式
- [ ] 在线安装 (一键命令安装)
- [X] 离线包安装
- [ ] All-in-One
- [ ] 1Panel
- [ ] Kubernetes
- [ ] 源码安装
### 环境信息
操作系统:ubuntu22.04
安装方式:初始安装v.3.10.12,然后升级到v3.10.13
### 🐛 缺陷描述
9月10号登录系统,9月11号登录系统,9月12号登录系统,最近登录记录不完整,没有9月11号登录系统的记录
### 复现步骤
1、周一至周五每天登录系统;
... | closed | 2024-09-18T07:43:42Z | 2024-09-23T09:35:31Z | https://github.com/jumpserver/jumpserver/issues/14179 | [
"🐛 Bug"
] | tianmaxingkong168 | 1 |
lepture/authlib | flask | 660 | New token will not be fetched if grant_type='client_credentials' is passed for fetch_token() | **Describe the bug**
If I pass `client_credentials` as the `grant_type` it will not automatically fetch the new token.
**To Reproduce**
My code where I pass the `grant_type`.
```
self.oauth2client = OAuth2Session(token_endpoint=f"{base_url}/auth/token")
self.oauth2client.fetch_token(grant_type="client_credentials"... | open | 2024-07-16T02:43:57Z | 2025-02-20T09:39:11Z | https://github.com/lepture/authlib/issues/660 | [
"bug",
"client"
] | bryan-prime | 0 |
Yorko/mlcourse.ai | numpy | 649 | can you help find email for Измайлов Константин | I see
Измайлов Константин Константинович (@Izmajlovkonstantin)
can you help find email for Измайлов Константин
I try to get him , ask code for
https://sphere.mail.ru/curriculum/program/discipline/818/
especially for video
https://www.youtube.com/watch?v=fit-ZAWexZ0&list=PLrCZzMib1e9p6lpNv-yt6uvHGyBxQncEh&inde... | closed | 2020-01-30T21:33:58Z | 2020-01-30T23:28:54Z | https://github.com/Yorko/mlcourse.ai/issues/649 | [
"invalid"
] | Sandy4321 | 1 |
pytest-dev/pytest-html | pytest | 376 | Is it possible to change the duration format from just seconds to something like hh:mm:ss? | Is there a way to format the duration time to something like:
HH:MM:SS
or
h hours, m mins, s secs
I tried doing it within here, by changing the attribute value
```
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_makereport(item, call):
outcome = yield
report = outcome.get_result()
repo... | closed | 2020-11-20T21:00:56Z | 2023-03-23T15:13:55Z | https://github.com/pytest-dev/pytest-html/issues/376 | [
"enhancement",
"question"
] | brettnolan | 8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.