File size: 3,561 Bytes
57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c 57f3c81 d19c70c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
from datasets import Dataset, Features, Value, Image
from huggingface_hub import HfApi
import os
from collections import defaultdict
import pandas as pd
import argparse
def upload_to_dataset(image_dir, dataset_name):
# Define the dataset features with dedicated columns for each model
features = Features({
"original_image": Image(), # Original image feature
"clipdrop_image": Image(), # Clipdrop segmented image
"bria_image": Image(), # Bria segmented image
"photoroom_image": Image(), # Photoroom segmented image
"removebg_image": Image(), # RemoveBG segmented image
"original_filename": Value("string") # Original filename
})
# Load image paths and metadata
data = defaultdict(lambda: {
"clipdrop_image": None,
"bria_image": None,
"photoroom_image": None,
"removebg_image": None
})
# Walk into the web-original-images folder
web_original_images_dir = os.path.join(image_dir, "web-original-images")
for root, _, files in os.walk(web_original_images_dir):
for f in files:
if f.endswith(('.png', '.jpg', '.jpeg')):
original_image_path = os.path.join(root, f)
data[f]["original_image"] = original_image_path
data[f]["original_filename"] = f
# Check for corresponding images in other directories
for source in ["clipdrop", "bria", "photoroom", "removebg"]:
# Check for processed images ending in .png or .jpg
for ext in ['.png', '.jpg']:
processed_image_filename = os.path.splitext(f)[0] + ext
source_image_path = os.path.join(image_dir, source, processed_image_filename)
if os.path.exists(source_image_path):
data[f][f"{source}_image"] = source_image_path
break # Stop checking other extensions if a file is found
# Convert the data to a dictionary of lists
dataset_dict = {
"original_image": [],
"clipdrop_image": [],
"bria_image": [],
"photoroom_image": [],
"removebg_image": [],
"original_filename": []
}
for filename, entry in data.items():
if "original_image" in entry:
dataset_dict["original_image"].append(entry["original_image"])
dataset_dict["clipdrop_image"].append(entry["clipdrop_image"])
dataset_dict["bria_image"].append(entry["bria_image"])
dataset_dict["photoroom_image"].append(entry["photoroom_image"])
dataset_dict["removebg_image"].append(entry["removebg_image"])
dataset_dict["original_filename"].append(filename)
# Save the data dictionary to a CSV file for inspection
df = pd.DataFrame.from_dict(dataset_dict)
df.to_csv("image_data.csv", index=False)
# Create a Dataset
dataset = Dataset.from_dict(dataset_dict, features=features)
# Push the dataset to Hugging Face Hub
api = HfApi()
dataset.push_to_hub(dataset_name, token=api.token)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Upload images to a Hugging Face dataset.")
parser.add_argument("image_dir", type=str, help="Directory containing the images.")
parser.add_argument("dataset_name", type=str, help="Name of the dataset to upload to Hugging Face Hub.")
args = parser.parse_args()
upload_to_dataset(args.image_dir, args.dataset_name)
|