Simple python bot, that notifies about new manga chapters through Telegram

RU Simple python bot, that notifies about new manga chapters through Telegram. Quick Start To setup your own instance of this application Install docker and docker-compose Take docker compose form Put your Bot’s token as environment variables TG_TOKEN (probably .env file) And run docker-compose up -d Development To setup development environment use standart flow to venv python3 -m virtualenv venv . ./venv/bin/activate pip install -r requirements.txt All settings stored as environment variables, to set them up use .env file. To […]

Read more

Simple RGB to HEX game made in python

import random r = random.randint(0,255); g = random.randint(0,255); b = random.randint(0,255); def rgb_to_hex(r, g, b): return (‘{:X}{:X}{:X}’).format(r, g, b); solution = “#” + rgb_to_hex(r, g, b); print(“replace RGB to HEX game, use uppercase, author: github.com/maciekkoks”); print(“RGB:”, r, g, b); input1 = input(“Enter a    

Read more

An example of how to automate Ridit Analysis for a dataset with large amount of questions and many item attributes

This is an example of how to automate Ridit Analysis for a dataset with large amount of questions and many item attributes, with the question response being on likert scale. For instance, this dataset is about the university faculty perceptions and practices of using Wikipedia as a teaching resource. The university faculties have many interesting attributes such as age, gender, years of expericence, their domain of expectrice, etc… . This survey also has many questions which makes the job of […]

Read more

Basic Discord Response Bot in Python

Response bot for Discord. EG: User: Hello! Bot: Hello there! About Very customizable, no credits needed. Edit the bot.py to what you want, basic Python knowledge needed How to run [installation guide] Download the Discord Module by doing Downloading through PIP: pip install discord Then Running: Python3 bot.py Contact Any issues contact rhys#9931 on discord! GitHub View Github    

Read more

SSH tunnels to remote server

Author: Pahaz Repo: https://github.com/pahaz/sshtunnel/ Inspired by https://github.com/jmagnusson/bgtunnel, which doesn’t work on Windows. See also: https://github.com/paramiko/paramiko/blob/master/demos/forward.py Requirements Installation sshtunnel is on PyPI, so simply run: pip install sshtunnel or easy_install sshtunnel or conda install -c conda-forge sshtunnel to have it installed in your environment. For installing from source, clone the repo and run: python setup.py install Testing the package In    

Read more

Benchmarking LF-MMI, CTC and RNN-T Criteria for Streaming ASR

January 9, 2022 By: Xiaohui Zhang, Frank Zhang, Chunxi Liu, Kjell Schubert, Julian Chan, Pradyot Prakash, Jun Liu, Ching-Feng Yeh, Fuchun Peng, Yatharth Saraf, Geoffrey Zweig Abstract In this work, to measure the accuracy and efficiency for a latency-controlled streaming automatic speech recognition (ASR) application, we perform comprehensive evaluations on three popular training criteria: LF-MMI, CTC and RNN-T. In transcribing social media videos of 7 languages with training data 3K – 14K hours, we conduct large-scale controlled experimentation across each […]

Read more

A OSINT tool coded in python

Welcome to Argus, a OSINT tool coded in python. I Am not responsible what you do with the information that is given to you by my tool. This tool was built purely for education purposes only Argus can pull various information such as addresses, names, phone information, and much more from a given command.This OSINT tool is still being developed as of its publish. So be aware there are some bugs that can come from this tool. Argus Panoptes in […]

Read more

PySpark ML Bank Churn Prediction

Surname: corresponds to the record (row) number and has no effect on the output. CreditScore: contains random values and has no effect on customer leaving the bank. Geography: a customer’s location can affect their decision to leave the bank. Gender: it’s interesting to explore whether gender plays a role in a customer leaving the bank. Age: this is certainly relevant, since older customers are less likely to leave their bank than younger ones. Tenure: refers to the number of years […]

Read more
1 374 375 376 377 378 928