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
def wer(ref, hyp ,debug=True): | |
r = ref.split() | |
h = hyp.split() | |
#costs will holds the costs, like in the Levenshtein distance algorithm | |
costs = [[0 for inner in range(len(h)+1)] for outer in range(len(r)+1)] | |
# backtrace will hold the operations we've done. | |
# so we could later backtrace, like the WER algorithm requires us to. | |
backtrace = [[0 for inner in range(len(h)+1)] for outer in range(len(r)+1)] | |
OP_OK = 0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
[ | |
[ | |
[ | |
"charname", | |
"AllChampions" | |
], | |
[ | |
"spell_name", | |
"SummonerSnowball" | |
], |
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
const puppeteer = require('puppeteer') | |
const fs = require('fs'); | |
// Hardcoded for 200 shapes | |
(async () => { | |
const browser = await puppeteer.launch({ headless: true }) | |
const page = await browser.newPage() | |
await page.goto('https://ondras.github.io/primitive.js/', { waitUntil: 'networkidle0' }) | |
const files = fs.readdirSync('img') // Input Folder | |
for (let i = 0; i < files.length; i++) { |
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
if 1466280000 < os.time() then _ = false if FileExist(SPRITE_PATH.."/ClownFiesta.png") then ___ = CreateSpriteFromFile("//ClownFiesta.png",1) _ = true else DownloadFileAsync("https://raw.githubusercontent.com/ProjectClownFiesta/ClownFiesta/master/sprite_name.png",SPRITE_PATH.."//ClownFiesta.png", function() DelayAction(function() ___ = CreateSpriteFromFile("//ClownFiesta.png",1) end,1) end) DownloadFileAsync("https://github.com/ProjectClownFiesta/ClownFiesta/raw/master/sound_name.wav",SPRITE_PATH.."//ClownFiesta.wav", function() _=true end) end OnDraw(function() if ___ then __ = Vector(0,0,200) __=__:rotated(0,os.clock()%(2*math.pi),0) DrawSprite(___,GetResolution().x/2-__.x-265,GetResolution().y/2-300-__.z,0,0,0,0,GoS.White) end if _ then PlaySound(SPRITE_PATH .. "ClownFiesta.wav") _=false end end) end |
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
BUTTON - 3 | |
COMMON_PATH - C:\Users\UserName\AppData\Roaming\GamingOnSteroids\LOLEXT\Scripts\Common\ | |
CRYSTAL_SCAR - 8 | |
CalcMagicalDamage - function: 0F0CC7C8 | |
CalcPhysicalDamage - function: 0F0CC708 | |
Callback - table: 1030EBD0 | |
| Add - function: 06BEACF0 | |
| Del - function: 06BEAEE8 | |
Control - table: 1030E9C8 | |
| Attack - function: 06BE6768 |