Tools for checking ACL paper submissions

ACL pubcheck is a Python tool that automatically detects author formatting errors, margin violations as well as many other common formatting errors in papers that are using the LaTeX sty file associated with ACL venues. The script can be used to check your papers before you submit to a conference. (We highly recommend running ACL pubcheck on your papers pre-submission—a well formatted paper helps keep the reviewers focused on the scientific content.) However, its main purpose is to ensure your […]

Read more

A basic and simple training framework for pytorch. Easy to expand for multi network interaction

[TOC] Introduction A basic and simple training framework for pytorch, easy for extension. Dependence torch==1.7.0+cu110 torchvision==0.8.0 easydict==1.9 tensorboard==2.7 tensorboardX==2.4 PyYAML==5.3.1 Features Any module can be easily customized Not abstract, easy to learn, develop and debug With a lot of repetitive work reduction, it can be more easily control the training process in development and research Friendly to multi-network interactive training, such as GAN, transfer learning, knowledge distillation, etc. Train python main.py –model resnet18 –save_dir cifar100_resnet18 –config_path ./configs/cifar100.yml Results CIFAR100 All […]

Read more

Linting support for python using the pylint library

A Visual Studio Code extension with support for the pylint linter. The extension ships with pylint=2.12.2. Settings Settings Default Description python.pylintArgs [] Custom arguments passed to pylint. E.g “python.pylintArgs” = [“–rcfile=”] python.pylintSeverity { “convention”: “Information”, “error”: “Error”, “fatal”: “Error”, “refactor”: “Hint”, “warning”: “Warning”, “info”: “Information” } Controls mapping of severity from pylint to VS Code severity when displaying in the problems window. You can override specific pylint error codes { “convention”: “Information”, “error”: “Error”, “fatal”: “Error”, “refactor”: “Hint”, “warning”: “Warning”, […]

Read more

i3 dotfiles and installation scripts

Installation currently auto installation is only supported for arch linux and arch based distros.clone the repo git clone https://github.com/Anomic-cr/i3_dotfiles.git And run the installation script and you should be good to go Manual Installation Install the dependencies and copy the config files Dependencies i3-gaps, sddm, betterlockscreen, i3status-git, i3blocks-git, alacritty, rofi-git, neofetch-git, polybar-git, dunst-git, feh-git, nitrogen, picom, lxappearance, xorg, xorg-xinit, xorg-server, qt5, oh-my-zsh, zsh Optional Dependencies

Read more

A free alternative of the tool to check invites (with min/max members number) by genefit

💰 a free alternative of the tool by genefit Preview Warning My tool is probably more slow than genefit tool (but imagine paying 5$ for a checker lol) I never tried the genefit tool but I know how it works so I did this Maybe original Checky is writen in Golang, but mine is in Python Features Checks Invite name, and members Store the invites if there are corrects Proxies support Todo Built with Requirements Installation # Clone the repo: […]

Read more

A Python bot which can compare and assist in predicting future crypto prices

A cryptocurrency bot which can assist you in predicting future crypto prices through comparing previous crypto prices with actual prices. The bot uses the method of Death Cross vs Golden Cross, a reliable method for solid predictions of prices, to make a plot based on previously predicted data. Image: Preview of the graph Table of Contents Features Interactive graph Allows user to input to customize the following in the chart – currency, cryptocurrency, time period and time interval Various built-in […]

Read more

Woodyll – A python script allowing for fast tpll and point marking

v1.1 woodyll is a python script allowing for fast tpll and point marking. woodyll opens your minecraft, teleports you to coordinates from your clipboard, marks down the point and switches back to map. Windows installation Verify if your PC has python installed by opening cmd and type py –version. If your PC has python installed, proceed to step 2. If your PC doesn’t have python installed, download it from python.org. Download woodyll by running git clone https://github.com/woodyamazing/woodyll.git in cmd or […]

Read more

LAFITE: Towards Language-Free Training for Text-to-Image Generation

Code for paper LAFITE: Towards Language-Free Training for Text-to-Image Generation (CVPR 2022) Update more details later. Requirements The implementation is based on stylegan2-ada-pytorch and CLIP, the required packages can be found in the links. Preparing Datasets Example: python dataset_tool.py –source=./path_to_some_dataset/ –dest=./datasets/some_dataset.zip –width=256 –height=256 –transform=center-crop the files at ./path_to_some_dataset/ should be like: ./path_to_some_dataset/   ├  1.png   ├  1.txt   ├  2.png   ├  2.txt   ├  … We provide links to several commonly used datasets that we have already processed (with CLIP-ViT/B-32): MS-COCO Training Set […]

Read more
1 210 211 212 213 214 935