Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- tabular-data
|
4 |
+
- classification
|
5 |
+
- umkm
|
6 |
+
- culinary
|
7 |
+
- ofd
|
8 |
+
license: apache-2.0
|
9 |
+
---
|
10 |
+
|
11 |
+
# UMKM Culinary Dataset
|
12 |
+
|
13 |
+
This dataset supports the project *Denyut Nadi UMKM Digital: Klasifikasi Keberlanjutan Bisnis Kuliner Berbasis AI pada Platform OFD*. It contains data for classifying the sustainability of culinary businesses on Online Food Delivery (OFD) platforms.
|
14 |
+
|
15 |
+
## Files
|
16 |
+
- `Data_train.csv`: Training data for the model.
|
17 |
+
- `Data_test.csv`: Testing data for evaluation.
|
18 |
+
|
19 |
+
## Usage
|
20 |
+
|
21 |
+
```python
|
22 |
+
from datasets import load_dataset
|
23 |
+
|
24 |
+
# Load the dataset
|
25 |
+
dataset = load_dataset("thoriqsaputra/UMKM-Culinary-Dataset", data_files={"train": "Data_train.csv", "test": "Data_test.csv"})
|
26 |
+
|
27 |
+
# Access train and test splits
|
28 |
+
train_data = dataset["train"]
|
29 |
+
test_data = dataset["test"]
|
30 |
+
```
|
31 |
+
|
32 |
+
## Project Context
|
33 |
+
|
34 |
+
This dataset is used to train and evaluate a Voting Classifier model for assessing the sustainability of micro, small, and medium culinary enterprises (UMKM) on OFD platforms.
|