Raster-based Spatial Analysis for Python

xarray-spatial Xarray-Spatial implements common raster analysis functions using Numba and provides an easy-to-install, easy-to-extend codebase for raster analysis. Installation # via pip pip install xarray-spatial # via conda conda install -c conda-forge xarray-spatial Dowloading our starter examples and data Once you have xarray-spatial installed in your environment, you can use one of the following in your terminal (with the environment active) to download our examples and/or sample data into your local directory. xrspatial examples : Download the examples notebooks and […]

Read more

Simplest Wireguard Dashboard written in Python

Wireguard Dashboard Monitoring Wireguard is not convinient, need to login into server and type wg show. That’s why this platform is being created, to view all configurations in a more straight forward way. đź’ˇFeatures Add peers in configuration Manage peer names Delete peers And many more coming up! Welcome to contribute to this project! đź“ťRequirement Ubuntu 18.04.1 LTS, other OS might work, but haven’t test yet. Wireguard Configuration files under /etc/wireguard Python 3.7 đź› Install 1. Install Python Dependencies $ python3 […]

Read more

A Persistent Embedded Graph Database for Python

Cog Embedded Graph Database for Python. Installing Cog pip install cogdb Cog is a persistent embedded graph database implemented purely in Python. Torque is Cog’s graph query language. Cog also provides a low level API to its fast persistent key-value store. Cog is ideal for python applications that does not require a full featured database. Cog can easily be used as a library from within a Python application. Cog be used interactively in an IPython environment like Jupyter notebooks. Cog […]

Read more

Python News: What’s New From March 2021?

Python is a dynamic language in more ways than one: Not only is it not a static language like C or C++, but it’s also constantly evolving. If you want to get up to speed on what happened in the world of Python in March 2021, then you’ve come to the right place to get your news! March 2021 marks a notable change to the core of the Python language with the addition of structural pattern matching, which is available […]

Read more

A Python implementation of the Robotics Toolbox for MATLAB

Robotics Toolbox for Python. Synopsis This toolbox brings robotics-specific functionality to Python, and leveragesPython’s advantages of portability, ubiquity and support, and the capability ofthe open-source ecosystem for linear algebra (numpy, scipy), graphics(matplotlib, three.js, WebGL), interactive development (jupyter, jupyterlab,mybinder.org), and documentation (sphinx). The Toolbox provides tools for representing the kinematics and dynamics ofserial-link manipulators – you can easily create your own in Denavit-Hartenbergform, import a URDF file, or use over 30 supplied models for well-knowncontemporary robots from Franka-Emika, Kinova, Universal Robotics, […]

Read more

Automate the case review on legal case documents

Automation on Legal Court Cases Review This project is to automate the case review on legal case documents and find the most critical cases using network analysis. Project Information: Keywords: Automation, PDF parse, String Extraction, Network Analysis Software: Python : pdfminer, LexNLP, nltk sklearn R: igraph Scope: Parse court documents, extract citations from raw text. Build citation network, identify important cases in the network. Extract judge’s opinion text and meta information including opinion author, court, decision. Model training to predict […]

Read more

Simple (and extensible) python3 externals for maxmsp

py-js: python3 objects for max Simple (and extensible) python3 externals for MaxMSP. Quickstart WARNING this is pre-alpha software. If you are interested to try this out, please note that the current implementation only works on MacOS right now, and requires a compiler to be installed on your system (xcode or the commandline tools via xcode-select –install and that the default build script uses your existing homebrew installed python (currently 3.9.2) and assumes you have already pip installed cython (more detailed […]

Read more

Semantically Proportional Mixing for Augmenting Fine-grained Data

SnapMix SnapMix: Semantically Proportional Mixing for Augmenting Fine-grained Data (AAAI 2021) PyTorch implementation of SnapMix | paper Cite @inproceedings{huang2021snapmix, title={SnapMix: Semantically Proportional Mixing for Augmenting Fine-grained Data}, author={Shaoli Huang, Xinchao Wang, and Dacheng Tao}, year={2021}, booktitle={AAAI Conference on Artificial Intelligence}, } Setup Install Package Dependencies torch torchvision PyYAML easydict tqdm scikit-learn efficientnet_pytorch pandas opencv Datasets create a soft link to the dataset directory CUB dataset ln -s /your-path-to/CUB-dataset data/cub Car dataset ln -s /your-path-to/Car-dataset data/car Aircraft dataset ln -s /your-path-to/Aircraft-dataset […]

Read more

A collection of simulated tasks in PyBullet for learning vision-based robotic manipulation

Ravens – Transporter Networks Ravens is a collection of simulated tasks in PyBullet for learning vision-based robotic manipulation, with emphasis on pick and place. It features a Gym-like API with 10 tabletop rearrangement tasks, each with (i) a scripted oracle that provides expert demonstrations (for imitation learning), and (ii) reward functions that provide partial credit (for reinforcement learning). (a) block-insertion: pick up the L-shaped red block and place it into the L-shaped fixture. (b) place-red-in-green: pick up the red blocks […]

Read more

Several simple examples for popular neural network toolkits calling custom CUDA operators

Neural Network CUDA Example Several simple examples for neural network toolkits (PyTorch, TensorFlow, etc.) calling custom CUDA operators. We provide several ways to compile the CUDA kernels and their cpp wrappers, including jit, setuptools and cmake. We also provide several python codes to call the CUDA kernels, including kernel time statistics and model training. For more accurate time statistics, you’d best use nvprof or nsys to run the code. Environments NVIDIA Driver: 418.116.00 CUDA: 11.0 Python: 3.7.3 PyTorch: 1.7.0+cu110 TensorFlow: […]

Read more
1 661 662 663 664 665 912