TensorFlow implementation of EigenGAN: Layer-Wise Eigen-Learning for GANs

EigenGAN TensorFlow implementation of EigenGAN: Layer-Wise Eigen-Learning for GANs EigenGAN Usage Environment Python 3.6 TensorFlow 1.15 OpenCV, scikit-image, tqdm, oyaml we recommend Anaconda or Miniconda, then you can create the environment with commands below conda create -n EigenGAN python=3.6 source activate EigenGAN conda install opencv scikit-image tqdm tensorflow-gpu=1.15 conda install -c conda-forge oyaml NOTICE: if you create a new conda environment, remember to activate it before any other command source activate EigenGAN Data Preparation CelebA-unaligned (10.2GB, higher quality than the […]

Read more

Beyond Static Features for Temporally Consistent 3D Human Pose and Shape from a Video

TCMR_RELEASE This repository is the official Pytorch implementation of Beyond Static Features for Temporally Consistent 3D Human Pose and Shape from a Video. The base codes are largely borrowed from VIBE. Qualtitative result Paper teaser video Installation TCMR is tested on Ubuntu 16.04 with Pytorch 1.4 and Python 3.7.10. You may need sudo privilege for the installation. source scripts/install_pip.sh Quick demo Download the pre-trained demo TCMR and required data by below command and download SMPL layers from here (male&female) and […]

Read more

A lightweight engine for slicing a PyTorch tensor into parallel shards

TorchShard TorchShard is a lightweight engine for slicing a PyTorch tensor into parallel shards. It can reduce GPU memory and scale up the training when the model has massive linear layers (e.g., ViT, BERT and GPT) or huge classes (millions). It has the same API design as PyTorch. Installation pip install torchshard More options in INSTALL.md. Usage import torchshard as ts ts.init_process_group(group_size=2) # init parallel groups m = torch.nn.Sequential( torch.nn.Linear(20, 30, bias=True), ts.nn.ParallelLinear(30, 30, bias=True, dim=None), # equal to nn.Linear() […]

Read more

Monocular 360˚ Layout Estimation via Differentiable Depth Rendering

LED2-Net This is PyTorch implementation of our CVPR 2021 Oral paper “LED2-Net: Monocular 360˚ Layout Estimation via Differentiable Depth Rendering”. You can visit our project website and upload your own panorama to see the 3D results! Prerequisite This repo is primarily based on PyTorch. You can use the follwoing command to intall the dependencies. pip install -r requirements.txt Preparing Training Data Under LED2Net/Dataset, we provide the dataloader of Matterport3D and Realtor360. The annotation formats of the two datasets follows PanoAnnotator. […]

Read more

WhatsApp Group Chat Analysis using Python

Introduction Today one of the trendy social media platforms is…. guess what? One and only Whatsapp😅. It is one of the favorite social media platforms among all of us because of its attractive features. It has more than 2B users worldwide and “According to one survey an average user spends more than 195 minutes per week on WhatsApp”. How terrible the above statement is. Leave all these things and let’s understand what actually WhatsApp analyzer means? WhatsApp Analyzer means we […]

Read more

A Python package for Galactic and gravitational dynamics

Gala Gala is a Python package for Galactic and gravitational dynamics. Galactic Dynamics is the study of the formation, history, and evolution of galaxies using the orbits of objects — numerically-integrated trajectories of stars, dark matter particles, star clusters, or galaxies themselves. Installation and Dependencies The easiest way to get Gala is to install with conda or pip. If you are on Linux or Mac, you can install with conda using the conda-forge channel: conda install gala –channel conda-forge If […]

Read more

An implementation of chunked, compressed, N-dimensional arrays for Python

Zarr Zarr is a Python package providing an implementation of compressed, chunked, N-dimensional arrays, designed for use in parallel computing. Main Features Create N-dimensional arrays with any NumPy dtype. Chunk arrays along any dimension. Compress and/or filter chunks using any NumCodecs codec. Store arrays in memory, on disk, inside a zip file, on S3, etc… Read an array concurrently from multiple threads or processes. Write to an array concurrently from multiple threads or processes. Organize arrays into hierarchies via groups. […]

Read more

An ipywidgets wrapper of regular-table for Jupyter

ipyregulartable An ipywidgets wrapper of regular-table for Jupyter. Examples Two Billion Rows Notebook Click Events Notebook Edit Events Notebook Styling Notebook Pandas Data Model For interactive/streaming sorting/pivoting/aggregation, take a look at Perspective, Streaming pivot visualization via WebAssembly, which also leverages regular-table. Notebook Series DataFrame DataFrame – Row Pivots DataFrame – Column Pivots DataFrame – Pivot Table Installation You can install using pip: pip install ipyregulartable Or if you use jupyterlab: pip install ipyregulartable jupyter labextension install @jupyter-widgets/jupyterlab-manager    

Read more

Python implementation of Benford’s Law tests

Benford for Python Python implementation of Benford’s Law tests. Citing If you find Benford_py useful in your research, please consider adding the following citation: @misc{benford_py, author = {Marcel, Milcent}, title = {{Benford_py: a Python Implementation of Benford’s Law Tests}}, year = {2017}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {url{https://github.com/milcent/benford_py}}, } current version = 0.4.1 See release notes for features in this and in older versions Python versions >= 3.6 Installation Benford_py is a package in PyPi, so […]

Read more

A lightweight Python library for downloading YouTube Videos

pytube pytube is a very serious, lightweight, dependency-free Python library (and command-line utility) for downloading YouTube Videos. YouTube is the most popular video-sharing platform in the world and as a hacker you may encounter a situation where you want to script something to download videos. For this I present to you pytube. pytube is a lightweight library written in Python. It has no third party dependencies and aims to be highly reliable. pytube also makes pipelining easy, allowing you to […]

Read more
1 649 650 651 652 653 919