From 4c4550d58b1d5032c19b924dedfa91e22aed1f52 Mon Sep 17 00:00:00 2001 From: Kevin Date: Tue, 21 Apr 2026 18:35:20 +0800 Subject: [PATCH] chore: ignore Ultralytics local cache and drop from version control Add Ultralytics/ to .gitignore and remove tracked cache/settings JSON so they stay machine-local only. Made-with: Cursor --- .gitignore | 3 +++ Ultralytics/persistent_cache.json | 3 --- Ultralytics/settings.json | 21 --------------------- 3 files changed, 3 insertions(+), 24 deletions(-) delete mode 100644 Ultralytics/persistent_cache.json delete mode 100644 Ultralytics/settings.json diff --git a/.gitignore b/.gitignore index c6e5b5f..01e1070 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,6 @@ refs/ .idea/ .vscode/ .DS_Store + +# Ultralytics / YOLO: local cache and user settings (keep on machine only) +Ultralytics/ diff --git a/Ultralytics/persistent_cache.json b/Ultralytics/persistent_cache.json deleted file mode 100644 index 9df6e9a..0000000 --- a/Ultralytics/persistent_cache.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "cpu_info": "arm" -} \ No newline at end of file diff --git a/Ultralytics/settings.json b/Ultralytics/settings.json deleted file mode 100644 index d4aeea0..0000000 --- a/Ultralytics/settings.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "settings_version": "0.0.6", - "datasets_dir": "/Users/kevin/Codes/hgtk/operation-room-monitor-server/datasets", - "weights_dir": "/Users/kevin/Codes/hgtk/operation-room-monitor-server/weights", - "runs_dir": "/Users/kevin/Codes/hgtk/operation-room-monitor-server/runs", - "uuid": "d9d880555edc417ea917cbee7c9b11ddc98c4fc80cb7aa6f377c74fa8ed5b7c8", - "sync": true, - "api_key": "", - "openai_api_key": "", - "clearml": true, - "comet": true, - "dvc": true, - "hub": true, - "mlflow": true, - "neptune": true, - "raytune": true, - "tensorboard": false, - "wandb": false, - "vscode_msg": true, - "openvino_msg": true -} \ No newline at end of file