Learning Deformation Meta-Handles of 3D Meshes with Biharmonic Coordinates

DeepMetaHandles is a shape deformation technique. It learns a set of meta-handles for each given shape. The disentangled meta-handles factorize all the plausible deformations of the shape, while each of them corresponds to an intuitive deformation direction. A new deformation can then be generated by the “linear combination” of the meta-handles. Although the approach is learned in an unsupervised manner, the learned meta-handles possess strong interpretability and consistency. Environment setup Create a conda environment by conda env create -f environment.yml. […]

Read more

Rendering color and depth images for ShapeNet models

Color & Depth Renderer for ShapeNet This library includes the tools for rendering multi-view color and depth images of ShapeNet models. Physically based rendering (PBR) is featured based on blender2.79. Outputs Color image (20 views) Depth image (20 views) Point cloud and normals (Back-projected from color & depth images) Watertight meshes (fused from depth maps) Install We recommend to install this repository with conda. conda env create -f environment.yml conda activate renderer Install Pyfusion by cd ./external/pyfusion mkdir build cd […]

Read more

A toolkit to compress and accelerate deep network models

DA2Lite DA2Lite (Deep Architecture to Lite) is a toolkit to compress and accelerate deep network models. Install git clone https://github.com/da2so/DA2Lite.git You will need a machine with a GPU and CUDA installed.Then, you prepare runtime environment: pip install -r requirements.txt Use Run main.py(DA2Lite) runs with two main configurations like as follows: CUDA_VISIBLE_DEVICES=0 python main.py –train_config_file=./configs/train/cifar10/cifar10/vgg16.yaml –compress_config_file=./configs/compress/tucker.yaml The first one is train_config_file, which indicates training configurations and the other is compress_config_file, which represents compress configurations.The details of available configurations are described in […]

Read more

A command line tool for visualizing CSV/spreadsheet-like data

PerfPlotter Read data from CSV files using pandas and generate interactive plots using bokeh, which can then be embedded into HTML pages and served by server-client applications (or at least allow them to be viewed on a browser). Environment Python 3.8.x macOS 10.15.x Firefox 88.x Setup Clone and cd into the perfplotter directory Install dependencies $ pipenv install –dev –python=/path/to/python3.8 Install pre-commit hooks $ pre-commit install $ pre-commit run –all-files Optional: pre-commit autoupdate Activate virtual environment In the same directory […]

Read more

Simplify Python GUI Development With PySimpleGUI

Creating a simple graphical user interface (GUI) that works across multiple platforms can be complicated. But it doesn’t have to be that way. You can use Python and the PySimpleGUI package to create nice-looking user interfaces that you and your users will enjoy! PySimpleGUI is a new Python GUI library that has been gaining a lot of interest recently. In this course, you’ll learn how to: Install the PySimpleGUI package Create basic user interface elements with PySimpleGUI Create applications, such […]

Read more

Stock Price Movement Based On News Headline

Don’t look for the needle in the haystack. Just buy the haystack! I hope you all are well. Hurray!! finally today our theme is similar to our beautiful quote😅. I always look for new ideas to share my knowledge, because I heard that “Knowledge shared is knowledge squared😊”. Most of you already know something about Share Market. In this article, we will explore something new and interesting. So let’s dig deeper into our today’s theme. This article is actually based […]

Read more

What is Liskov’s Substitution Principle?

In this article, we will explore the Liskov’s substitution principle, one of the SOLID principles and how to implement it in a Pythonic way. The SOLID principles entail a series of good practices to achieve better-quality software. In case some of you aren’t aware of what SOLID stands for, here it is: S: Single responsibility principle O: Open/closed principle L: Liskov’s substitution principle I: Interface segregation principle D: Dependency inversion principle The goal of this article is to implement proper […]

Read more

All the goto functions you need to handle NLP use-cases, integrated in NLPretext

NLPretext NLPretext packages in a unique library all the text preprocessing functions you need to ease your NLP project. Installation This package has been tested on Python 3.6, 3.7 and 3.8. We strongly advise you to do the remaining steps in a virtual environnement. To install this library you just have to run the following command: pip install nlpretext This library uses Spacy as tokenizer. Current models supported are en_core_web_sm and fr_core_news_sm. If not installed, run the following commands: pip […]

Read more

A GPU-optional modular synthesizer in pytorch

torchsynth torchsynth is based upon traditional modular synthesis written in pytorch. It is GPU-optional and differentiable. Most synthesizers are fast in terms of latency. torchsynth is fast in terms of throughput. It synthesizes audio 16200x faster than realtime (714MHz) on a single GPU. This is of particular interest to audio ML researchers seeking large training corpora. Additionally, all synthesized audio is returned with the underlying latent parameters used for generating the corresponding audio. This is useful for multi-modal training regimes. […]

Read more

A multilanguage Telegram shop bot with Telegram Payments support

Greed A customizable, multilanguage Telegram shop bot with Telegram Payments support! Demo Send a message to @greedtestbot on Telegram to view a demo of the bot in action! Use the special credit card number 4242 4242 4242 4242 to add unlimited credit to your account. Screenshots Installation This installation procedure assumes you are on a Linux system, using bash and have python3.8 installed. Requirements Consider renting a VPS to host the bot on; a cheap one should do, as greed […]

Read more
1 26 27 28 29 30