A tutorial on training a DarkNet YOLOv4 model for the CrowdHuman dataset

YOLOv4 CrowdHuman Tutorial This is a tutorial demonstrating how to train a YOLOv4 people detector using Darknet and the CrowdHuman dataset. Setup If you are going to train the model on Google Colab, you could skip this section and jump straight to Training on Google Colab. Otherwise, to run training locally, you need to have a x86_64 PC with a decent GPU. For example, I mainly test the code in this repository using a desktop PC with: NVIDIA GeForce RTX […]

Read more

A toolbox that allows to train and evaluate deep learning models

Ludwig Ludwig is a toolbox that allows users to train and test deep learning models without the need to write code. It is built on top of TensorFlow. To train a model you need to provide is a file containing your data, a list of columns to use as inputs, and a list of columns to use as outputs, Ludwig will do the rest. Simple commands can be used to train models both locally and in a distributed way, and […]

Read more

A Python package for multiply imputing missing data using deep learning methods

MIDASpy MIDASpy is a Python package for multiply imputing missing data using deep learning methods. The MIDASpy algorithm offers significant accuracy and efficiency advantages over other multiple imputation strategies, particularly when applied to large datasets with complex features. In addition to implementing the algorithm, the package contains functions for processing data before and after model training, running imputation model diagnostics, generating multiple completed datasets, and estimating regression models on these datasets. Background and suggested citation For more information on MIDAS, […]

Read more

Python3 library for multimedia functions at the command terminal

TERMINEDIA This is a Python library allowing using a text-terminal as a low-resolution graphics output, along with keyboard realtime reading, and a couple utilities enough to enable using a text terminal to run simple 2D games or simply rich terminal apps. The “noveau” factor is that it uses Unicode quarter-character block combinations to effectivelly enable 1/4 character “pixels” in the terminal. It also makes use of 24bit “true” color for text, not limiting itself to the 80’s 8 color palette […]

Read more

A framework to build Slack apps using Python

bolt-python A Python framework to build Slack apps in a flash with the latest platform features. Read the getting started guide and look at our code examples to learn how to build apps using Bolt. Setup # Python 3.6+ required python -m venv .venv source .venv/bin/activate pip install -U pip pip install slack_bolt Creating an app Create a Bolt for Python app by calling a constructor, which is a top-level export. If you’d prefer, you can create an async app. […]

Read more

A lightweight Python web API framework based on Flask

APIFlask APIFlask is a lightweight Python web API framework based on Flask and marshmallow-code projects. It’s easy to use, highly customizable, and 100% compatible with the Flask ecosystem. It starts as a fork of APIFairy and is inspired by FastAPI (see Comparison and Motivations for the comparison between these projects). More sugars for view function (@input(), @output(), @app.get(), @app.post() and more) Automatic request validation and deserialization (with Webargs) Automatic response formatting and serialization (with Marshmallow) Automatic OpenAPI Specification (OAS, formerly […]

Read more

A dependency injection framework for Python

Dependency Injector Dependency Injector is a dependency injection framework for Python. It helps implementing the dependency injection principle. Key features of the Dependency Injector: Providers. Provides Factory, Singleton, Callable, Coroutine, Object, List, Dict, Configuration, Resource, Dependency and Selector providers that help assembling your objects. See Providers. Overriding. Can override any provider by another provider on the fly. This helps in testing and configuring dev / stage environment to replace API clients with stubs etc. See Provider overriding. Configuration. Reads configuration […]

Read more

Deploying a Python Flask Example Application Using Heroku

Welcome! Today we’re going to start building a Flask app that calculates word-frequency pairs based on the text from a given URL. This is a full-stack tutorial. Updates: 02/08/2020: Upgraded to Python version 3.8.1, and use python -m venv instead of pyvenv. 03/22/2016: Upgraded to Python version 3.5.1, and added autoenv version 1.0.0. 02/22/2015: Added Python 3 support. Part One: Set up a local development environment and then deploy both a staging and a production environment on Heroku. (current) Part […]

Read more

A basic Ray Tracer that exploits numpy arrays and functions to work fast

Python-Fast-Raytracer A basic Ray Tracer that exploits numpy arrays and functions to work fast. The code is written keeping as much readability as possible. [x] Refraction [x] Thin film interference [x] Textures [x] Monte Carlo Ray Tracing with importance sampling [ ] Relativistic optical effects Installation Just clone or download this repo. You’ll need to install two packages. Pillow is a fork of the PIL package. It provides the Image module for this application.to install it run the following. pip […]

Read more

A simple screen recorder with a minimal interface for python

Kooha Capture your screen in a straightforward and painless way without distractions. Kooha is a simple screen recorder with a minimal interface. You can simply click the record button without having to configure a bunch of settings. The main features of Kooha include the following: The main features of Kooha include the following: 🎥 Capture your screen without any hassle. 🎙️ Record your microphone, computer sounds, or both at the same time. 🖼️ Select an area of your screen to […]

Read more
1 658 659 660 661 662 919