ignite icon indicating copy to clipboard operation
ignite copied to clipboard

High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.

Results 169 ignite issues
Sort by recently updated
recently updated
newest added

Reported in this issue: https://github.com/pytorch/ignite/issues/3189#issuecomment-1902560344 Repro code: ```python from ignite.engine import Engine, Events max_epochs = 4 dataset = range(10) def training_step(engine, _): print(f"- {engine.state.epoch} / {engine.state.max_epochs} | {engine.state.iteration}") print(f"- batch:...

bug
module: engine

## 🐛 Bug description The template is for Vision classification from code generator app ``` from pprint import pformat from typing import Any from ignite import distributed as idist import...

enhancement
help wanted
module: distributed

Description: Mean Average Precision metric for detection in COCO dataset. Check list: - [x] New tests are added (if a new feature is added) - [x] New doc strings: description...

docs
module: metrics
module: distributed

Fixes #1009 ## Description: Added the binary `ECE(Expected_Calibration_Error)` metric. ## Reviewers cc. @vfdev-5 P.S. - Do I have to add new tests, and documentation for the new metric? I don't...

module: contrib

## 🚀 Feature - Improved ``contrib.handlers.tqdm_logger.ProgressBar`` formatting and alignment More configurable arguments/bar formatting of the available ``ProgressBar`` class. Specifically to allow for the alignment of multiple bars (train loop, test/validation...

enhancement
help wanted

Fixes #2632 This PR is based on https://github.com/pytorch/ignite/pull/2632 (thanks a lot to kamalojasv181!) Description: I ve tried to fix distributed NDCG tests like the [examples](https://github.com/pytorch/ignite/pull/2632#issuecomment-1699564400). I am not really sure...

module: metrics

Description: - Use `distributed` fixture in tests Check list: - [ ] New tests are added (if a new feature is added) - [ ] New doc strings: description and/or...

Fixes #3023 Description: Check list: - [ ] New tests are added (if a new feature is added) - [ ] New doc strings: description and/or example code are in...

module: contrib
examples

## 🚀 Feature The number of examples in ignite repository is significantly less as compared to the [pytorch/examples](https://github.com/pytorch/examples) repository. It would be great to have a few more Google Colab...

## 🚀 Feature I would like to request for extension of `ignite.distributed.utils.broadcast` for Path datatype as it is frequently used for distributed training and can be very useful for designing...