Mind Visual Tokens for Vision Transformer

So-ViT This repository contains the source code under PyTorch framework and models trained on ImageNet-1K dataset for the following paper: @articles{So-ViT, author = {Jiangtao Xie, Ruiren Zeng, Qilong Wang, Ziqi Zhou, Peihua Li}, title = {So-ViT: Mind Visual Tokens for Vision Transformer}, booktitle = {arXiv:2104.10935}, year = {2021} } The Vision Transformer (ViT) heavily depends on pretraining using ultra large-scale datasets (e.g. ImageNet-21K or JFT-300M) to achieve high performance, while significantly underperforming on ImageNet-1K if trained from scratch. We propose […]

Read more

Embedding secret messages in wave audio file with python

HiddenWave Hide Your Secret Message in any Wave Audio File. Hiddenwave is a python based program for simple audio steganography. You can hide your secret text messages in wave audio file. you can play this audio in any media player and secretly share your private message with any one. This tool require python3 Installation git clone https://github.com/techchipnet/HiddenWave.git cd HiddenWave Usage Hiddenwave have two python scripts. HiddenWave.py : for hide secret information. ExWave.py : for extract secret information for wave audio […]

Read more

An extremely configurable markdown reverser for Python3

Unmarkd Unmarkd is a BeautifulSoup-powered Markdown reverser written in Python and for Python. Why This is created as a StackSearch (one of my other projects) dependancy. In order to create a better API, I needed a way to reverse HTML. So I created this. There are similar projects (written in Ruby) but I have not found any written in Python (or for Python) later I found a popular library, html2text. But Unmarkd still is still better. See comparison. Installation You […]

Read more

Command-line tool to deduplicate mails from a set of boxes

Mail Deduplicate Command-line tool to deduplicate mails from a set of boxes. Features Duplicate detection based on cherry-picked and normalized mail headers. Source and deduplicate mails from multiple sources. Reads and writes to mbox, maildir, babyl, mh and mmdf formats. Multiple duplicate selection strategies based on size, content, timestamp, file path or random choice. Copy, move or delete the resulting set of mails after the deduplication. Dry-run mode. Protection against false-positives by checking for size and content differences. Screenshots Installation […]

Read more

A Simple yet powerful CAD library written with Python

Py-MADCAD Simple yet powerful CAD (Computer Aided Design) library, written with Python. Features surface generation (3D sketch primitives, extrusion, revolution, …) fast boolean operations common mesh file format import/export kinematic manipulation implicit geometry definition through the constraint/solver system objects display with high-quality graphics Sample usage from madcad import * # define points O = vec3(0) A = vec3(2,0,0) B = vec3(1,2,0) C = vec3(0,2,0) # create a list of primitives line = [ Segment(O, A), ArcThrough(A, B, C), Segment(C,O), ] […]

Read more

An All-MLP solution for Vision from Google AI in Pytorch

MLP Mixer – Pytorch An All-MLP solution for Vision, from Google AI, in Pytorch. No convolutions nor attention needed! Install $ pip install mlp-mixer-pytorch Usage import torch from mlp_mixer_pytorch import MLPMixer model = MLPMixer( image_size = 256, patch_size = 16, dim = 512, depth = 12, num_classes = 1000 ) img = torch.randn(1, 3, 256, 256) pred = model(img) # (1, 1000) Citations @misc{tolstikhin2021mlpmixer, title = {MLP-Mixer: An all-MLP Architecture for Vision}, author = {Ilya Tolstikhin and Neil Houlsby and […]

Read more

Topology-aware Generative Model for Clothed People

SMPLicit Implementation for the paper SMPLicit: Topology-aware Generative Model for Clothed People (CVPR 2021) Installation Follow these commands to install SMPLicit in your environment. The required libraries are standard, with the possible exception of Kaolin which requires a particular version to run with the current code. git clonehttps://github.com/ecorona/SMPLicit cd SMPLicit Install the dependencies listed in requirements.txt: pip install -r requirements.txt In particular, we use Kaolin v0.1 (see installation command) which should be easy to install. However, if you want to […]

Read more

Location-Sensitive Visual Recognition with Cross-IOU Loss

LSNet The location-sensitive visual recognition tasks, including object detection, instance segmentation, and human pose estimation, can be formulated into localizing an anchor point (in red) and a set of landmarks (in green). Our work aims to offer a unified framework for these tasks. Abstract Object detection, instance segmentation, and pose estimation are popular visual recognition tasks which require localizing the object by internal or boundary landmarks. This paper summarizes these tasks as location-sensitive visual recognition and proposes a unified solution […]

Read more

Learning Skeletal Articulations with Neural Blend Shapes

neural-blend-shapes This repository provides an end-to-end library for automatic character rigging, skinning, and blend shapes generation, as well as a visualization tool. It is based on our work Learning Skeletal Articulations with Neural Blend Shapes that is published in SIGGRAPH 2021. Prerequisites Our code has been tested on Ubuntu 18.04. Before starting, please configure your Anaconda environment by conda env create -f environment.yaml conda activate neural-blend-shapes Or you may install the following packages (and their dependencies) manually: pytorch 1.8 tensorboard […]

Read more

Whole-day timezone comparison with python

Timezone Converter Compare a full day of your local timezone with a foreign one. $ timezone-converter tijuana $ timezone-converter tijuana –zone Motivation When working with people that are not in your local timezone, the availableresources are the usual webpages that only show one hour at a time, whichis pretty inconvenient. With this script you can quickly compare a full day of your timezone againsta foreign one. Installation pip install -U timezone-converter Usage timezone-converter Available timezones $ timezone-converter –list GitHub https://github.com/ibLeDy/timezone-converter […]

Read more
1 636 637 638 639 640 912