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 gradio as gr | |
| import math | |
| import numpy as np | |
| import time | |
| import io | |
| import wave | |
| def wave_header_chunk(frame_input=b"", channels=1, sample_width=2, sample_rate=24000): | |
| # This will create a wave header then append the frame input |
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 time import sleep | |
| from datasets import load_dataset | |
| from huggingface_hub import InferenceClient | |
| from ratelimit import limits, sleep_and_retry | |
| from transformers import AutoTokenizer | |
| dataset = load_dataset("yijingwu/HeySQuAD_human", split="train") | |
| tokenizer = AutoTokenizer.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct") |
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
| text = # Tokenized Text Corresponding to Recording Transcript | |
| audio = # Mel Spectrogram of the Recording | |
| # Only Train Connector and Projection | |
| self.encoder.freeze() | |
| self.llama.freeze() | |
| # Convert Raw Audio Signal to 1500 Embeddings with Whisper Encoder (CNN+Transformer) | |
| audio_features = self.encoder(audio) |
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
| def _push_parquet_shards_to_hub( [1071/1877] | |
| self, | |
| repo_id: str, | |
| data_dir: str = "data", | |
| split: Optional[str] = None, | |
| token: Optional[str] = None, | |
| revision: Optional[str] = None, | |
| create_pr: Optional[bool] = False, | |
| max_shard_size: Optional[Union[int, str]] = None, | |
| num_shards: Optional[int] = None, |
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 ast | |
| # To Delete After Debug | |
| import code | |
| import copyreg | |
| import datetime | |
| import functools | |
| import json | |
| import os | |
| import re |
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 typing import List, Optional, Tuple, Union | |
| from torchtyping import TensorType | |
| from transformers.adapters.modeling import Adapter | |
| from transformers.adapters import ( | |
| BartAdapterModel, | |
| RobertaAdapterModel, | |
| BertAdapterModel, | |
| AdapterConfig, | |
| ) |
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 transformers import AutoTokenizer, T5ForConditionalGeneration | |
| # Model Init | |
| n_gpu = 8 | |
| tokenizer = AutoTokenizer.from_pretrained("google/flan-ul2") | |
| model = T5ForConditionalGeneration.from_pretrained("google/flan-ul2") | |
| heads_per_gpu = len(model.encoder.block) // n_gpu | |
| device_map = { | |
| gpu: list( | |
| range( |
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
| # See https://huggingface.co/docs/datasets/upload_dataset for more details | |
| from datasets import load_dataset | |
| dataset_name = "PUT_YOUR_NAME_HERE" | |
| data_files = {"train": "train.csv", "dev": "dev.csv", "test": "test.csv"} | |
| dataset = load_dataset("namespace/your_dataset_name", data_files=data_files) | |
| datasets.push_to_hub(f"SALT-NLP/{dataset_name}", private=True) |
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 gensim import utils | |
| def save2gensim(fname, word2vec_dict): | |
| vectors = list(word2vec_dict.values()) | |
| vector_size = vectors[0].shape[0] | |
| total_vec = len(vectors) | |
| with utils.smart_open(fname, 'wb') as fout: | |
| fout.write(utils.to_utf8("%s %s\n" % (total_vec, vector_size))) | |
| # store in sorted order: most frequent words at the top | |
| for word, vector in word2vec_dict.items(): |
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
| #!/usr/bin/env python | |
| """Counts the number of times a word occurs in a very large text file""" | |
| from __future__ import print_function | |
| import os | |
| import sys | |
| import argparse | |
| import textacy | |
| import multiprocessing | |
| from tqdm import tqdm |
NewerOlder