This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"service_name": "restaurants", | |
"description": "", | |
"slots": [ | |
{ | |
"name": "dietary_restrictions", | |
"description": "", | |
"is_categorical": false, | |
"possible_values": [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
os.environ["CUDA_VISIBLE_DEVICES"] = "0" | |
import transformers | |
from peft import ( | |
LoraConfig, | |
PeftConfig, | |
PeftModel, | |
get_peft_model, | |
prepare_model_for_int8_training, |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"dialog_id","turn_id","context","target" | |
"1_00000","1","<|begincontext|><|beginlastuserutterance|>I am feeling hungry so I would like to find a place to eat.<|endlastuserutterance|><|endcontext|>","<|begintarget|><|begindsts|><|begindst|><|beginintent|>FindRestaurants<|endintent|><|beginbelief|><|endbelief|><|enddst|><|enddsts|><|beginuseraction|>INFORM_INTENT->Restaurants^intent~FindRestaurants<|enduseraction|><|beginaction|>REQUEST->Restaurants^city~<|endaction|><|beginresponse|>Do you have a specific which you want the eating place to be located at?<|endresponse|><|endtarget|>" | |
"1_00000","2","<|begincontext|><|user|>I am feeling hungry so I would like to find a place to eat.<|system|>Do you have a specific which you want the eating place to be located at?<|beginlastuserutterance|>I would like for it to be in San Jose.<|endlastuserutterance|><|endcontext|>","<|begintarget|><|begindsts|><|begindst|><|beginintent|>FindRestaurants<|endintent|><|beginbelief|>Restaurants^city->San Jose<|endbelief|><|enddst|><|en |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda env export --no-builds | grep -v ^prefix | grep -v ^name > environment.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from scenedetect.frame_timecode import FrameTimecode | |
from scenedetect import VideoManager, SceneManager, StatsManager | |
from scenedetect.detectors import ContentDetector | |
import cv2 | |
threshold = 50 | |
#please specify the video path | |
video_path = './tmp/test1.mp4' | |
#you can find the video at the url below |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias s='sudo' | |
alias agu='sudo apt-get update' | |
alias agi='sudo apt-get install' | |
alias bright='xbacklight -set' | |
#aliases for laravel | |
alias art='php artisan' | |
#aliases for git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Asset { | |
//Downloads the content of the file from internet | |
public function fetch( $assetPath ) { | |
return file_get_contents( $assetPath ); | |
} | |
} | |
class Fetch_Task { |