Using Global fishing watch’s data to build a machine learning model that can identify illegal fishing and poaching activities through satellite and geo-location data

Using Global fishing watch’s data to build a machine learning model that can identify illegal fishing and poaching activities through satellite and geo-location data. Global fishing watch is a partnership between Google and Oceana to map all trackable fishing activity in world, in almost real time. This is a personal project using the data provided by global fishing watch. The data provided has vessel ids, types and coordinates of encountered vessels. Given same vessel type and are, a fishing vessel […]

Read more

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
1 24 25 26 27 28 49