Articles About Natural Language Processing

Swapping Autoencoder for Deep Image Manipulation

swapping-autoencoder-pytorch Official Implementation of Swapping Autoencoder for Deep Image Manipulation (NeurIPS 2020) Taesung Park, Jun-Yan Zhu, Oliver Wang, Jingwan Lu, Eli Shechtman, Alexei A. Efros, Richard Zhang UC Berkeley and Adobe Research Overview Swapping Autoencoder consists of autoencoding (top) and swapping (bottom) operation.Top: An encoder E embeds an input (Notre-Dame) into two codes. The structure code is a tensor with spatial dimensions; the texture code is a 2048-dimensional vector. Decoding with generator G should produce a realistic image (enforced by […]

Read more

Detector-Free Local Feature Matching with Transformers

LoFTR Code for “LoFTR: Detector-Free Local Feature Matching with Transformers”, CVPR 2021 LoFTR: Detector-Free Local Feature Matching with TransformersJiaming Sun*, Zehong Shen*, Yu’ang Wang*, Hujun Bao, Xiaowei ZhouCVPR 2021 TODO List and ETA The entire codebase for data pre-processing, training and validation is under major refactoring and will be released around June.Please subscribe to this discussion thread if you wish to be notified of the code release.In the meanwhile, discussions about the paper are welcomed in the discussion panel. [x] […]

Read more

3D Human Pose and Shape Regression with Pyramidal Mesh Alignment Feedback Loop

PyMAF This repository contains the code for the following paper: 3D Human Pose and Shape Regression with Pyramidal Mesh Alignment Feedback LoopHongwen Zhang*, Yating Tian*, Xinchi Zhou, Wanli Ouyang, Yebin Liu, Limin Wang, Zhenan Sun Requirements packages necessary files mesh_downsampling.npz & DensePose UV data Run the following script to fetch mesh_downsampling.npz & DensePose UV data from other repositories. bash fetch_data.sh SMPL model files Fetch preprocessed data from SPIN. Download the pre-trained model and put it into the ./data/pretrained_model directory. After […]

Read more

AOT-GAN for High-Resolution Image Inpainting

AOT-GAN-for-Inpainting AOT-GAN: Aggregated Contextual Transformations for High-Resolution Image InpaintingYanhong Zeng, Jianlong Fu, Hongyang Chao, and Baining Guo. AOT-GAN: Aggregated Contextual Transformations for High-Resolution Image InpaintingYanhong Zeng, Jianlong Fu, Hongyang Chao, and Baining Guo. Citation If any part of our paper and code is helpful to your work,please generously cite and star us :kissing_heart: :kissing_heart: :kissing_heart: ! @inproceedings{yan2021agg, author = {Zeng, Yanhong and Fu, Jianlong and Chao, Hongyang and Guo, Baining}, title = {Aggregated Contextual Transformations for High-Resolution Image Inpainting}, booktitle […]

Read more

Analyzing, storing and visualizing big data, scientifically

root The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. Having the data defined as a set of objects, specialized storage methods are used to get direct access to the separate attributes of the selected objects, without having to touch the bulk of the data. Included are histograming methods in an arbitrary number of dimensions, curve fitting, function evaluation, minimization, graphics and […]

Read more

A Python library for Deep Graph Networks

PyDGN This is a Python library to easily experiment with Deep Graph Networks (DGNs). It provides automatic management of data splitting, loading and the most common experimental settings. It also handles both model selection and risk assessment procedures, by trying many different configurations in parallel (CPU). This repository is built upon the Pytorch Geometric Library, which provides support for data management. If you happen to use or modify this code, please remember to cite our tutorial paper: Bacciu Davide, Errica […]

Read more

Learning Versatile Neural Architectures by Propagating Network Codes

NCP Mingyu Ding, Yuqi Huo, Haoyu Lu, Linjie Yang, Zhe Wang, Zhiwu Lu, Jingdong Wang, Ping Luo Introduction This work includes:(1) NAS-Bench-MR, a NAS benchmark built on four challenging datasets under practical training settings for learning task-transferable architectures.(2) An efficient predictor-based algorithm Network Coding Propagation (NCP), which back-propagates the gradients of neural predictors to directly update architecture codes along desired gradient directions for various objectives. This framework is implemented and tested with Ubuntu/Mac OS, CUDA 9.0/10.0, Python 3, Pytorch 1.3-1.6, […]

Read more

Adaptive Class Suppression Loss for Long-Tail Object Detection

ACSL This repo is the official implementation for CVPR 2021 paper: Adaptive Class Suppression Loss for Long-Tail Object Detection. Requirements 1. Environment: The requirements are exactly the same as BalancedGroupSoftmax. We tested on the following settings: python 3.7 cuda 10.0 pytorch 1.2.0 torchvision 0.4.0 mmcv 0.2.14 conda create -n mmdet python=3.7 -y conda activate mmdet pip install cython pip install numpy pip install torch pip install torchvision pip install pycocotools pip install matplotlib pip install terminaltables # download the source […]

Read more

A simple, multipurpose Discord bot

EpicBot EpicBot is a multipurpose Discord bot that was designed to make your Discord life easier and cooler. It is also an open source project which other developers can contribute to and work on it together. Features 📌 Over 130+ commands! 🔼 99%+ uptime. 🟢 Low latency, super fast response time. 💻 Web dashboard! (coming soon) 🎶 Extremely high quality Music playback. 🎊 Welcome and Leave messages, Autorole. ✨ Level up system. 🎉 Giveaway commands. 🔨 Powerful moderation. 🎀 Regularly […]

Read more

A minimal Automatic Machine Learning solution with PyTorch

carefree-learn carefree-learn is a minimal Automatic Machine Learning (AutoML) solution for tabular datasets based on PyTorch. Carefree? carefree-learn aims to provide CAREFREE usages for both users and developers. User Side import cflearn import numpy as np x = np.random.random([1000, 10]) y = np.random.random([1000, 1]) m = cflearn.make().fit(x, y) Developer Side import cflearn import numpy as np cflearn.register_model(“wnd_full”, pipes=[cflearn.PipeInfo(“fcnn”), cflearn.PipeInfo(“linear”)]) x = np.random.random([1000, 10]) y = np.random.random([1000, 1]) m = cflearn.make(“wnd_full”).fit(x, y) Please refer to Quick Start and Build Your Own […]

Read more
1 25 26 27 28 29 71