Releases: mlverse/torchvision
Releases · mlverse/torchvision
torchvision 0.7.0
New datasets
- Added
fashion_mnist_dataset()
for loading the Fashion-MNIST dataset (@koshtiakanksha, #148). - Added
eurosat_dataset()
,eurosat_all_bands_dataset()
, andeurosat100_dataset()
for loading RGB, all-band, and small-subset variants of the EuroSAT dataset (@cregouby, #126). - Added
qmnist_dataset()
for loading the QMNIST dataset (@DerrickUnleashed, #153). - Added
emnist_dataset()
for loading the EMNIST dataset (@DerrickUnleashed, #152). - Added
fgvc_aircraft_dataset()
for loading the FGVC-Aircraft dataset (@DerrickUnleashed, #156). - Added
coco_detection_dataset()
andcoco_caption_dataset()
for loading the MS COCO detection and captions datasets (@koshtiakanksha, #161, #172). - Added
caltech101_dataset()
andcaltech256_dataset()
for loading the Caltech 101 and 256 datasets (@DerrickUnleashed, #158). - Added
fer_dataset()
for loading the FER-2013 dataset (@DerrickUnleashed, #154). - Added
flowers102_dataset()
for loading the Flowers102 dataset (@DerrickUnleashed, #157). - Added
flickr8k_dataset()
andflickr30k_dataset()
for loading the Flickr8k and Flickr30k datasets (@DerrickUnleashed, #159). - Added
oxfordiiitpet_dataset()
,oxfordiiitpet_binary_dataset()
, andoxfordiiitpet_segmentation_dataset()
for loading the Oxford-IIIT Pet datasets (@DerrickUnleashed, #162).
New features
tensor_image_display()
andtensor_image_browse()
now accept alltensor_image
dtypes (@cregouby, #115).tensor_image_display()
andtensor_image_browse()
now acceptimage_with_bounding_box
andimage_with_segmentation_mask
inputs which are
the default items class for respectively detection datasets and segmentation datasets (@koshtiakanksha, #175).fgvc_aircraft_dataset()
gains support forannotation_level = "all"
(@DerrickUnleashed, #168).folder_dataset()
now supports TIFF image formats (@cregouby, #169).- New
nms()
andbatched_nms()
functions provide Non-Maximum Suppression utilities. Addedbox_convert()
to convert between bounding box formats (@Athospd, #40).
Minor bug fixes and improvements
v0.6.0
v0.5.1
v0.5.0
- Bugs fixed in
transform_adjust_hue()
andtransform_linear_transformation()
(#72, #73, @sebffischer) - add
draw_bounding_boxes()
,draw_segmentation_masks()
anddraw_keypoints()
on top of image tensors, and add a conveniencetensor_image_browse()
andtensor_image_display()
functions to visualize image tensors respectively in browser or in X11 device (#80, @cregouby) - Added the InceptionV3 model. (#82)
v0.4.1
- Implemented MobileNetV2 (#60)
- Improved vignettes so they use
nnf_cross_entropy
for numerical stability. (#61) - Implement the full list of ResNet model family (#66, @cregouby)
- Improved how datasets and models are downloaded by using a large timeout by default
and downloading to temporary file to avoid hard to debug errors when the files are
corrupt. (#67)