Multi-level Disentanglement Graph Neural Network

This is a PyTorch implementation of the MD-GNN, and the code includes the following modules: Datasets (Cora, Citeseer, Pubmed, Synthetic, and ZINC) Training paradigm for node classification, graph classification, and graph regression tasks Visualization Evaluation metrics Main Requirements dgl==0.4.3.post2 networkx==2.4 numpy==1.18.1 ogb==1.1.1 scikit-learn==0.22.2.post1 scipy==1.4.1 torch==1.5.0 Description train.py main() — Train a new model for node classification task on the Cora, Citeseer, and Pubmed datasets evaluate() — Test the learned model for node classification task on the Cora, Citeseer, and Pubmed […]

Read more

A script utilises payload dumper and image extractor tools to extract the apps from the system.img of an android OTA file

This script utilises payload dumper and image extractor tools to extract the apps from the system.img of an android OTA file. It works on Windows OS. Requirements: Windows 10 Python3 installed and added to environment variable pip3 installed and added to environment variable Python Modules -> protobuf==3.6.0, six==1.11.0, bsdiff4>=1.1.5 If you face issues, install Windows 10 SDK & C++ build tools. Download the build tools here. Launch the Visual Studio Installer and select the Desktop development with C++ option. Install […]

Read more

A simple video player written in python using ffpyplayer and OpenCV

cvplayer is a minimal wrapper around the ffpyplayer.MediaPlayer class for playing videos through interactive (direct access to the player through keymaps) or scripts (getting a VideoPlayer instance and doing whatever the user wants to) audio playback and supplying frames is handles by ffpyplayer and OpenCV is used to display the frames this makes it useful for simple interactable video playback as well for integrating video playback in programs Scripted access cvplayer provides the VideoPlayer class which is the main wrapper […]

Read more

Details,PoC and patches for CVE-2021-45383 & CVE-2021-45384

There are several network-layer vulnerabilities in the official server of Minecraft: Bedrock Edition (aka Bedrock Server),which allow attacker to launch a DoS attack.CVE-2021-45383 is an integer overflow leading to a bound check bypass.CVE-2021-45384 is a null pointer dereference.Here are details & PoCs & possible patches for them. Because both vulnerabilities lie in the network protocol handler,attackers can launch a DoS attack without logining or being in the server player allowlist.CVE-2021-45383 affects Bedrock Server 1.16.0-1.18.2.03.CVE-2021-45384 is an old vulnerability and affects […]

Read more

Easy common OpenVPN3 operations

Easy common OpenVPN3 operations Install ov3 requires Python3 and OpenVPN3 to run. git clone https://github.com/boraerciyas/ov3.git cd ov3 python3 ov3.py -i /path/to/config/file.ovpn Usage Command line interface to manage basic personalOpenVPN 3 sessions.

Read more

A method for organizing and evaluating complicated decisions, using Maths and Psychology

INTRODUCTION The Analytic Hierarchy Process (AHP) is a method for organizing and evaluating complicated decisions, using Maths and Psychology. In 1970s, Thomas L. Saaty developed AHP which is a theory of measurement. AHP has been widely used, particularly in large-scale situations with several criteria and when the evaluation of alternatives is mostly subjective. It has quantifying capability which distinguishes the AHP from other decision making techniques. AHP is one of the extensively used Multi Criteria Decision Making (MCDM) tool for […]

Read more

RLMeta – a light-weight flexible framework for Distributed Reinforcement Learning Research

rlmeta – a flexible lightweight research framework for DistributedReinforcement Learning based on PyTorch andmoolib Installation To build from source, please install PyTorch first,and then run the commands below. $ git clone https://github.com/facebookresearch/rlmeta $ cd rlmeta $ git submodule sync && git submodule update –init –recursive $ pip install -e . Run an Example To run the example for Atari Pong game with PPO algorithm: $ cd examples/atari/ppo $ python atari_ppo.py env=”PongNoFrameskip-v4″ num_epochs=20 We are using hydra to define    

Read more

Cloudflare DNS provider for octoDNS

CloudflareProvider provider for octoDNS An octoDNS provider that targets Cloudflare. Installation Command line pip install octodns_cloudflare requirements.txt/setup.py Pinning specific versions or SHAs is recommended to avoid unplanned upgrades. Versions # Start with the latest versions and don’t just copy what’s here octodns==0.9.14 octodns_cloudflare==0.0.1 SHAs # Start with the latest/specific versions and don’t just copy what’s here -e git+https://[email protected]/octodns/[email protected]#egg=octodns -e git+https://[email protected]/octodns/

Read more
1 273 274 275 276 277 915