PyTorch evaluation code and pretrained models for SLPT

PyTorch evaluation code and pretrained models for SLPT (Sparse Local Patch Transformer). Installation Note: this released version was tested on Python3.8, Pytorch 1.10.2 and Windows 11. Install python dependencies: pip3 install -r requirements.txt Run Evaluation on WFLW dataset Download and process WFLW dataset Download WFLW dataset and annotation from Here. Unzip WFLW dataset and annotations and move files into ./dataset directory. Your directory should look like this: SLPT └───Dataset │ └───WFLW │ └───WFLW_annotations │ └───list_98pt_rect_attr_train_test │ │ │ └───list_98pt_test └───WFLW_images […]

Read more

Monocular Depth Estimation Toolbox based on MMSegmentation

Introduction Monocular-Depth-Estimation-Toolbox is an open source monocular depth estimation toolbox based on PyTorch and MMSegmentation v0.16.0. It aims to benchmark MonoDepth methods and provides effective supports for evaluating and visualizing results. Major features Unified benchmark Provide a unified benchmark toolbox for various depth estimation methods. Modular design Depth estimation framworks are decomposed into different components. One can easily construct a customized framework by combining different modules. Support of multiple methods out of box I would like to reproduce some of […]

Read more

An IoT Integrated Fully Automatic WIreless PHIshing System

─ An IoT Integrated Fully Automatic WIreless PHIshing System by Şefik Efe Altınoluk ─ Legal Disclaimer Do not try this software on the users/systems that you have no legal permission. Usage of Wi-Phi for attacking targets without prior mutual consent is illegal. It is the end user’s responsibility to obey all applicable local, state and federal laws. I assume no liability and are not responsible for any misuse or damage caused by this software, documentation and anything in this repository. […]

Read more

Various Odoo apps and/or extensions

Apps related to various (third party) Odoo apps auditlog_extra: expansion of https://github.com/OCA/server-tools/tree/14.0/auditlog auditlog_extra Expands the auditlog module from the OCA with the following features: New rule type “Specific fields” to only log/report on the field(s) that you want: Smart button from the rule to quick-open and view all logs related to a rule: Smart button from the log line to the related record to quick navigate: New button “Add smart button” to add a “Check logs” button on the form […]

Read more

Forward Compatible Few-Shot Class-Incremental Learning

The code repository for “Forward Compatible Few-Shot Class-Incremental Learning” [paper] (CVPR22) in PyTorch. If you use any content of this repo for your work, please cite the following bib entry: @inproceedings{zhou2022forward, title={Forward Compatible Few-Shot Class-Incremental Learning}, author={Zhou, Da-Wei and Wang, Fu-Yun and Ye, Han-Jia and Ma, Liang and Pu, Shiliang and Zhan, De-Chuan}, booktitle={CVPR}, year={2022} } Forward Compatible Few-Shot Class-Incremental Learning Novel classes frequently arise in our dynamically changing world, e.g., new users in the authentication system, and a machine […]

Read more

ReMoS: Reducing Defect Inheritance in Transfer Learning via Relevant Model Slicing

This is the artifact for the ICSE 2022 paper “ReMoS: Reducing Defect Inheritance in Transfer Learning via Relevant Model Slicing”. Transfer learning is a popular software reuse technique in the deep learning community that enables developers to build custom models (students) based on sophisticated pretrained models (teachers). However, like vulnerability inheritance in traditional software reuse, some defects in the teacher model may also be inherited by students, such as well-known adversarial vulnerabilities and backdoors. Reducing such defects is challenging since […]

Read more

Gaussian Multi-head Attention for Simultaneous Machine Translation

Source code for our ACL 2022 paper “Gaussian Multi-head Attention for Simultaneous Machine Translation” (PDF) Our method is implemented based on the open-source toolkit Fairseq. Core code of Gaussian Multi-head Attention is in fairseq/modules/gaussian_multihead_attention.py Requirements and Installation Python version = 3.6 PyTorch version = 1.7 Install fairseq: git clone https://github.com/ictnlp/GMA.git cd GMA pip install –editable ./ Quick Start Data Pre-processing We use the data of IWSLT15 English-Vietnamese (download here) and WMT15 German-English (download here), and apply BPE with 32K merge […]

Read more

How to send System Exclusive command by using FL Studio

How to send System Exclusive command by using FL Studio Basically I aligned with https://www.image-line.com/fl-studio-learning/fl-studio-online-manual/html/midi_scripting.htm Please read “The basics of working with Script Files:”According to this explanation, I made device_CASIO CTSV1000.py and put into DocumentsImage-LineFL StudioSettingsHardwareCASIO CTS1000V The Script set OnInit() for initialization. I put change Lylic Play Mode of CTS-1000V to “NOTE” from “Phrase(default)” You may want to send SysEX every play cycle. For that purpose, it can use onUpdateBeatIndicator(), this can call every beat while playing. FL Studioを使ったシステムエクスクルーシブの送信 […]

Read more

PQ is a jq-like viewer/processing tool for pickle files

PQ is a jq-like viewer/processing tool for pickle files. # pq ” file.pkl {‘other’: 456, ‘test’: 123} # pq ‘table’ file.pkl |other|test| | 456 |123 | # pq ‘keys’ file.pkl [‘test’, ‘other’] # pq ‘.[“test”]’ file.pkl 123 Filter Usage Description flat .[] Extract elements from list to apply filters on each table table When elements are dictionaries, display common keys as a table keys    

Read more
1 197 198 199 200 201 927