This file contains hidden or 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
-- Start copy from spec/lua.lua | |
local unpack = table.unpack or unpack | |
local funcdef = "([A-Za-z_][A-Za-z0-9_%.%:]*)%s*" | |
local decindent = { | |
['else'] = true, ['elseif'] = true, ['until'] = true, ['end'] = true} | |
local incindent = { | |
['else'] = true, ['elseif'] = true, ['for'] = true, ['do'] = true, | |
['if'] = true, ['repeat'] = true, ['while'] = true} | |
local function isfndef(str) |
This file contains hidden or 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
# ------------------------------------------------------------------------------ | |
# Copyright (c) 2019, Nucleic Development Team. | |
# | |
# Distributed under the terms of the Modified BSD License. | |
# | |
# The full license is in the file LICENSE, distributed with this software. | |
# ------------------------------------------------------------------------------ | |
"""Time updating an EditVariable in a set of constraints typical of enaml use. | |
""" |
This file contains hidden or 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 collections import namedtuple | |
import os | |
import pprint | |
import re | |
import requests | |
import shutil | |
import subprocess | |
import tarfile | |
import traceback | |
import zipfile |
This file contains hidden or 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 torch | |
from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline | |
from datasets import load_dataset | |
device = "cuda:0" | |
torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32 | |
model_id = "openai/whisper-large-v3" |
This file contains hidden or 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
openai-whisper | |
torch | |
transformers | |
numpy | |
soundfile | |
datasets | |
sentencepiece | |
sacremoses |
This file contains hidden or 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
#!/bin/bash | |
set -ex | |
DEVICE=/dev/sdb1 | |
## If rdb is not supported by kernel, use loop device | |
# DEVICE=/dev/sdb | |
# offset=`sudo parted -s $DEVICE unit b p | grep -A1 Start | tail -1 | awk '{print $2}'` | cut -dB -f1 | |
# sudo losetup -o $offset /dev/loop1 $DEVICE | |
# DEVICE=/dev/loop1 |
OlderNewer