A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud

streamrip A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud. Features Super fast, as it utilizes concurrent downloads and conversion Downloads tracks, albums, playlists, discographies, and labels from Qobuz, Tidal, Deezer, and SoundCloud Supports downloads of Spotify and Apple Music playlists through last.fm Automatically converts files to a preferred format Has a database that stores the downloaded tracks’ IDs so that repeats are avoided Easy to customize with the config file Installation First, ensure pip is installed. Then run […]

Read more

A fast and robust LiDAR point cloud panoptic segmentation framework

Panoptic-PolarNet This is the official implementation of Panoptic-PolarNet. Panoptic-PolarNet is a fast and robust LiDAR point cloud panoptic segmentation framework. We learn both semantic segmentation and class-agnostic instance clustering in a single inference network using a polar Bird’s Eye View (BEV) representation. Predictions from the semantic and instance head are then fused through a majority voting to create the final panopticsegmentation. We test Panoptic-PolarNet on SemanticKITTI and nuScenes datasets. Experiment shows that Panoptic-PolarNet reaches state-of-the-art performances with a real-time inference […]

Read more

Simple Contrastive Learning of Sentence Embeddings

SimCSE We propose a simple contrastive learning framework that works with both unlabeled and labeled data. Unsupervised SimCSE simply takes an input sentence and predicts itself in a contrastive learning framework, with only standard dropout used as noise. Our supervised SimCSE incorporates annotated pairs from NLI datasets into contrastive learning by using entailment pairs as positives and contradiction pairs as hard negatives. The following figure is an illustration of our models. Use our models out of the box Our pre-trained […]

Read more

GitHub self-hosted runner matrix build visualizations for Kubernetes

visualize-actions-matrix-builds-on-k8s This repository contains various GitHub Action workflows to trigger Matrix builds on self-hosted GitHub Action runners and visualize their outputs and pod allocations on LED matrices connected to Raspberry PI. Similar visualization scripts are also available for desktop PCs. Watch a one minute video how runners spin up based on a GitHub matrix build, wtach their pods in Kubernetes and see how they stream their work to a widget. … and another movie showing the LED matrix showing the […]

Read more

A Python package for performing pore network modeling of porous media

OpenPNM OpenPNM is a comprehensive framework for performing pore network simulations of porous materials. For more details about the package can be found in the on-line documentation To be notified of new releases click the Watch button on the Github repo page. To show your support for this project click the Star button, as we use this as a proxy for the size of our userbase when applying for funding. Installation and Requirements Preferred method The preferred way of installing […]

Read more

Lightweight TLS interception capable proxy server focused on Network monitoring

proxy.py Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging. Fast & Scalable Scales by using all available cores on the system Threadless executions using coroutine Made to handle tens-of-thousands connections / sec # On Macbook Pro 2015 / 2.8 GHz Intel Core i7 ❯ hey -n 10000 -c 100 http://localhost:8899/ Summary: Total: 0.6157 secs Slowest: 0.1049 secs Fastest: 0.0007 secs Average: 0.0055 secs Requests/sec: 16240.5444 Total data: 800000 bytes Size/request: […]

Read more

Speed Up Text Pre Processing Using TextHero Python Library

Introduction     Natural Language Processing, typically abbreviated as NLP, is a branch of artificial intelligence that manages the connection among PCs and people utilizing the regular language. A definitive target of NLP is to peruse, unravel, comprehend, and figure out the human dialects in a way that is significant. Most NLP strategies depend on AI to get significance from human dialects. NLP involves applying calculations to recognize and separate the characteristic language decides to such an extent that the […]

Read more

3D Printed Flip Clock Design and Code with python

Smart Flip Clock 3D printed smart clock that puts a new twist on old technology. The first thing that must be done for this project is to obtain all the materials that will be used. The list of things needed in this project are: Raspberry Pi Zero W (or any raspberry pi) Adequate Power Supply for Pi Stepper Motors (linked below) 3D printer and filament Wire Ability to Solder Glue Mechanical key switch from a keyboard This design uses 4 […]

Read more

A Python 3 library built as a wrapper for the Automata library

Visual Automata Visual Automata is a Python 3 library built as a wrapper for the Automata library to add more visualization features. Prerequisites pip install automata-libpip install pandaspip install graphvizpip install colormathpip install jupyterlab Installing pip install visual-automata Finite Automaton (FA) VisualDFA Importing Import needed classes. from automata.fa.dfa import DFA from visual_automata.fa.dfa import VisualDFA Instantiating DFAs Define an visual_automata DFA that can accept any string ending with 00 or 11. dfa = VisualDFA( states={“q0”, “q1”, “q2”, “q3”, “q4”}, input_symbols={“0”, “1”}, […]

Read more
1 3 4 5 6 7 23