A library for Deep Learning Implementations and utils

deeply A library for Deep Learning Implementations and utils. Features Installation $ pip install git+https://github.com/achillesrasquinha/deeply.git Usage Application Interface >>> import deeply Command-Line Interface $ deeply Usage: deeply [OPTIONS] COMMAND [ARGS]… A Deep Learning library Options: –version Show the version and exit. -h, –help Show this message and exit. Commands: help Show this message and exit. version Show version and exit. GitHub https://github.com/achillesrasquinha/deeply    

Read more

A web GUI to manage and monitorize your Wireguard server

Linguard Linguard aims to provide an easy way to manage your WireGuard server, and it’s written in Python3 and powered by Flask. Screenshots Installation Git Install dependencies: sudo apt update sudo apt install wireguard iptables uwsgi uwsgi-plugin-python3 libpcre3 libpcre3-dev Download any release (or clone the repository) and put the files somewhere you will remember later, such as /var/www/linguard. Edit the configuration files to fit your needs. Add a linguard user and group to your computer: groupadd linguard useradd -g linguard […]

Read more

Wrapper for the undocumented CodinGame API

codingame API wrapper Pythonic wrapper for the undocumented CodinGame API. Installation Python 3.6 or higher is required. Install codingame with pip: pip install codingame Quickstart Create an application, in example.py: import codingame client = codingame.Client() # if you want to log in client.login(“[email protected]”, “password”) # get a codingamer codingamer = client.get_codingamer(“username”) print(codingamer.pseudo) # get the global leaderboard global_leaderboard = client.get_global_leaderboard() # print the pseudo of the top codingamer print(global_leaderboard.users[0].pseudo) GitHub https://github.com/takos22/codingame    

Read more

A python library that generates random facts

Randfacts Randfacts is a python library that generates random facts. You can use randfacts.get_fact() to return a random fun fact. Disclaimer: Facts are not guaranteed to be true. randfacts can either be installed via pip or via the AUR, whichever way you prefer. Installation via pip: $ pip3 install randfacts Installation via AUR: $ git clone https://aur.archlinux.org/python-randfacts.git && cd python-randfacts $ makepkg -si import randfacts x = randfacts.get_fact() print(x) will print a random fact like:Penguins can’t taste sweet or savory […]

Read more

Python library for parsing Godot scene files

This is a python library for parsing Godot scene (.tscn) and resource (.tres) files. It’s intended to make it easier to automate certain aspects of editing scene files or resources in Godot. High-level API godot_parser has roughly two levels of API. The low-level API has no Godot-specific logic and is just a dumb wrapper for the file format. The high-level API has a bit of application logic on top to mirror Godot functionality and make it easier to perform certain […]

Read more

Python client for using Prefect Cloud with Saturn Cloud

prefect-saturn prefect-saturn is a Python package that makes it easy to run Prefect Cloud flows on a Dask cluster with Saturn Cloud. For a detailed tutorial, see “Fault-Tolerant Data Pipelines with Prefect Cloud “. Installation prefect-saturn is available on PyPi. pip install prefect-saturn prefect-saturn can be installed directly from GitHub pip install git+https://github.com/saturncloud/[email protected] Getting Started prefect-saturn is intended for use inside a Saturn Cloud environment, such as a Jupyter notebook. import prefect from prefect import Flow, task from prefect_saturn import […]

Read more

Python Automated Machine Learning library for tabular data

SAP-HANA-AutoML Simple but powerful Automated Machine Learning library for tabular data. It uses efficient in-memory SAP HANA algorithms to automate routine Data Science tasks. Disclaimer This library is an open-source research project and is not part of any official SAP products. What’s this? This is a simple but accurate Automated Machine Learning library. Based on SAP HANA powerful in-memory algorithms, it provides high accuracy in multiple machine learning tasks. Our library also uses numerous data preprocessing functions to automate routine […]

Read more

A Web API for automatic background removal using Deep Learning

Automatic_Background_Remover A Web API for automatic background removal using Deep Learning. App is made using Flask and deployed on Heroku. CNN Architecture – U-Net with Residual connections Parameters – 2.2M Trained on – 153,947 Images validated on – 2693 Images batch_size = 32 img_size = (256,256) Trained for – 4 epochs Training time – 80min/epoch on GPUs by Google Colab. Datasets used for training: The model is trained using modified version of U-NET (https://arxiv.org/abs/1505.04597) Architecture first presented by Olaf Ronneberger, […]

Read more

Python module for the qwiic serial control motor driver

Qwiic_SCMD_Py Python module for the qwiic motor driver This python package is a port of the existing SparkFun Serial Controlled Motor Driver Arduino Library This package can be used in conjunction with the overall SparkFun qwiic Python Package Documentation The SparkFun qwiic SCMD module documentation is hosted at ReadTheDocs Installation PyPi Installation This repository is hosted on PyPi as the sparkfun-qwiic-scmd package. On systems that support PyPi installation via pip, this library is installed using the following commands For all […]

Read more
1 560 561 562 563 564 927