Skip to content

Instantly share code, notes, and snippets.

View YiweiJiang2015's full-sized avatar
👣
step by step

Yiwei YiweiJiang2015

👣
step by step
View GitHub Profile
@YiweiJiang2015
YiweiJiang2015 / all_intent_split_desc_six_datasets.json
Created September 6, 2023 15:30
The intent split (in-scope vs. out-of-scope) and intent descriptions for all the 6 datasets
{
"snips": {
"in_scope_intents": {
"get_weather": "user seeks information about the weather conditions, forecasts, or temperature for a specific location or time",
"play_music": "user requests to play specific music or songs from a particular era, artist, or platform",
"search_screening_event": "user inquires about movie schedules, showtimes, or screenings at specific theaters or venues",
"search_creative_work": "user desires to find, view, or hear a specific creative work, such as a song, book, video game, or photograph",
"rate_book": "user intends to provide a rating or score to a book, album, or other literary work"
},
"oos_intents": {
{
"transactions": {
"annotator-1": "user asks for details of one or many transactions. he may specify one or multiple subjects and time constraints",
"annotator-2": "a request to review transactions related to a specific type of purchase, a specific time period, or a specific card",
"annotator-3": "list of recent transactions or payments with the bank account",
"annotator-4": "need to show either a specific transaction, a particular subset of transactions, or a general transaction overview",
"annotator-5": "the user wants to list transactions on a bank account or credit card"
},
"pay_bill": {
"annotator-1": "user wants to pay his bill using his account. he may specify the bill type",
@YiweiJiang2015
YiweiJiang2015 / discarded_doc.json
Created March 8, 2022 14:10
doc_ids of duplicate documents
{
"Benefits Planner: Survivors | Planning For Your Survivors | Social Security Administration#2_0": "Benefits Planner: Survivors | Planning For Your Survivors | Social Security Administration#1_0",
"Benefits Planner: Disability | How You Apply | Social Security Administration#2_0": "Benefits Planner: Disability | How You Apply | Social Security Administration#1_0",
"Learn what documents you will need to get a Social Security Card | Social Security Administration#2_0_1": "Learn what documents you will need to get a Social Security Card | Social Security Administration#2_0",
"Learn what documents you will need to get a Social Security Card | Social Security Administration#4_0_1": "Learn what documents you will need to get a Social Security Card | Social Security Administration#4_0",
"Learn what documents you will need to get a Social Security Card | Social Security Administration#4_0_1_2": "Learn what documents you will need to get a Social Security Card | Social Security Administration#4_0"
@YiweiJiang2015
YiweiJiang2015 / hydrapaper.desktop
Created April 14, 2021 20:22 — forked from HarlemSquirrel/hydrapaper.desktop
HydraPaper desktop menu entry for GNOME and flatpak
[Desktop Entry]
# Place this file in ~/.local/share/applications/
Name=hydrapaper
GenericName=HydraPaper
Comment=A Gtk utility to set two different backgrounds for each monitor on GNOME
Exec=flatpak run org.gabmus.hydrapaper
Terminal=false
Type=Application
StartupNotify=true
# https://github.com/GabMus/HydraPaper/raw/master/data/icons/org.gabmus.hydrapaper.svg
@YiweiJiang2015
YiweiJiang2015 / .vimrc
Last active March 15, 2022 20:07 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'