Skip to content

torchplus is a utilities library that extends pytorch and torchvision

License

Notifications You must be signed in to change notification settings

zhangzp9970/torchplus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

torchplus

torchplus

torchplus is a utilities library that extends pytorch and torchvision

Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge

Install

Install Anaconda or Python

Install Pytorch using the commands from the official pytorch page

Install torchplus using conda (recommended) conda install torchplus -c zhangzp9970

or using pypi pip install tplus

Features

  • torchplus.datasets
    • KSDD -- KolektorSDD dataset loader, compatible with other torchvision APIs.
    • KSDD2 --KolektorSDD2 dataset loader, compatible with other torchvision APIs.
    • FlatFolder -- A dataset class to handle flat folders with no sub directories, such as CelebA and FFHQ.
    • PreProcessFolder -- Preload the image data from disk into system memory to accelerate training.
  • torchplus.distributed
    • FederatedAverage -- Implements the federated average algorithm.
  • torchplus.models
    • ResNetFE and resnet*fe feature extractor of the Deep Residual Network (ResNet), with optional pretrained weights can be loaded.
  • torchplus.math
    • pi -- The pi=3.1415.
  • torchplus.nn
  • torchplus.nn.functional
    • Functional implenmentation of MSEWithWeightLoss and PixelLoss, just like torch.nn.functional.
  • torchplus.transforms
    • Crop -- Packages the torchvision.transforms.functional.crop function into a class, make it compatible with other transforms in torchvision.transforms.transforms.
  • torchplus.utils
    • Init -- Initialize all useful functions, make it easy to write code. Specifically, initialize all seeds, make log directory, initialize tensorboard, automatically backup the current file into the log directory, initialize pytorch profiler. It can returns the log directory, the tensorboard writer object, the pytorch profilier object, the output device(CPU or CUDA).
    • BaseAccuracy -- Base class to calculate accuracy for the whole dataset or accuracies for each class.
    • ClassificationAccuracy -- Calculate classification accuracy for the classification task.
    • class_split -- Split the dataset into subdatasets based on the classes, like torch.utils.data.random_split(), which randomly split the datasets.
    • save_excel -- Save a tensor to excel spreadsheet, make it easy to analysis the data.
    • save_csv -- Save a tensor to csv sheet.
    • save_image2 -- Enhance the save_image function in torchvision by intelligent creating directories.
    • read_image_to_tensor -- Read a image into a tensor. Since the torchvision.io.read_image() can only read jpg and png images, which are not so useful in practice.
    • hash_code -- Return a hash code for a object, useful when you want to produce time-variant filenames without changing the code.
    • MMD -- Calculate the Maximum Mean Discrepancy of two batches of tensors. Code from the internet.
    • model_size -- Calculate the size of the model. Refer to: https://discuss.pytorch.org/t/finding-model-size/130275/2.
  • continue developing...

Acknowledgements

Inspired by easydl project from Tsinghua University

License

Copyright © 2021-2023 Zeping Zhang

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http:https://www.gnu.org/licenses/.

About

torchplus is a utilities library that extends pytorch and torchvision

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages