SMPLicit: 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/enriccorona/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

Datasets from Instructions In Python

Datasets from Instructions This repository contains the code for Generating Datasets with Pretrained Language Models. The paper introduces a method called Datasets from Instructions (DINO sauropod) that enables pretrained language models to generate entire datasets from scratch. đź”§ Setup All requirements for DINO can be found in requirements.txt. You can install all required packages in a new environment with pip install -r requirements.txt. đź’¬ CLI Usage Single Texts To generate datasets for (single) text classification, you can use DINO as […]

Read more

A fully automated system that transforms Twitch clips into gaming compilations

TwitchCompilationCreator A fully automated system that transforms Twitch clips into gaming compilations Authors: Christian C., Moritz M., Luca S. About This is our approach of automatically creating compilations of twitch clips (focused on gaming).We are very interested in YouTube, Twitch and Programming so we started this as an experiment, now a few months later we have to say it worked! What did we achieve? We automatically uploaded over 100 videos to our YouTube channel without any human interaction One video […]

Read more

A Python tool to check if there is an Office 365 instance linked to a domain

o365chk.py Simple Python script to check if there is an Office365 instance linked to a particular domain. There are three possible results: Unknown = No O365 instance for that domainFederated = O365 is federatedManaged = O365 is managed directly by Microsoft Installation and Usage $ git clone https://github.com/nixintel/o365chk && cd o365chk $ pip install -r requirements.txt $ python3 o365chk.py -d example.com Example Output $ python3 o365chk.py -d bbc.co.uk This domain is Federated { “AuthNForwardType”: 1, “AuthURL”: “https://gateway.id.tools.bbc.co.uk/eiam/WSFederationServlet/metaAlias/wsidp2?username=username%40bbc.co.uk&wa=wsignin1.0&wtrealm=urn%3afederation%3aMicrosoftOnline&wctx=”, “CloudInstanceIssuerUri”: “urn:federation:MicrosoftOnline”, “CloudInstanceName”: […]

Read more

An OSINT tool that allows you to find potential profiles of a person on social networks

Profil3r Profil3r is an OSINT tool that allows you to find potential profiles of a person on social networks, as well as their email addresses. This program also alerts you to the presence of a data leak for the found emails. Installation Install with pip (recommended) pip3 install profil3r Or build from source Recommended for developers. It automatically clones the main branch from the Profil3r repo, and installs from source. # Automatically clone the Profil3r repository and install profil3r from […]

Read more

notebookJS: seamless JavaScript integration in Python Notebooks

notebookJS notebookJS enables the execution of custom JavaScript code in Python Notebooks (Jupyter Notebook and Google Colab). This Python library can be useful for implementing and reusing interactive Data Visualizations in the Notebook environment. notebookJS takes care of downloading and handling Javascript libraries and CSS stylesheets from the web. Furthermore, it supports bidirectional communication between Python and JavaScript. User interactions in HTML/JavaScript can trigger Python callbacks that process data on demand and send the results back to the front-end code. […]

Read more

Malawi News Classification -An NLP Project

Classifying Malawi News articles into 19 different classes using SMOTE and SGDClassifier. Introduction Text classification is common among the application that we use on daily basis. For example, email providers use text classification to filter out spam emails from your inbox. The other most common use of text classification is in customer care where they use sentimental analysis to differentiate bad reviews from good reviews ADDI AI 2050. The modern use of text classification list goes on as we have excelled to […]

Read more

Safe program merges at scale: A grand challenge for program repair research

Since the computing world began embracing an open-source approach to programming, building software has become increasingly collaborative. Members of development teams with as few as two developers and as many as thousands are simultaneously editing different components in creating software systems and keeping them functioning optimally, and a three-way merge is the mechanism for integrating changes from these individual contributors. But with so many people independently altering code, it’s unsurprising that updates don’t always synchronize, resulting in bad merges. Bad […]

Read more

Use heroicons in your Django and Jinja templates

heroicons Use heroicons in your Django and Jinja templates. Requirements Python 3.6 to 3.9 supported. Django 2.2 to 3.2 supported. Are your tests slow? Check out my book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests. Usage The heroicons package supports both Django templates and Jinja templates. Follow the appropriate guide below. Django templates Install with python -m pip install heroicons[django]. Add to your INSTALLED_APPS: INSTALLED_APPS = [ …, […]

Read more
1 554 555 556 557 558 973