diff --git a/optimized_processing.py b/optimized_processing.py new file mode 100644 index 0000000000000000000000000000000000000000..d6db76e3a62c76139357297d0e1651f9e8aac724 --- /dev/null +++ b/optimized_processing.py @@ -0,0 +1,140 @@ +import os +from datasets import Dataset, DatasetDict, load_dataset +from datasets.features import Audio +import pandas as pd +import numpy as np +from tqdm import tqdm + +# Function to load your custom dataset +def load_custom_dataset(data_dir): + data = { + "audio": [], + "text": [] + } + + wav_dir = os.path.join(data_dir, 'wav') + txt_dir = os.path.join(data_dir, 'transcription') + + # Assuming filenames in 'wav' and 'txt' match + for wav_file in os.listdir(wav_dir): + if wav_file.endswith('.wav'): + txt_file = wav_file.replace('.wav', '.txt') + wav_path = os.path.join(wav_dir, wav_file) + txt_path = os.path.join(txt_dir, txt_file) + + # Read the transcription text + with open(txt_path, 'r', encoding='utf-8') as f: + transcription = f.read().strip() + + # Append to the dataset + data["audio"].append(wav_path) + data["text"].append(transcription) + + # Create a pandas dataframe + df = pd.DataFrame(data) + + # Convert to a Hugging Face dataset + dataset = Dataset.from_pandas(df) + + # Define the audio feature (for .wav files) + dataset = dataset.cast_column("audio", Audio(sampling_rate=16_000)) # Adjust the sampling rate if needed + + return dataset + +# Load your custom dataset +custom_train_dataset = load_custom_dataset("./") + +# Load Common Voice test set (Malayalam) +common_voice_test = load_dataset("mozilla-foundation/common_voice_11_0", "ml", split="test", trust_remote_code=True) + +common_voice_test = common_voice_test.select_columns(["audio", "sentence"]) + +# Combine them into a DatasetDict +dataset_dict = DatasetDict({ + "train": custom_train_dataset, + "test": common_voice_test +}) + +# Now you have the `dataset_dict` with your custom train set and the Common Voice test set +print(dataset_dict) + +from transformers import WhisperFeatureExtractor + +feature_extractor = WhisperFeatureExtractor.from_pretrained("openai/whisper-small") + +from transformers import WhisperTokenizer + +tokenizer = WhisperTokenizer.from_pretrained("openai/whisper-small", language="Malayalam", task="transcribe") + +from transformers import WhisperProcessor + +processor = WhisperProcessor.from_pretrained("openai/whisper-small", language="Malayalam", task="transcribe") + +print(dataset_dict['train'][0]) + +import gc # for garbage collection + +def prepare_dataset(batch): + # Prepare input features for each audio file in the batch + audio_arrays = [item["array"] for item in batch["audio"]] + sampling_rates = [item["sampling_rate"] for item in batch["audio"]] + + # Extract features for each audio sample + features = [] + for audio, sr in zip(audio_arrays, sampling_rates): + feature = feature_extractor(audio, sampling_rate=sr).input_features[0] + feature = np.array(feature, dtype=np.float16) + features.append(feature) + + # Free memory after each feature extraction + del audio # Remove reference to the audio array + del sr + gc.collect() # Trigger garbage collection to free memory + + # Store features in batch + batch["input_features"] = features + + # Encode target text to label ids + # Consider using a tokenizer with padding strategy (e.g., `padding="max_length"` or `padding="longest"`) + batch["labels"] = tokenizer(batch["text"], padding="longest", truncation=True).input_ids + + return batch + +# Function to process and save dataset in batches +def process_and_save_in_batches(dataset, batch_size=1000, save_path="processed_dataset"): + # Create an empty list to store the processed batches + all_processed = [] + + # Loop through the dataset in chunks + for start_idx in range(0, len(dataset), batch_size): + # Get the batch slice + batch = dataset[start_idx:start_idx+batch_size] + batch = Dataset.from_dict(batch) + # Apply the processing function to the batch + processed_batch = batch.map( + prepare_dataset, + remove_columns=dataset.column_names, + batched=True, + batch_size=batch_size, + num_proc = None, + ) + print(f"Batch {start_idx} done") + # Append the processed batch to the list + all_processed.append(processed_batch) + + # Clear memory after processing each batch + del batch # Remove reference to the batch + gc.collect() # Trigger garbage collection + + # Save each processed batch to disk + processed_batch.save_to_disk(os.path.join(save_path, f"batch_{start_idx // batch_size}")) + del processed_batch # Free memory after saving the batch + gc.collect() + + # Optionally, if you want to save the whole dataset in one file at the end + # You can merge all processed batches (not recommended for large datasets) + final_dataset = concatenate_datasets(all_processed) + final_dataset.save_to_disk(save_path) + +# Process and save the dataset in batches +process_and_save_in_batches(dataset_dict['train'], batch_size=1000, save_path="processed_dataset") diff --git a/processed_dataset/batch_0/data-00000-of-00001.arrow b/processed_dataset/batch_0/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..0126941b317f6ca2f7734f6386ff2167d65f5d23 --- /dev/null +++ b/processed_dataset/batch_0/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e975533137948b43d323738de666b43511cff7a7cbbfcda224e0668405a799 +size 484488984 diff --git a/processed_dataset/batch_0/dataset_info.json b/processed_dataset/batch_0/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_0/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_0/state.json b/processed_dataset/batch_0/state.json new file mode 100644 index 0000000000000000000000000000000000000000..2f22c9bfe4dd5873c05100b34018d533e22e8840 --- /dev/null +++ b/processed_dataset/batch_0/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "88b2cb05b021e3cb", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_10/data-00000-of-00001.arrow b/processed_dataset/batch_10/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..6d959bd2f525ce03384527f67e38df84da9af302 --- /dev/null +++ b/processed_dataset/batch_10/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de3b0d3bf7519fee122b8db4256c7a09ddb3f67801d13d7b09acbd75cccd084a +size 484488984 diff --git a/processed_dataset/batch_10/dataset_info.json b/processed_dataset/batch_10/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_10/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_10/state.json b/processed_dataset/batch_10/state.json new file mode 100644 index 0000000000000000000000000000000000000000..65ca65653dbf4760506916247fe4a8fe7b5df595 --- /dev/null +++ b/processed_dataset/batch_10/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "6e01f1623562ac29", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_11/data-00000-of-00001.arrow b/processed_dataset/batch_11/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..63e57515b267b02be37206af1e22602300a00fd0 --- /dev/null +++ b/processed_dataset/batch_11/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec32e034253c3e93f2ca41fbacd32ba9b2463c7e5639613ae34946c2d2200cb +size 483672984 diff --git a/processed_dataset/batch_11/dataset_info.json b/processed_dataset/batch_11/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_11/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_11/state.json b/processed_dataset/batch_11/state.json new file mode 100644 index 0000000000000000000000000000000000000000..4ecc4b5dba80fec747797a66a4fb30d29f5873ac --- /dev/null +++ b/processed_dataset/batch_11/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "a0d93ffa81a156ad", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_14/data-00000-of-00001.arrow b/processed_dataset/batch_14/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..58e4a432a514acb504ac6a17050fdd0b8a617d8e --- /dev/null +++ b/processed_dataset/batch_14/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350c74cd97b9f2cee382f556ec2c71ed0b8bc6132351a066710b61b6b61ce42c +size 483904984 diff --git a/processed_dataset/batch_14/dataset_info.json b/processed_dataset/batch_14/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_14/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_14/state.json b/processed_dataset/batch_14/state.json new file mode 100644 index 0000000000000000000000000000000000000000..d482919f00bbc465dd58eddeb0188577c6b28faa --- /dev/null +++ b/processed_dataset/batch_14/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "45c4cd0ee6047a21", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_15/data-00000-of-00001.arrow b/processed_dataset/batch_15/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..67e3f6ff640acd227f2d65760c22ae7b11d12565 --- /dev/null +++ b/processed_dataset/batch_15/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ebe9f2eec442d0abda92462a257d596e5668758b381388c73cf6d8daf5ee1c +size 484720984 diff --git a/processed_dataset/batch_15/dataset_info.json b/processed_dataset/batch_15/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_15/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_15/state.json b/processed_dataset/batch_15/state.json new file mode 100644 index 0000000000000000000000000000000000000000..ebd59a9a00477315e53c0eaffd44cedb593db96a --- /dev/null +++ b/processed_dataset/batch_15/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "5bbfbe86ad451863", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_16/data-00000-of-00001.arrow b/processed_dataset/batch_16/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..bc92eb98a8176c2444276f66d78043b919053f6a --- /dev/null +++ b/processed_dataset/batch_16/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f57bbba876a2817efb76cf8f874eab285bf2072f613c1767df91d0baf8b11fc +size 484304984 diff --git a/processed_dataset/batch_16/dataset_info.json b/processed_dataset/batch_16/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_16/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_16/state.json b/processed_dataset/batch_16/state.json new file mode 100644 index 0000000000000000000000000000000000000000..cc90d69c0d8991342ac06a53a98ea9a8c6a916fc --- /dev/null +++ b/processed_dataset/batch_16/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "e29d04abb11bd1e2", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_18/data-00000-of-00001.arrow b/processed_dataset/batch_18/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..0f7163ea4087da6ff812c20bf40c48c5e2c9a364 --- /dev/null +++ b/processed_dataset/batch_18/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc35fbea913b63a712c7489c37a70d290dc3cd8f3ae0d5064fe2da6e2c56843 +size 484040984 diff --git a/processed_dataset/batch_18/dataset_info.json b/processed_dataset/batch_18/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_18/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_18/state.json b/processed_dataset/batch_18/state.json new file mode 100644 index 0000000000000000000000000000000000000000..f5d3100f3e98b0d8742a68b3408c3d95f6cc30de --- /dev/null +++ b/processed_dataset/batch_18/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "83905aa884cf11aa", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_21/data-00000-of-00001.arrow b/processed_dataset/batch_21/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..661c1189e776a9a2d0699b8ccc150933fb4198c8 --- /dev/null +++ b/processed_dataset/batch_21/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f599c57f75de54f2946a6e88852563e3da2e3cf347768e26cae9312b7ec3de +size 484384984 diff --git a/processed_dataset/batch_21/dataset_info.json b/processed_dataset/batch_21/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_21/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_21/state.json b/processed_dataset/batch_21/state.json new file mode 100644 index 0000000000000000000000000000000000000000..a0bb4af8fea94e5c1490b08ee8a0e65a6b42c511 --- /dev/null +++ b/processed_dataset/batch_21/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "5a3e402db5ca7d65", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_22/dataset_info.json b/processed_dataset/batch_22/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_22/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_22/state.json b/processed_dataset/batch_22/state.json new file mode 100644 index 0000000000000000000000000000000000000000..5953f84f738e3c2a79f464dcf4de49f9e12fd56d --- /dev/null +++ b/processed_dataset/batch_22/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "8bb80671a77b5a01", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_23/data-00000-of-00001.arrow b/processed_dataset/batch_23/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..1b6cf66bd1a7fda3e52d5da7511750c43de44584 --- /dev/null +++ b/processed_dataset/batch_23/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8a757ee6b125731b780f4c995dbccc3c4195db40e854aee6a8d18f39e8bbd2 +size 483872984 diff --git a/processed_dataset/batch_23/dataset_info.json b/processed_dataset/batch_23/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_23/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_23/state.json b/processed_dataset/batch_23/state.json new file mode 100644 index 0000000000000000000000000000000000000000..5d8fc76c48df89b3e83118bc682b60f061a4e06f --- /dev/null +++ b/processed_dataset/batch_23/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "eea223df245851ee", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_24/data-00000-of-00001.arrow b/processed_dataset/batch_24/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..f3aa442f42386ce1d999eb17b01355cd89258dc3 --- /dev/null +++ b/processed_dataset/batch_24/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1249626363bce6854c8e4e128c1003e2e2ef8435550a49210026342ec47e5ebd +size 484392984 diff --git a/processed_dataset/batch_24/dataset_info.json b/processed_dataset/batch_24/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_24/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_24/state.json b/processed_dataset/batch_24/state.json new file mode 100644 index 0000000000000000000000000000000000000000..ceb95ddbc92c33f1ed9b921c4d07655c19afb084 --- /dev/null +++ b/processed_dataset/batch_24/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "261c9b3c63994758", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_25/data-00000-of-00001.arrow b/processed_dataset/batch_25/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..a331615aca29fbed68a182bbd31fb039677e92db --- /dev/null +++ b/processed_dataset/batch_25/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4206da0ee6434c3c0a7b39fc5fd0b74501343e28f3ccbf906ff82be8c88e31 +size 485824984 diff --git a/processed_dataset/batch_25/dataset_info.json b/processed_dataset/batch_25/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_25/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_25/state.json b/processed_dataset/batch_25/state.json new file mode 100644 index 0000000000000000000000000000000000000000..592cb61014ea2101b02816203fb8215b62cf45bf --- /dev/null +++ b/processed_dataset/batch_25/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "4a9d9aa7fc103bb9", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_26/dataset_info.json b/processed_dataset/batch_26/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_26/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_26/state.json b/processed_dataset/batch_26/state.json new file mode 100644 index 0000000000000000000000000000000000000000..15b5a9a6ddb3b1951cadcfdac93b3bc644ae4dcf --- /dev/null +++ b/processed_dataset/batch_26/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "561ce14c1302f0a8", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_29/dataset_info.json b/processed_dataset/batch_29/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_29/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_29/state.json b/processed_dataset/batch_29/state.json new file mode 100644 index 0000000000000000000000000000000000000000..4b0ce887d934013e54a8e953176c86e8dec7f7ff --- /dev/null +++ b/processed_dataset/batch_29/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "f8166704f32b33fd", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_3/dataset_info.json b/processed_dataset/batch_3/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_3/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_3/state.json b/processed_dataset/batch_3/state.json new file mode 100644 index 0000000000000000000000000000000000000000..d48ba3a992860b007ac92b93748504d993d43b3c --- /dev/null +++ b/processed_dataset/batch_3/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "536207594d494137", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_30/data-00000-of-00001.arrow b/processed_dataset/batch_30/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..1724e26c36bb7cfb39016a86e731c878bd07f74a --- /dev/null +++ b/processed_dataset/batch_30/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9c61e6a83f3f8abff93fa403d132a8923096191585aabc9513db77d6745a2d +size 484664984 diff --git a/processed_dataset/batch_30/dataset_info.json b/processed_dataset/batch_30/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_30/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_30/state.json b/processed_dataset/batch_30/state.json new file mode 100644 index 0000000000000000000000000000000000000000..5759edf824f59a49f5ef0c2f1d70e5a604dcfc3d --- /dev/null +++ b/processed_dataset/batch_30/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "bcb3cc73097e7a27", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_31/data-00000-of-00001.arrow b/processed_dataset/batch_31/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..fb52f31e6a276cf7818863c462f3e3d071f08f1b --- /dev/null +++ b/processed_dataset/batch_31/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7677fd0d3c344c6f4920e3a69d058adced9004c656e73b228035889a50fc1f7a +size 484264984 diff --git a/processed_dataset/batch_31/dataset_info.json b/processed_dataset/batch_31/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_31/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_31/state.json b/processed_dataset/batch_31/state.json new file mode 100644 index 0000000000000000000000000000000000000000..2c566076f9650ae7da7cdc73e58904b33072a213 --- /dev/null +++ b/processed_dataset/batch_31/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "74ba518d7abf28af", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_32/data-00000-of-00001.arrow b/processed_dataset/batch_32/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..2673489bb5bb9a6b42c6a54bdfd02f5bb04d4b5b --- /dev/null +++ b/processed_dataset/batch_32/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ebb0206c867d8f9952d2447c650cbbd022f21c81de97fd88eaea633315f8a4 +size 484248984 diff --git a/processed_dataset/batch_32/dataset_info.json b/processed_dataset/batch_32/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_32/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_32/state.json b/processed_dataset/batch_32/state.json new file mode 100644 index 0000000000000000000000000000000000000000..4e2235c0d1c8cb69c0378d61ee5ffb4d4a03662f --- /dev/null +++ b/processed_dataset/batch_32/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "0d63ad7e80fb70d3", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_33/data-00000-of-00001.arrow b/processed_dataset/batch_33/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..50708983bbbd2c926182b63eeeaab49295ba4b81 --- /dev/null +++ b/processed_dataset/batch_33/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a063d3ada77ef8f689f528dafbcc89d13df60a3fa5fa9087c531c2037fb669 +size 483584984 diff --git a/processed_dataset/batch_33/dataset_info.json b/processed_dataset/batch_33/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_33/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_33/state.json b/processed_dataset/batch_33/state.json new file mode 100644 index 0000000000000000000000000000000000000000..aa36278170629c4480fd483671c34b8e68fcd932 --- /dev/null +++ b/processed_dataset/batch_33/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "08bb172cc378fa66", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_34/data-00000-of-00001.arrow b/processed_dataset/batch_34/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..158602587cf822270ce4ac38b534d7dff9b458a0 --- /dev/null +++ b/processed_dataset/batch_34/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc20a385b6aafbf6f2f4179c96ad41fe73944bde42c6b8185f0b7426dae2569 +size 484048984 diff --git a/processed_dataset/batch_34/dataset_info.json b/processed_dataset/batch_34/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_34/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_34/state.json b/processed_dataset/batch_34/state.json new file mode 100644 index 0000000000000000000000000000000000000000..ccd591f6496981ded849a2b0873bc945e95a3408 --- /dev/null +++ b/processed_dataset/batch_34/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "06630b9671b880fb", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_38/data-00000-of-00001.arrow b/processed_dataset/batch_38/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..139bac200acb4b732fa89b3cfa12cb08a87bf6c7 --- /dev/null +++ b/processed_dataset/batch_38/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42894d8d3bf64523834002284248c434aca606d78d30fd862b65e1e4e81d5680 +size 484440984 diff --git a/processed_dataset/batch_38/dataset_info.json b/processed_dataset/batch_38/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_38/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_38/state.json b/processed_dataset/batch_38/state.json new file mode 100644 index 0000000000000000000000000000000000000000..506b3a112066350610bdd54311cb731a4a38e654 --- /dev/null +++ b/processed_dataset/batch_38/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "c57601a4a8b2849f", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_39/data-00000-of-00001.arrow b/processed_dataset/batch_39/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..ce6b1292a44ccd38771ed836f47ee25b4558c65d --- /dev/null +++ b/processed_dataset/batch_39/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5d4e76154017fc369c7ee8be2021635e075cd2d2ffa120021681c70668488c +size 483472984 diff --git a/processed_dataset/batch_39/dataset_info.json b/processed_dataset/batch_39/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_39/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_39/state.json b/processed_dataset/batch_39/state.json new file mode 100644 index 0000000000000000000000000000000000000000..322d3400a1905d41bfaa545542f1edd227584dd4 --- /dev/null +++ b/processed_dataset/batch_39/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "85727c2193d57a29", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_40/data-00000-of-00001.arrow b/processed_dataset/batch_40/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..a36300fe46b193736a507a532788dfdb40da87cf --- /dev/null +++ b/processed_dataset/batch_40/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9906ded151a62ca94f401ea7bb186142b026f46339e2f2e2c45fd38aebe03d +size 484384984 diff --git a/processed_dataset/batch_40/dataset_info.json b/processed_dataset/batch_40/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_40/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_40/state.json b/processed_dataset/batch_40/state.json new file mode 100644 index 0000000000000000000000000000000000000000..c9c3be45c85169f38844895c8453c5d574d17291 --- /dev/null +++ b/processed_dataset/batch_40/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "cb208ed395e6056a", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_41/data-00000-of-00001.arrow b/processed_dataset/batch_41/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..8483dbae7fef7c7cab0c35aee56e5f2b615a64bb --- /dev/null +++ b/processed_dataset/batch_41/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e68333785ec74ab32de074415704a7f43d2ba048dc8550f27965d8591aa170c +size 483928984 diff --git a/processed_dataset/batch_41/dataset_info.json b/processed_dataset/batch_41/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_41/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_41/state.json b/processed_dataset/batch_41/state.json new file mode 100644 index 0000000000000000000000000000000000000000..ce9d37b46b24336764779322c3162091aa0c53fa --- /dev/null +++ b/processed_dataset/batch_41/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "e244047ce698be2e", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_42/data-00000-of-00001.arrow b/processed_dataset/batch_42/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..2468f31e4432fa9bc005a823981b8e11ff0396ba --- /dev/null +++ b/processed_dataset/batch_42/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc91e0e558c7803824e89f37ce695738c893cbb413e636945f98cb7a2a17e5b8 +size 484200984 diff --git a/processed_dataset/batch_42/dataset_info.json b/processed_dataset/batch_42/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_42/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_42/state.json b/processed_dataset/batch_42/state.json new file mode 100644 index 0000000000000000000000000000000000000000..2181bff8eb8ccc039bfec291bf2b6d77c77219eb --- /dev/null +++ b/processed_dataset/batch_42/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "d2de1516999ea186", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_43/data-00000-of-00001.arrow b/processed_dataset/batch_43/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..dbbad65646ff3f4f116d7ba35fad94463c7c607a --- /dev/null +++ b/processed_dataset/batch_43/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cabfb709f137f7c53d1a38652191d1438cc0d72f72c37bd67f4395dd4a7783de +size 483552984 diff --git a/processed_dataset/batch_43/dataset_info.json b/processed_dataset/batch_43/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_43/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_43/state.json b/processed_dataset/batch_43/state.json new file mode 100644 index 0000000000000000000000000000000000000000..24fbf8f1db995c0cf606466a8679293441c21902 --- /dev/null +++ b/processed_dataset/batch_43/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "2fc32313d7cfe2ff", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_44/data-00000-of-00001.arrow b/processed_dataset/batch_44/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..b5a48daf157fc91f573305748bf6be4ae7649fef --- /dev/null +++ b/processed_dataset/batch_44/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1869de1efba7a4c04fe8c3ab9bcbc5913a6af463783b5b1e268060728fce4b1 +size 484176984 diff --git a/processed_dataset/batch_44/dataset_info.json b/processed_dataset/batch_44/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_44/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_44/state.json b/processed_dataset/batch_44/state.json new file mode 100644 index 0000000000000000000000000000000000000000..3b72df8aa72ecb6f189fbc1cb8f3bee111a3762c --- /dev/null +++ b/processed_dataset/batch_44/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "b8eab4f9b3bbe75d", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_45/data-00000-of-00001.arrow b/processed_dataset/batch_45/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..46fc7030d460dd329181c0a43399910fc3d9cc0a --- /dev/null +++ b/processed_dataset/batch_45/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97dc3083221a9002c001e213328d7d959183bf87868b3fdfefc71c38b2b7dbee +size 484408984 diff --git a/processed_dataset/batch_45/dataset_info.json b/processed_dataset/batch_45/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_45/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_45/state.json b/processed_dataset/batch_45/state.json new file mode 100644 index 0000000000000000000000000000000000000000..8528e1c55740e9c8ff760f65e5bfda236cc03d4a --- /dev/null +++ b/processed_dataset/batch_45/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "e78149d8a1bc9053", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_46/data-00000-of-00001.arrow b/processed_dataset/batch_46/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..9b2636ad1c9a77b9654c9cc07c8edfe368599887 --- /dev/null +++ b/processed_dataset/batch_46/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e342b4f6b4787d991f0aa9b9679055621a4ca19355d65af5f892f447f86a2aae +size 472228576 diff --git a/processed_dataset/batch_46/dataset_info.json b/processed_dataset/batch_46/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_46/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_46/state.json b/processed_dataset/batch_46/state.json new file mode 100644 index 0000000000000000000000000000000000000000..3fe5d10e0b466a34b46b14c43386ab26e224e41d --- /dev/null +++ b/processed_dataset/batch_46/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "1c1b0a26c428ba8e", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_5/data-00000-of-00001.arrow b/processed_dataset/batch_5/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..d17912a3908f5317099f5944cdd67c3cb26dc503 --- /dev/null +++ b/processed_dataset/batch_5/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28b6331b8ffcbee73c5b42efbfd226ee1542fba192fcef002e0f46c1a4fc777 +size 483760984 diff --git a/processed_dataset/batch_5/dataset_info.json b/processed_dataset/batch_5/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_5/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_5/state.json b/processed_dataset/batch_5/state.json new file mode 100644 index 0000000000000000000000000000000000000000..086980933faa6675b3f5597079f560ab0c455ca8 --- /dev/null +++ b/processed_dataset/batch_5/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "62482ff916474453", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_6/data-00000-of-00001.arrow b/processed_dataset/batch_6/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..d055091b3cf815ea2a1ba175887e409af04830b6 --- /dev/null +++ b/processed_dataset/batch_6/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda23a8e688566a9248d1ca4b176e5e8a6ec8e0b2649cb8db993755510e070b7 +size 484304984 diff --git a/processed_dataset/batch_6/dataset_info.json b/processed_dataset/batch_6/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_6/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_6/state.json b/processed_dataset/batch_6/state.json new file mode 100644 index 0000000000000000000000000000000000000000..d6895d6b66837f968abc4cc2caf1960c02fd2a92 --- /dev/null +++ b/processed_dataset/batch_6/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "c21cbfb7d5b4e188", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_7/data-00000-of-00001.arrow b/processed_dataset/batch_7/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..4d05768215827cc0c28eb581a92dc66338e29506 --- /dev/null +++ b/processed_dataset/batch_7/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0936ac6a9ac64b756d16ccbd7a081c48de210ddbacefbf3e67196d2172a4cd5e +size 484048984 diff --git a/processed_dataset/batch_7/dataset_info.json b/processed_dataset/batch_7/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_7/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_7/state.json b/processed_dataset/batch_7/state.json new file mode 100644 index 0000000000000000000000000000000000000000..b80443299f51c17e7d6d6c73c034b8f2b9299dc4 --- /dev/null +++ b/processed_dataset/batch_7/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "5844706cae2fdd2b", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_8/data-00000-of-00001.arrow b/processed_dataset/batch_8/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..9d9fc530b51f4f169073efb1c4a01a93cfa8a0bd --- /dev/null +++ b/processed_dataset/batch_8/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1edba1d955b4f9c380f6821054c36f16a2efa33d5858e747cad58002310c3af +size 484648984 diff --git a/processed_dataset/batch_8/dataset_info.json b/processed_dataset/batch_8/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_8/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_8/state.json b/processed_dataset/batch_8/state.json new file mode 100644 index 0000000000000000000000000000000000000000..d1ae41cfd3d7d0fbe6ddc5fd3249a176632c30fb --- /dev/null +++ b/processed_dataset/batch_8/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "ff91e66cb70e3a48", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processed_dataset/batch_9/data-00000-of-00001.arrow b/processed_dataset/batch_9/data-00000-of-00001.arrow new file mode 100644 index 0000000000000000000000000000000000000000..1c7480eb553ac12f2d50d733cd53b0e8db06b5fd --- /dev/null +++ b/processed_dataset/batch_9/data-00000-of-00001.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b1df03a59d85b12a9edb53748e6af89e1bdcbc95a6bf2cf2bfe3622c8406a5 +size 483288984 diff --git a/processed_dataset/batch_9/dataset_info.json b/processed_dataset/batch_9/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e647322a42537ad004fb550b7cbbebebf70d81 --- /dev/null +++ b/processed_dataset/batch_9/dataset_info.json @@ -0,0 +1,25 @@ +{ + "citation": "", + "description": "", + "features": { + "input_features": { + "feature": { + "feature": { + "dtype": "float16", + "_type": "Value" + }, + "_type": "Sequence" + }, + "_type": "Sequence" + }, + "labels": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "Sequence" + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/processed_dataset/batch_9/state.json b/processed_dataset/batch_9/state.json new file mode 100644 index 0000000000000000000000000000000000000000..951ae3c841af84d46c9ba69d85fe7b2f61357c87 --- /dev/null +++ b/processed_dataset/batch_9/state.json @@ -0,0 +1,13 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "a1077c5e40a93b5e", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/processing.py b/processing.py index 2adde9797a2dbf12a33444c20505481a77d9244a..9f2b7e1db958628ab7908b3dea95af995e851f88 100644 --- a/processing.py +++ b/processing.py @@ -93,7 +93,7 @@ def prepare_dataset(batch): # Encode target text to label ids # Consider using a tokenizer with padding strategy (e.g., `padding="max_length"` or `padding="longest"`) - batch["labels"] = [tokenizer(text).input_ids for text in batch["text"]] + batch["labels"] = tokenizer(batch["text"], padding="longest", truncation=True).input_ids return batch