Skip to content

Instantly share code, notes, and snippets.

View sanuj's full-sized avatar

Sanuj Sharma sanuj

View GitHub Profile
@HarshTrivedi
HarshTrivedi / pad_packed_demo.py
Last active May 11, 2024 19:28 — forked from Tushar-N/pad_packed_demo.py
Minimal tutorial on packing (pack_padded_sequence) and unpacking (pad_packed_sequence) sequences in pytorch.
import torch
from torch import LongTensor
from torch.nn import Embedding, LSTM
from torch.autograd import Variable
from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence
## We want to run LSTM on a batch of 3 character sequences ['long_str', 'tiny', 'medium']
#
# Step 1: Construct Vocabulary
# Step 2: Load indexed data (list of instances, where each instance is list of character indices)
@tatomyr
tatomyr / transpose.js
Created May 4, 2017 09:19
One-line JavaScript array transpose
[[0, 1], [2, 3], [4, 5]].reduce((prev, item) => item.map((_, i) => [...(prev[i] || []), item[i]]), []); // [[0, 2, 4], [1, 3, 5]]