--- license: cc-by-4.0 configs: - config_name: thumbnails data_files: metadata/thumbnails_metadata.csv - config_name: videos data_files: metadata/video_metadata.csv - config_name: timelapses data_files: metadata/timelapses_metadata.csv - config_name: timelapses_video data_files: originals/timelapses/*/* task_categories: - feature-extraction size_categories: - 1K/*.mp4 ├── videos//*.mp4 └── thumbnails//*.jpg ``` ### Key fields | Field | Type | Description | |-------|------|-------------| | `video` | `datasets.features.Video()` | Timelapse clip (variable FPS & length) | | `label` | `ClassLabel` (int) | **Currently maps to contributor IDs** (`v2thegreat`, `Borillion`, `Similar‑Ad‑1223`). Will change to *print‑status* once manual annotation is complete. | | `duration` | `float` | Length in **minutes** (metadata CSV) | | `num_frames` | `int` | Number of frames in the file | | `extension` | `string` | `.mp4` or `.avi` | ### Splits | Split | # rows | |-------|--------| | `train` | 627 | (A validation/test split will be introduced after labeling.) ## Usage ```python from datasets import load_dataset, Video from decord import VideoReader import matplotlib.pyplot as plt # Load the timelapse split (stream locally or download on demand) ds = load_dataset( "v2thegreat/bambu-timelapse-dataset", "timelapses", split="train" ) # Cast the column to `Video()` objects and grab the first clip clip: VideoReader = ds.cast_column("timelapses", Video())[0]["timelapses"] # Display the final frame plt.imshow(clip[-1].asnumpy()) plt.axis("off") plt.show() ``` > **Tip:** pass `streaming=True` to `load_dataset` if you only need metadata or a subset of videos. ## How to Contribute 1. Download your Bambu timelapse from Bambu Studio, Handy App, or via FTP. 2. Check that it **only** contains the build plate (crop or blur personal items if needed). 3. Reach out to **@v2thegreat** via the Hugging Face "Community" tab or, even easier, open a Pull Request against this repo that adds your timelapses under `originals/timelapses//`. 4. *(Optional)* Include a CSV row with the columns `user,duration,extension,num_frames,relative_path`. Future releases will provide a small, labeled subset so the community can bootstrap better detectors. ## Licensing All content is released under the **Creative Commons Attribution 4.0 International (CC BY 4.0)** license. You are free to use the dataset in commercial or academic projects provided you give appropriate credit. ## Citation ```bibtex @misc{bambu_timelapse_2025, title = {Bambu Timelapse Dataset}, author = {Abbas, Ali and community contributors}, year = {2025}, howpublished = {\url{https://huggingface.co/datasets/v2thegreat/bambu-timelapse-dataset}}, note = {Version 1.0}, license = {CC-BY-4.0} } ``` ## Acknowledgements This project started with a [Reddit call‑for‑data](https://www.reddit.com/r/BambuLab_Community/comments/1ibf6c3/help_build_an_opensource_bambu_printfailure/) – thank you to everyone who donated timelapses and ideas. --- *Last updated: 2025‑04‑17 – 627 timelapses from 3 contributors.*