A python library for anti-captcha.com

A python library for anti-captcha.com Documentation for the API Requirements Install git clone https://github.com/ShayBox/AntiCaptcha.git cd AntiCaptcha $ poetry build $ pip install dist/AntiCaptcha-0.1.0.tar.gz –user Usage from anticaptcha import AntiCaptcha captcha = AntiCaptcha(“API KEY”) captcha.solve({“TASK”: “OBJECT”}) GitHub View Github    

Read more

A telegram bot to monitor the latest NFT price on BSC

This is a telegram bot for monitoring price and ranking of NFT on Binance Smart Chain. Can fetch latest ranking and price in real time. .Pancake_NFT/nft-web3.py: Main file to fetch transaction and log through web3. .Pancake_NFT/pancake_nft.py: Original version to fetch log from bscscan. Now aborted. 0x00 Requirement Available for Python3.8+, recommend to use virtualenv to run this project. python-telegram-bot==13.7 web3==5.24.0 0x01 Usage Modify configuration in config.py TEST_BOT_TOKEN : tgbot token of test environment PROD_BOT_TOKEN: tgbot token of produce environment COLLECTION_CONTRACT_ADDRESS: […]

Read more

Hand-Object Contact Prediction via Motion-Based Pseudo-Labeling and Guided Progressive Label Correction

This repository contains the code and data for the paper “Hand-Object Contact Prediction via Motion-Based Pseudo-Labeling and Guided Progressive Label Correction” by Takuma Yagi, Md. Tasnimul Hasan and Yoichi Sato. Requirements Python 3.6+ ffmpeg numpy opencv-python pillow scikit-learn python-Levenshtein pycocotools torch (1.8.1, 1.4.0- for flow generation) torchvision (0.9.1) mllogger flownet2-pytorch Caution: This repository requires ~100GB space for testing, ~200GB space for trusted label training and ~3TB space for full training. Getting Started Download the data Download EPIC-KITCHENS-100 videos from the […]

Read more

Codebase for the self-supervised goal reaching benchmark introduced in the LEXA paper

Codebase for the self-supervised goal reaching benchmark introduced in the LEXA paper (Discovering and Achieving Goals via World Models, NeurIPS 2021). Setup Create the conda environment by running : conda env create -f environment.yml Alternatively, you can update an existing conda environment by running : conda env update -f environment.yml Modify the python pathexport PYTHONPATH= Export the following variables for renderingexport MUJOCO_RENDERER=egl; export MUJOCO_GL=egl Please follow these instructions to install mujoco Bibtex If you find this code useful, please cite:

Read more

Facilitates implementing deep neural-network backbones, data augmentations

facilitates implementing deep neural-network backbones, data augmentations, optimizers and learning schedulers. backbones loss functions augumentation styles optimizers schedulers data types visualizations Refer to docs/installation.md for installion of general_backbone package. Model backone Currently, general_backbone supports more than 70 type of resnet models such as: resnet18, resnet34, resnet50, resnet101, resnet152, resnext50. All models is supported can be found in general_backbone.list_models() function: import general_backbone general_backbone.list_models() Results {‘resnet’: [‘resnet18’, ‘resnet18d’, ‘resnet34’, ‘resnet34d’, ‘resnet26’, ‘resnet26d’, ‘resnet26t’, ‘resnet50’, ‘resnet50d’, ‘resnet50t’, ‘resnet101’, ‘resnet101d’, ‘resnet152’, ‘resnet152d’, ‘resnet200’, ‘resnet200d’, […]

Read more
1 404 405 406 407 408 928