--- license: cc-by-4.0 configs: - config_name: thumbnails data_files: train/thumbnails/thumbnails_metadata.csv - config_name: videos data_files: train/videos/video_metadata.csv - config_name: timelapses data_files: train/timelapses/timelapses_metadata.csv size_categories: - 1K/*.mp4 ├── videos//*.mp4 └── thumbnails//*.jpg ``` ### Key fields | Field | Type | Description | |-------|------|-------------| | `video` | `datasets.features.Video()` | Timelapse clip (variable FPS & length) | | `contributor` | — | Identifier for the user who provided the timelapse. Used to group clips by origin and track contributions. | | `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 | ## Usage ```python from datasets import Video, load_dataset from decord.video_reader import VideoReader import matplotlib.pyplot as plt # Load the dataset (timelapse split) data = load_dataset("v2thegreat/bambu-timelapse-dataset", "timelapses") # Decode the 101st video (index 100) from the "file_name" column frame: VideoReader = data["train"].cast_column("file_name", Video())[100]["file_name"] # Display the final frame of the video plt.imshow(frame[-1].asnumpy()) plt.show() ``` ## 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.*