CoolFace
Datasetpublic

kaangml/t2i_tiny_nasa

Dataset Card for t2i_tiny_nasa NASA Image Dataset This dataset is created using images obtained from NASA's official image library. The dataset contains a collection of images along with their corresponding textual descriptions (prompts). This dataset can be used for various applications, including image-to-text tasks, text-to-image generation, and other AI-based image analysis studies. Dataset Information Source: NASA Image Library Content: Images… See the full description on the dataset page: https://huggingface.co/datasets/kaangml/t2i_tiny_nasa.

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes10downloads
Dataset Card

Dataset Card for t2itinynasa

NASA Image Dataset

This dataset is created using images obtained from NASA's official image library. The dataset contains a collection of images along with their corresponding textual descriptions (prompts). This dataset can be used for various applications, including image-to-text tasks, text-to-image generation, and other AI-based image analysis studies.

Dataset Information

  • —Source: NASA Image Library
  • —Content: Images and corresponding textual descriptions
  • —License: Please refer to NASA's official terms of use

Usage Example

You can load and visualize an example from the dataset using the following code:

python
from datasets import load_dataset

# Load dataset
dataset = load_dataset("kaangml/t2i_tiny_nasa")

# Get an example from the dataset
example = dataset['train'][0]

from PIL import Image
import matplotlib.pyplot as plt

# Load and display the image
image_path = example['image']['path']
image = Image.open(image_path)

plt.imshow(image)
plt.title(f"Prompt: {example['prompt']}")
plt.axis('off')
plt.show()

Citation

If you use this dataset in your research or project, please give credit to NASA for the images and include a reference to this dataset.

Acknowledgment

This dataset is built using publicly available images from NASA's official repository. NASA does not endorse or officially support this dataset.