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

Description: To resolve warnings : `np` is deprecated Check list: - [ ] New tests are added (if a new feature is added) - [ ] New doc strings: description...

module: distributed

## 🐛 Bug description [Because of the division here](https://github.com/pytorch/ignite/blob/master/ignite/engine/__init__.py#L185), and similar functions, the loss has the wrong scale when using `gradient_accumulation_steps`. This makes it confusingly low in comparison to the...

enhancement
help wanted

Fixes #2703 Description: Editing FastaiLRFinder to have more than one parameter

module: handlers

Description: Modify to all_gather takes `group` Check list: - [ ] New tests are added (if a new feature is added) - [ ] New doc strings: description and/or example...

module: distributed

Description: Modify all_reduce to take `group` Check list: - [ ] New tests are added (if a new feature is added) - [ ] New doc strings: description and/or example...

module: distributed

```python optimizer = optim.SGD([ {'params': model.conv.parameters(), 'lr': 1}, {'params': model.linear.parameters(), 'lr': 0.1}, ], lr=3e-4, momentum=0.9) ```` Such as this, the optimizer has two different groups. Can anyone give an example?

enhancement
help wanted
module: contrib

Description: - Fixed removal nvidia-ml.list Check list: - [ ] New tests are added (if a new feature is added) - [ ] New doc strings: description and/or example code...

docker

Flaky core dump errors: - tests/ignite/metrics/test_recall.py::test_distrib_hvd - tests/ignite/metrics/test_ssim.py::test_distrib_hvd - tests/ignite/metrics/test_precision.py::test_distrib_hvd

ci
tests

Current Engine's behaviour when we resume the run from terminated state is the following: ```python from ignite.engine import Engine, Events from ignite.utils import setup_logger, logging def func(engine, batch): print(engine.state.epoch, engine.state.iteration,...

As claimed in the title, how can i implement multiple updates of discriminator before a single update of generator in the train_step(engine, data)? As a common strategy of training GAN,...

question