Port any SVG image to Geometry Dash

Port any SVG image to Geometry Dash Made by Jaan#2897(mostly) and some code by camila314(converting svg to objects) Feel free to contact me How to run Install Python 3.7+ Download this repo Run python main.py Input some values Done 🙂 How it works It basically just uses gd.py to add objects/create a level with them and svgpathtools to actually make those objects. Special thanks GitHub View Github    

Read more

A loan eligibility calculator aiming to reduce algorithmic biases

A loan eligibility calculator aiming to reduce algorithmic biases. Made for Hack the Globe 2022 by Team 32. This code acts as a framework which banks/lenders can use to build on and improve their own loan eligability algorith, in order to reduce biases towards those of lower income (which often includes many marginalised groups) by determining their eligability for a loan without the use of a credit score, and also makes them less riskier to lend to by offering more […]

Read more

OpenAI Gym style Wrapper for Multi-agent environment which made by Unity ML-Agents

OpenAI Gym style Wrapper for Multi-agent environment which made by Unity ML-Agents This wrapper is used in Logistics Environment (for MARL) You can use this wrapper to wrap user algorithm to make OpenAI gym style like this, from UnityGymWrapper5 import GymEnv env = GymEnv(…) obs = env.reset() next_obs, rewards, done, info = env.step(actions) This wrapper file detect information of your ML-Agent environment automately (number of agents, state of each agents, number of actions etc…) GitHub View Github    

Read more

Graph Neural Networks for User Identity Linkage

data/: contains the processed data. The dataset Douban-Weibo is provided by the PHD student Siyuan Chen. If you use the data, please cite the following paper. More details refer to INFUNE. @inproceedings{chen2020infune, title={A Novel Framework with Information Fusion and Neighborhood Enhancement for User Identity Linkage}, author={Chen, Siyuan and Wang, Jiahai and Du, Xin and Hu, Yanqing}, booktitle={24th European Conference on Artificial Intelligence (ECAI)}, pages={1754–1761}, year={2020} }    

Read more

A Discord Token Grabber For Macos Written In Python

Information: 📕 This is a Discord token grabber written in Python. This token grabber only supports the Macos operating system. I created this github because, I was looking for a Discord token grabber for mac, since there wasn’t any I decided to create this. Hopefully you enjoy this project. Features: 💡 No data caching. Transfers via Discord webhook. Searching for tokens in multiple directories (Discord, Discord PTB, Discord Canary, Chrome, Opera, Brave and Yandex). No external Python modules needed. No […]

Read more

3x+1 recreated in Python

3x+1 recreated in Python If a number is odd it is multiplied by 3 and 1 is added to the product. If a number is even it is divided by 2. These rules are applied directly to any positive natural number. All numbers till 2 to the power 62 have been found and all end up at 1. Since 1 is odd multiplying by 3 and adding 1 becomes 4, dividing by 2 gives 2, and dividing again gives 1, […]

Read more

Forecasting for knowable future events using Bayesian informative priors

judgyprophet is a Bayesian forecasting algorithm based on Prophet, that enables forecasting while using information known by the business about future events. The aim is to enable users to perform forecasting with judgmental adjustment, in a way that is mathematically as sound as possible. Some events will have a big effect on your timeseries. Some of which you are aware of ahead of time. For example: An existing product entering a new market. A price change to a product. These […]

Read more
1 172 173 174 175 176 914