A simple python module to generate anchor (aka default/prior) boxes for object detection tasks

WIP A simple python module to generate anchor (aka default/prior) boxes for object detection tasks. Calculated anchor boxes are returned as ndarrays in pascal_voc format by default. Installation Usage To calculate the anchor boxes for a single feature size and aspect ratio, given the image size: from pybx import anchor image_sz = (300, 300, 3) feature_sz = (10, 10) asp_ratio = 1/2. anchor.bx(image_sz, feature_sz, asp_ratio) To    

Read more

PHOTONAI – A high level python API for designing and optimizing machine learning pipelines

PHOTONAI is a high level python API for designing and optimizing machine learning pipelines. We’ve created a system in which you can easily select and combine both pre-processing and learning algorithms fromstate-of-the-art machine learning toolboxes,and arrange them in simple or parallel pipeline data streams. In addition, you can parametrize your training and testingworkflow choosing cross-validation schemes, performance metrics and hyperparameteroptimization metrics from a list of pre-registered options. Importantly, you can integrate custom solutions into your data processing pipeline,but also for […]

Read more

Shows that it is possible to implement reverse mode autodiff using a variation on the dual numbers called the codual numbers

The codual numbers are a simple method of doing automatic differentiation in reverse mode. They contrast with the dual numbers which provide an easy way of doing automatic differentiation in forward mode. The difference between the two modes is that sometimes one is faster than the other. The folklore appears to be that forward mode autodiff is easy to implement because it can be done using the beautiful algebra of dual numbers, while the same is assumed to not be […]

Read more

Scapes an entire search page of a particular item on eBay and sends regular updates to an email address

This is a project I built with the sole intent to learn more about scraping websites, manipulating data, and delivering it through a medium. It is not intended for commercial use. The program tracks an entire eBay search page of a particular item and sends automated updates to an email with the respective link and price to each entry. The program asks you for: The item you want to track How many hours do you want between updates The range […]

Read more

Create and finder all address wallet bitcoin and check balance , transaction

Create and finder all address wallet bitcoin and check balance , transaction bitcoin wallet generator generated address wallet , public key , private key , hex address and private key find and check Wallet BTC find and check private key and address with all address wallet btc and print result with balance without use apikey first install package : pip install blockcypher pip install moneywagon pip install urllib pip install satoshi GitHub View Github    

Read more

Whatsapp chatbot build with python and twilio

This is a Whatsapp Chatbot that responds with quotes, reply owners name, search internet for meaning of any word. Download and install Python. Version 3 and above should come with pip. Clone or fork this repository (project). $ git clone https://github.com/arinzejustin/whatsapp-bot.git $ cd whatsapp-bot Create a virtual environment inside this project directoy e.g., python -m venv whatsapp-bot-venv Then activate that environment: Windows: whatsapp-bot-venvScriptsactivate Mac: $ source whatsapp-bot-venv/bin/activate Install the following dependencies: twilio, flask, requests, beautifulsoup,    

Read more
1 284 285 286 287 288 940