lavanya251104 commited on
Commit
bc21058
·
verified ·
1 Parent(s): addedc1

dataset_info.json

Browse files

Provides metadata about the dataset.

Describes:

Dataset description and license

Feature types (string, int32, float32) and their meaning

Train/test split sizes (num_examples)

Size category (n<1K)

📌 Use case:
This file allows frameworks like 🤗 Datasets library to automatically parse schema, splits, and metadata when loading the dataset.

Files changed (1) hide show
  1. dataset_info.json +53 -0
dataset_info.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "description": "The AI Battery Optimizer Dataset is a synthetic smartphone battery usage dataset created for research in energy optimization and ML-based app usage prediction.",
3
+ "citation": "@dataset{teamneuralbattery2025,\n author = {Aishwarya Singh and Lavanya Arora and Shreya Kathuria and Navya Jain},\n title = {AI Battery Optimizer Dataset},\n year = {2025},\n publisher = {Hugging Face},\n license = {CC-BY-4.0}\n}",
4
+ "homepage": "https://huggingface.co/datasets/teamneuralbattery/AI-Battery-Optimizer",
5
+ "license": "CC-BY-4.0",
6
+ "features": {
7
+ "timestamp": {
8
+ "dtype": "string",
9
+ "description": "UTC timestamp of the log entry"
10
+ },
11
+ "battery_percentage": {
12
+ "dtype": "int32",
13
+ "description": "Battery percentage remaining"
14
+ },
15
+ "power_usage_mw": {
16
+ "dtype": "int32",
17
+ "description": "Power usage in milliwatts"
18
+ },
19
+ "time_remaining_min": {
20
+ "dtype": "int32",
21
+ "description": "Estimated time remaining in minutes"
22
+ },
23
+ "predicted_app": {
24
+ "dtype": "string",
25
+ "description": "Predicted app to be opened next"
26
+ },
27
+ "confidence": {
28
+ "dtype": "float32",
29
+ "description": "Confidence score of the prediction (0\u20131)"
30
+ },
31
+ "brightness": {
32
+ "dtype": "int32",
33
+ "description": "Screen brightness percentage"
34
+ },
35
+ "fps": {
36
+ "dtype": "int32",
37
+ "description": "Frame rate setting (30 or 60 FPS)"
38
+ }
39
+ },
40
+ "splits": {
41
+ "train": {
42
+ "num_examples": 40,
43
+ "name": "train"
44
+ },
45
+ "test": {
46
+ "num_examples": 10,
47
+ "name": "test"
48
+ }
49
+ },
50
+ "size_categories": [
51
+ "n<1K"
52
+ ]
53
+ }