File size: 2,920 Bytes
8e23d48
 
 
8f6e9f6
de4347a
8f6e9f6
5e6ddd0
8e23d48
 
8f6e9f6
5e6ddd0
8e23d48
de4347a
8e23d48
5e6ddd0
8e23d48
5e6ddd0
d51c83e
5e6ddd0
 
 
 
 
8e23d48
5e6ddd0
8e23d48
5e6ddd0
8e23d48
5e6ddd0
 
 
 
 
 
 
 
8e23d48
5e6ddd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8e23d48
 
5e6ddd0
de4347a
5e6ddd0
 
 
 
 
8e23d48
5e6ddd0
 
 
 
 
 
 
 
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
---
license: apache-2.0
---

# UMA-IA/PYXIS-Engine-v1

## Authors
- **Youri LALAIN**, Engineering student at French Engineering School ECE  
- **Lilian RAGE**, Engineering student at French Engineering School ECE  

## Dataset Summary

The **UMA-IA/PYXIS-Engine-v1** is a specialized dataset designed for training vision-language models in the field of **aerospace and aeronautical engineering**. It consists of high-quality **images of aircraft engine components paired with detailed captions** identifying and describing the visible parts. This dataset enables models to learn to recognize and analyze various engine components, making it ideal for **fine-tuning vision-language models** for technical visual recognition and analysis tasks in the aerospace industry.

## Dataset Details

- **Splits**:
  - **Train**: Complete dataset for model training
- **Columns**:
  - `image`: The image file of an aircraft engine component or cross-section
  - `caption`: Detailed description of visible components in the image
  - `image_id`: Unique identifier for each image
  - `cui`: Technical classification identifier

## Dataset Structure

The dataset's primary focus is on providing high-quality annotated images of aircraft engine components with detailed technical descriptions. Each entry contains:

1. An image showing aerospace engine components from various angles and cross-sections
2. Detailed captions identifying components such as:
   - Soufflante (Fan)
   - Aubes (Blades)
   - Rotor
   - Stator
   - Compresseur (Compressor)
   - And other critical engine components

## Example Entries

| image | caption | image_id |
|-------|---------|----------|
| [Engine Image] | Composants visibles: - Soufflante - Aubes de soufflante - Rotor de soufflante... | 001269777_896x598_c_mirror |
| [Engine Image] | Composants visibles: - Soufflante - Aubes - Rotor - Stator - Compresseur... | 001269777_896x598_c_original |
| [Engine Image] | Composants visibles: - Soufflante - Aubes - Rotor - Stator - Compresseur... | 001269777_896x598_c_segment1 |

## Applications

This dataset is particularly valuable for:
- Training vision models to recognize aerospace engine components
- Developing diagnostic tools for engine maintenance
- Creating educational resources for aerospace engineering
- Enhancing technical documentation with automatic component recognition
- Supporting quality control processes in engine manufacturing

## How to Use

You can load this dataset using the Hugging Face `datasets` library:

```python
from datasets import load_dataset
dataset = load_dataset("UMA-IA/PYXIS-Engine-v1")

# Access the first sample
print(dataset["train"][0]["caption"])

# Display an image (if in a notebook environment)
from PIL import Image
import matplotlib.pyplot as plt

img = dataset["train"][0]["image"]
plt.figure(figsize=(10, 8))
plt.imshow(img)
plt.axis('off')
plt.title(dataset["train"][0]["caption"])
plt.show()