Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: Logolens Industeries for Logo Classification
|
| 6 |
+
size_categories:
|
| 7 |
+
- n<1K
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Dataset Name: LogoLens Industries
|
| 11 |
+
|
| 12 |
+
## Dataset Summary
|
| 13 |
+
The `logolens-industries` dataset provides a comprehensive classification of industries based on the Global Industry Classification Standard (GICS). This dataset is designed for tasks such as industry-specific logo analysis, branding research, and AI-based categorization of visual or textual elements.
|
| 14 |
+
|
| 15 |
+
- **Version**: 1.0.0
|
| 16 |
+
- **Homepage**: [Hugging Face Dataset Page](https://huggingface.co/datasets/tiny-factories/logolens-industries)
|
| 17 |
+
- **License**: MIT
|
| 18 |
+
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
## Supported Tasks and Use Cases
|
| 22 |
+
This dataset can be used for:
|
| 23 |
+
- **Classification**: Categorize logos, companies, or products into industries and subcategories.
|
| 24 |
+
- **Analysis**: Identify trends in specific industry segments.
|
| 25 |
+
- **Prediction**: Train AI models to predict industry association based on input data.
|
| 26 |
+
|
| 27 |
+
---
|
| 28 |
+
|
| 29 |
+
## Dataset Structure
|
| 30 |
+
The dataset consists of a flattened structure for better usability, including the following fields:
|
| 31 |
+
|
| 32 |
+
| Field | Type | Description | Example |
|
| 33 |
+
|---------------------|---------------|---------------------------------------------------------------------|-------------------------------------|
|
| 34 |
+
| `name` | `string` | Name of the industry. | "Energy" |
|
| 35 |
+
| `description` | `string` | Brief description of the industry. | "Companies involved in energy..." |
|
| 36 |
+
| `subcategories` | `list[string]`| Subcategories within the industry. | "Energy Equipment & Services..." |
|
| 37 |
+
| `code` | `string` | Industry code (if available). | "10" |
|
| 38 |
+
| `geographical_scope`| `string` | The geographical scope of the industry (e.g., global or regional). | "Global" |
|
| 39 |
+
|
| 40 |
+
---
|
| 41 |
+
|
| 42 |
+
## Example Rows
|
| 43 |
+
### Example 1: Energy Industry
|
| 44 |
+
```json
|
| 45 |
+
{
|
| 46 |
+
"name": "Energy",
|
| 47 |
+
"description": "Companies involved in energy equipment and services, oil, gas, and consumable fuels",
|
| 48 |
+
"subcategories": "Energy Equipment & Services, Oil, Gas & Consumable Fuels, Renewable Energy Equipment, Energy Storage",
|
| 49 |
+
"code": "10",
|
| 50 |
+
"geographical_scope": "Global"
|
| 51 |
+
}
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
### Example 2: Information Technology
|
| 55 |
+
```json
|
| 56 |
+
{
|
| 57 |
+
"name": "Information Technology",
|
| 58 |
+
"description": "Companies that develop or distribute technological products and services",
|
| 59 |
+
"subcategories": "Software & Services, Technology Hardware & Equipment, Semiconductors",
|
| 60 |
+
"code": "45",
|
| 61 |
+
"geographical_scope": "Global"
|
| 62 |
+
}
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
---
|
| 66 |
+
|
| 67 |
+
## Usage
|
| 68 |
+
Here’s how to load and use the dataset with the Hugging Face `datasets` library:
|
| 69 |
+
|
| 70 |
+
```python
|
| 71 |
+
from datasets import load_dataset
|
| 72 |
+
|
| 73 |
+
# Load the dataset
|
| 74 |
+
dataset = load_dataset("tiny-factories/logolens-industries")
|
| 75 |
+
|
| 76 |
+
# View a sample
|
| 77 |
+
print(dataset["train"][0])
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
---
|
| 81 |
+
|
| 82 |
+
## Dataset Creation
|
| 83 |
+
This dataset was created by curating industry classifications based on GICS standards. The descriptions and subcategories were verified to ensure alignment with real-world industry use cases.
|
| 84 |
+
|
| 85 |
+
---
|
| 86 |
+
|
| 87 |
+
## Considerations for Use
|
| 88 |
+
- **Biases**: This dataset is based on GICS classifications, which may not represent all industries globally.
|
| 89 |
+
- **Limitations**: Industry descriptions may overlap, and subcategories could vary based on different classification systems.
|
| 90 |
+
|
| 91 |
+
---
|
| 92 |
+
|
| 93 |
+
## Citation
|
| 94 |
+
```bibtex
|
| 95 |
+
@misc{logolens-industries,
|
| 96 |
+
author = {gndclouds},
|
| 97 |
+
title = {LogoLens Industries Dataset},
|
| 98 |
+
year = {2024}
|
| 99 |
+
}
|
| 100 |
+
```
|
| 101 |
+
|
| 102 |
+
---
|
| 103 |
+
|
| 104 |
+
## License
|
| 105 |
+
This dataset is licensed under the MIT License.
|