Benchmarks on Bias Faces in the Wild

Face Recognition: Too Bias, or Not Too Bias? Robinson, Joseph P., Gennady Livitz, Yann Henon, Can Qin, Yun Fu, and Samson Timoner. “Face recognition: too bias, or not too bias? ” In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pp. 0-1. 2020. Balanced Faces in the Wild (BFW): Data, Code, Evaluations version: 0.4.5 (following Semantic Versioning Scheme– learn more here, https://semver.org) Intended to address problems of bias in facial recognition, we built BFW as a […]

Read more

Charts.css.py brings charts.css to Python

charts.css.py As implied by its name, charts.css.py brings charts.css to Python. Charts.css is a pure-CSS data visualization framework. It offers advantages over traditional JS-heavy chart libraries. charts.css.py provides a pythonic API on top of charts.css, so that you can largely avoid working directly at HTML and CSS level. Installation pip install charts.css.py Usage charts.css.py process data by converting your 2-dimension number list into an HTML table, which is properly styled with CSS classes.Then you write such a string into your […]

Read more

A disposable encrypted chat-based application created to claim anonymity back

Harpocrate Security is the number 1 priority when it comes to Harpocrate as the goal is to become a platform for encrypted disposable chats, the purpose of making a disposable encrypted chat is to create a connection of encrypted channels and anonymity possible again. This is an open-source project meaning you can review all code and pen-test possible vulnerabilities if you have found any possible security threats make sure to create an Issue. If you are using an older version […]

Read more

Multimodal Neural Script Knowledge Models

merlot MERLOT is a model for learning what we are calling “neural script knowledge” — representations about what is going on in videos, spanning multiple video frames with associated captions. What’s here We are releasing the following: Code for the MERLOT model (in model/, with data processing in data/ Code for running MERLOT over visual story ordering. We plan to release: Information about the videos used in this work Code for adapting the model to other tasks (not strictly needed, […]

Read more

Multi-Speaker Adaptive Text-to-Speech Generation with python

StyleSpeech PyTorch Implementation of Meta-StyleSpeech : Multi-Speaker Adaptive Text-to-Speech Generation. [x] StyleSpeech (naive branch) [x] Meta-StyleSpeech (main branch) Dependencies You can install the Python dependencies with pip3 install -r requirements.txt Inference You have to download pretrained models and put them in output/ckpt/LibriTTS/. For English single-speaker TTS, run python3 synthesize.py –text “YOUR_DESIRED_TEXT” –ref_audio path/to/reference_audio.wav –restore_step 200000 –mode single -p config/LibriTTS/preprocess.yaml -m config/LibriTTS/model.yaml -t config/LibriTTS/train.yaml The generated utterances will be put in output/result/. Your synthesized speech will have ref_audio‘s style. Batch Inference […]

Read more

Linear regression for data with measurement errors and intrinsic scatter

BCES Python module for performing robust linear regression on (X,Y) data points where both X and Y have measurement errors. The fitting method is the bivariate correlated errors and intrinsic scatter (BCES) and follows the description given in Akritas & Bershady. 1996, ApJ. Some of the advantages of BCES regression compared to ordinary least squares fitting (quoted from Akritas & Bershady 1996): it allows for measurement errors on both variables it permits the measurement errors for the two variables to […]

Read more

Detect secret in source code and scan your repo for leaks with python

GitGuardian Shield Detect secret in source code, scan your repo for leaks. Find secrets with GitGuardian and prevent leaked credentials. GitGuardian is an automated secrets detection & remediation service. The GitGuardian shield (gg-shield) is a CLI application that runs in your local environment or in a CI environment to help you detect more than 200 types of secrets, as well as other potential security vulnerabilities or policy breaks. GitGuardian shield uses our public API through py-gitguardian to scan your files […]

Read more

Dashboard For The DexConnect Platform of Dexterity Global

DexDash Working prototype submission for internship at Dexterity Global Group. Dashboard to for real time analysis of data of connected individuals and institutes across the country. A dashboard built using Plotly-Dash for interactive visualization of Dex-connected individuals across the country. Requirements How to run Install the dependencies by running the command pip install -r requirements.txt Once dependencies are installed, just run python app.py to see it in your browser. Features Map to visualize the connected individuals and institutes Demographics and […]

Read more

Using Pandas to Make a Gradebook in Python

One of the jobs that all teachers have in common is evaluating students. Whether you use exams, homework assignments, quizzes, or projects, you usually have to turn students’ scores into a letter grade at the end of the term. This often involves a bunch of calculations that you might do in a spreadsheet. Instead, you can consider using Python and pandas. In this course, you’ll learn how to: Load and merge data from multiple sources with pandas Filter and group […]

Read more

Part- 3: Step by Step Guide to Master Natural Language Processing (NLP) in Python

This article was published as a part of the Data Science Blogathon Introduction This article is part of an ongoing blog series on Natural Language Processing (NLP). In part-1and  part-2 of this blog series, we complete the theoretical concepts related to NLP. Now, in continuation of that part, in this article, we will cover some of the new concepts. In this article, we will understand the terminologies required and then we start our journey towards text cleaning and preprocessing, which is […]

Read more
1 614 615 616 617 618 927