MyGit

v0.2

facebookresearch/detr

版本发布时间: 2020-06-30 00:41:01

facebookresearch/detr最新发布版本:v0.2(2020-06-30 00:41:01)

This release contains several improvements compared to the initial release of DETR.

Highlights

Detectron2 support

DETR now can be used with Detectron2 in a seamless way. It reuses the original abstractions of DETR, while making a compatibility layer so that it fits Detectron2's API. More information can be found in the README under the d2/ folder

TorchScript support for all models

DETR models can now be natively exported to torchscript. This enables DETR to be run in C++ via libtorch. Converting a model to torchscript is easy:

model = torch.hub.load('facebookresearch/detr', 'detr_resnet50', pretrained=True)
model = torch.jit.script(model)
# now the model run entirely in torchscript!

Notebooks for panoptic segmentation and attention visualization

We added two new notebooks in the repo, which should hopefully facilitate using and understanding how DETR works:

Training logs for all models

For easier reproducibility, we provide full training logs for the detection models available in torchhub. They are available together with the model weights in https://github.com/facebookresearch/detr#model-zoo

Changelog

New features

Improvements

Bugfixes

Documentation

相关地址:原始地址 下载(tar) 下载(zip)

查看:2020-06-30发行的版本