--- license: cc-by-nc-4.0 language: - en size_categories: - 10K **"a [universal_human_activity] in the [historical_period]"** For example: - "a person listening to music in the 1950s" - "a person laughing with a friend in the 19th century" ## ๐Ÿ’ป Using the Dataset You can access the HistVis dataset using the Hugging Face Datasets library. Below are examples showing how to load and explore the dataset. ### Basic Usage ```python from datasets import load_dataset import pandas as pd # Load the dataset metadata (CSV only) dataset = load_dataset('csv', data_files='https://huggingface.co/datasets/latentcanon/HistVis/resolve/main/dataset.csv') # Convert to pandas DataFrame for easier manipulation df = pd.DataFrame(dataset['train']) print(f"Dataset contains {len(df)} entries") # View first few entries print(df.head())