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
# Note: ensure you have the latest version of Torchtext by running: pip install torchtext --upgrade | |
rnn_model = text_data.get_model(opt_fn, 1500, bptt, emb_sz=em_sz, n_hid=nh, n_layers=nl, | |
dropout=0.1, dropouti=0.65, wdrop=0.5, dropoute=0.1, dropouth=0.3) | |
# ... | |
rnn_model.data.test_dl.src.sort = False | |
rnn_model.data.test_dl.src.sort_within_batch = False | |
rnn_model.data.test_dl.src.shuffle = False |
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
local Terrain = game:GetService("Workspace").Terrain | |
-- The resolution required for Terrain system. | |
local terrainResolution = 4 | |
-- The smallest possible voxel size. | |
local region = Region3.new(Vector3.new(0,0,0), Vector3.new(4,4,4)) | |
-- The material as a 1x1x1 3d-grid. What material should go in the voxel? | |
local material = { |
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
local ContextActionService = game:GetService('ContextActionService') | |
local module = {hold=false} | |
local ActionNames={ | |
['ScrollDown']='ScrollDown', | |
['ScrollUp']='ScrollUp', | |
['ScrollRight']='ScrollRight', | |
['ScrollLeft']='ScrollLeft' | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer