Sign data using symmetric-key algorithm encryption

ska Lets you easily sign data, using symmetric-key algorithm encryption. Allows you to validate signed data and identify possible validation errors. Uses sha-(1, 224, 256, 385 and 512)/hmac for signature encryption. Allows to use custom hash algorithms. Comes with shortcut functions for signing (and validating) dictionaries and URLs. Key concepts Hosts, that communicate with each other, share the Secret Key, which is used to sign data (requests). Secret key is never sent around. One of the cases is signing of […]

Read more

A python functions for robotic motion planning and task and motion planning

pybullet-planning (previously ss-pybullet) A repository of PyBullet utility functions for robotic motion planning, manipulation planning, and task and motion planning (TAMP). This repository was originally developed for the PDDLStream (previously named STRIPStream) approach to TAMP. With the help of Yijiang Huang, a stable and documented fork of pybullet-planning named pybullet_planning is available through PyPI. However, new features will continue to be introduced first through pybullet-planning. Installation Install for macOS or Linux using: pybullet-planning is intended to have ongoing support for […]

Read more

Algorithm for Cutting Stock Problem using Google OR-Tools

Cutting Stock Problem Cutting Stock Problem (CSP) deals with planning the cutting of items (rods / sheets) from given stock items (which are usually of fixed size). Quick Usage This is how CSP Tools looks in action. Click CSP Tool to use it Libraries Quick Start Install Pipenv, if not already installed $ pip3 install –user pipenv Clone this project and install packages $ git clone https://github.com/emadehsan/csp $ cd csp $ pipenv install # activate env $ pipenv shell Run […]

Read more

Optimizing the 8 Queens Puzzle using the Genetic Algorithm

8QueensGenetic A Python project for optimizing the 8 Queens Puzzle using the Genetic Algorithm implemented in PyGAD. The project uses the Kivy cross-platform Python framework for building the GUI of the 8 queens puzzle. The GUI helps to visualize the solutions reached while the genetic algorithm (GA) is optimizing the problem to find the best solution. For implementing the genetic algorithm, the PyGAD library is used. Check its documentation here: https://pygad.readthedocs.io To install PyGAD, simply use pip to download and […]

Read more

Implementation of Artificial Neural Network Algorithm

Artificial Neural Network This repository contain implementation of Artificial Neural Network Algorithm in several programming languanges and frameworks. This repository was created to introduce artifical neural network in a simple way. Artificial Neural Network has become popular at this time. This branch field of Artificial Intelligence has given powerful impact to our daily life such as social media recomendation system, face detection of camera on phone and many more. Therefore, to keep up our knowledge in technology especially Artificial Intelligence, […]

Read more

Visualisation for sorting algorithms

A-List-of-Sorts-v2 Visualisation for sorting algorithms v2. Upped a notch from version 1. This program provides animates simple, common and popular sorting algorithms, to allow people to learn more about these algorithms and how the work. The source code also provides a great example for object orented programming with pygame. Sorting Algorithms: Bubble sort Insertion sort Merge sort Quick sort Radix sort Bogo sort Depencencies: Manual install: pip3 install pyyaml pygame To run to the program: For macos/linux: run start.sh file […]

Read more

ICML 2020 highlights: A Transformer-based RL agent, causal ML for increased privacy, and more

With over 50 papers from Microsoft accepted at this year’s International Conference on Machine Learning (ICML 2020), a number of which were presented in virtual workshops, Microsoft researchers are in full summer swing when it comes to advancing machine learning in accessibility, privacy, healthcare, and other areas. As Microsoft Partner Research Manager and ICML President John Langford puts it, “ICML is a very broad conference, so its specialty is in some sense ‘all of the above.’” But Langford goes on […]

Read more
1 2 3 4