Notes
Notes - notes.io |
from torch.utils.data import DataLoader, Dataset
from pandas_ods_reader import read_ods
import pandas as pd
import nltk
max_sequence_length = 300
# Start, padding, and end tokens
START_TOKEN = '[START]'
PADDING_TOKEN = '[PAD]'
END_TOKEN = '[END]'
# Load your dataset into a DataFrame
data = read_ods("/content/sample_data/Fire_security.ods", columns=["question", "answer"])
questions = data['question'].tolist()
answers = data['answer'].tolist()
# Build vocabulary
def build_vocabulary(data):
vocab = set()
for sentence in data:
tokens = nltk.word_tokenize(sentence.lower())
vocab.update(tokens)
vocab = list(vocab)
vocab.insert(0, START_TOKEN)
vocab.append(PADDING_TOKEN)
vocab.append(END_TOKEN)
return vocab
combined_vocabulary = build_vocabulary(questions + answers)
combined_to_index = {word: idx for idx, word in enumerate(combined_vocabulary)}
index_to_combined = {idx: word for idx, word in enumerate(combined_vocabulary)}
# Convert sentences to indices
def sentences_to_indices(sentences, vocabulary, max_length):
return [[vocabulary.get(token, vocabulary[PADDING_TOKEN]) for token in nltk.word_tokenize(sentence.lower())][:max_length] for sentence in sentences]
questions_indices = sentences_to_indices(questions, combined_to_index, max_sequence_length)
answers_indices = sentences_to_indices(answers, combined_to_index, max_sequence_length)
# Define your Dataset class to handle question-answer pairs
class QADataset(Dataset):
def __init__(self, questions_indices, answers_indices):
self.questions_indices = questions_indices
self.answers_indices = answers_indices
def __len__(self):
return len(self.questions_indices)
def __getitem__(self, idx):
return {
'input_question': self.questions_indices[idx],
'target_answer': self.answers_indices[idx]
}
def collate_fn(self, batch):
combined_sequences = [item['input_question'] + [combined_to_index[PADDING_TOKEN]] + item['target_answer'] for item in batch]
max_sequence_length = max(len(seq) for seq in combined_sequences)
combined_sequences = [seq + [combined_to_index[PADDING_TOKEN]] * (max_sequence_length - len(seq)) for seq in combined_sequences]
return {
'combined_sequence': torch.tensor(combined_sequences)
}
# Create your Dataset and DataLoader
train_dataset = QADataset(questions_indices, answers_indices)
batch_size = 30 # Set your desired batch size
train_loader = DataLoader(train_dataset, batch_size=batch_size, shuffle=True, collate_fn=train_dataset.collate_fn)
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team