A Python package for geospatial analysis and interactive mapping

leafmap A Python package for geospatial analysis and interactive mapping in a Jupyter environment. leafmap is a Python package for geospatial analysis and interactive mapping in a Jupyter environment. It is a spin-off project of the geemap Python package, which was designed specifically to work with Google Earth Engine (GEE). However, not everyone in the geospatial community has a GEE account. leafmap is designed to fill this gap for non-GEE users. It enables users to perform advanced geospatial analysis and […]

Read more

The most annoying bot on Discord

FBot The most annoying bot on discord Features Lots of fun stuff Message responses, sort of our main feature, no big deal. FBot can respond to a wide range of messages, this is also referred to as it’s the spam feature, and can be used to encourage users to spam in specific channels while also giving everyone a bit of fun Counting (yay?). Yes we said it, counting. This allows your members to practise their first grade counting skills and […]

Read more

Clustering Application in Python Using scikit-learn

Clustering Predicting Baseball Metric Clusters: Clustering Application in Python Using scikit-learn This repository contains the prediction of baseball metric clusters using MLB Statcast Metrics. Goals Using MLB Statcast Metrics, summarize and examine baseball statistics. Build a k-Means Clustering model to predict clusters using exit velocity and launch angle as features. Determine the optimal number of clusters using the elbow method and silhouette coefficients. Build a Hierarchical (Agglomerative) Clustering model to predict clusters using exit velocity and launch angle as features. […]

Read more

A tools for visualizing and performing calculations with weather data in Python

MetPy MetPy is a collection of tools in Python for reading, visualizing and performing calculations with weather data. MetPy follows semantic versioning in its version number. This means that any MetPy 1.x release will be backwards compatible with an earlier 1.y release. By “backward compatible”, we mean that correct code that works on a 1.y version will work on a future 1.x version. For additional MetPy examples not included in this repository, please see the Unidata Python Gallery. We support […]

Read more

A Policy-as-Code tool for Kubernetes that allows for evaluating Kubernetes resources against

MagTape MagTape is a Policy-as-Code tool for Kubernetes that allows for evaluating Kubernetes resources against a set of defined policies to inform and enforce best practice configurations. MagTape includes variable policy enforcement, notifications, and targeted metrics. MagTape builds on the Kubernetes Admission Webhook concept and uses Open Policy Agent (OPA) for its generic policy language and engine. Our goal with MagTape is to show an example of wrapping additional business logic and features around OPA’s core, not to be a […]

Read more

Interesting NLP Use Cases Every Data Science Enthusiast should know!

This article was published as a part of the Data Science Blogathon Introduction Natural Language Processing (NLP) is a subpart of Artificial Intelligence that uses algorithms to understand and process human language. Various computational methods are used to process and analyze human language and a wide variety of real-life problems are solved using Natural Language Processing. (Source: Kaggle.com) Using Natural Language Processing, we use machines by making them understand how human language works. Basically, we use text data and make computers analyze […]

Read more

Issue #132 – Tokenization strategies for Korean MT tasks

27 May21 Issue #132 – Tokenization strategies for Korean MT tasks in Model improvement, The Neural MT Weekly Author: Dr. Jingyi Han, Machine Translation Scientist @ Iconic Introduction Asian languages have always been challenging for machine translation (MT) tasks due to their completely different grammar and writing system. As we know, there are specific segmenters for Chinese and Japanese as there is no space between words in these languages. With regards to Korean, even though the words are separated by […]

Read more

A simple Python Module for sending cross-platform desktop notifications

notify.py Cross platform desktop notifications for Python scripts and applications. Supported Platforms. Windows 10 macOS 10 >=10.10 Linux (libnotify) No dependencies are required other than loguru & jeepney (Only for linux/DBUS). Install pip install notify-py Usage Send Simple Notification from notifypy import Notify notification = Notify() notification.title = “Cool Title” notification.message = “Even cooler message.” notification.send() Send Notification With Icon from notifypy import Notify notification = Notify() notification.title = “Cool Title” notification.message = “Even cooler message.” notification.icon = “path/to/icon.png” notification.send() […]

Read more

A performant type checker for Python compliant with PEP 484

Pyre Pyre is a performant type checker for Python compliant with PEP 484. Pyre can analyze codebases with millions of lines of code incrementally – providing instantaneous feedback to developers as they write code. Pyre ships with Pysa, a security focused static analysis tool we’ve built on top of Pyre that reasons about data flows in Python applications. Requirements To get started, you need Python 3.6 or later and watchman working on your system. On MacOS you can get everything […]

Read more

A Python module and command line tool for working with Fortran namelists

f90nml A Python module and command line tool for parsing Fortran namelist files. f90nml is a Python module and command line tool that provides a simple interface for the reading, writing, and modifying Fortran namelist files. A namelist file is parsed and converted into an Namelist object, which behaves like a standard Python dict. Values are converted from Fortran data types to equivalent primitive Python types. The command line tool f90nml can be used to modify individual values inside of […]

Read more
1 634 635 636 637 638 928