add multi trainings +fix path for coco retraining

This commit is contained in:
Philipp
2025-12-02 10:16:18 +01:00
parent 0e31237b79
commit de5a8d2028
24 changed files with 2933 additions and 4533 deletions

View File

@@ -553,7 +553,7 @@ document.getElementById('parameters-form').addEventListener('submit', async func
}
// Add project id if available
const urlParams = new URLSearchParams(window.location.search);
const projectId = urlParams.get('id');
const projectId = urlParams.get('project_id') || urlParams.get('id'); // Support both parameter names
if (projectId) formData.append('project_id', projectId);
// Send to backend
try {