Convert lecture videos to slides in one line

About Convert lecture videos to slides in one line. Takes an input of a directory containing your lecture videos and outputs a directory containing .PDF files containing the slides of each lecture. (You can download the videos from Google Drive even if you only have View-Only permissions. Google it) The utility only captures slides when it detects that a slide has changed and does not capture every frame. Thus your pdf will be very close to the actual slides used. […]

Read more

AniFormer: Data-driven 3D Animation with Transformer

This is the PyTorch implementation of our BMVC 2021 paper AniFormer: Data-driven 3D Animation with Transformer.Haoyu Chen, Hao Tang, Nicu Sebe, Guoying Zhao. Citation If you use our code or paper, please consider citing: @inproceedings{chen2021AniFormer, title={AniFormer: Data-driven 3D Animation withTransformer}, author={Chen, Haoyu and Tang, Hao and Sebe, Nicu and Zhao, Guoying}, booktitle={BMVC}, year={2021} } Dependencies Requirements: python3.6 numpy pytorch==1.1.0 and above trimesh Dataset preparation Please download DFAUST dataset    

Read more

MEND: Fast Model Editing at Scale

Setup Environment This codebase uses Python 3.7.9. Other versions may work as well. Create a virtualenv (pyenv can help with this)and install the dependencies: $ python -m venv env $ source env/bin/activate (env) $ pip install -r requirements.txt Data You can download the data needed for this project fromthis Google Drive link.Unzip each sub-directory into mend/data and you should be good to go. Running the code Run MEND training/evaluation for distilGPT-2 on the wikitext editing problem with:

Read more

A python program will display all SSID usernames and SSID passwords you once connected to your laptop

Windows-Wifi-password-extractor This python program will display all SSID usernames and SSID passwords you once connected to your laptop How to run the program Run the following command python windows_wifi_passwd_extractor.py Requirements Python 3.X beautifultable should be installled on your system Note for the program to run successfully open the CMD/Terminal and type the following command pip install -r requirements.txt Build with Author License    

Read more

Lighter and Faster YOLO is used to detect defect of X-ray weld image

This project is based on ultralytics/yolov3. LF-YOLO (Lighter and Faster YOLO) is used to detect defect of X-ray weld image. Download $ git clone https://github.com/lmomoy/LF-YOLO Train We provide multiple versions of LF-YOLO with different depths. $ python train.py –data coco.yaml –cfg LF-YOLO.yaml –weights ” –batch-size 1 LF-YOLO-1.25.yaml 1 LF-YOLO-0.75.yaml 1 LF-YOLO-0.5.yaml 1 Results We test our model on public dataset MS COCO, and it also achieves competitive results. Model size(pixels) mAPval0.5:0.95 mAPtest0.5:0.95    

Read more
1 2