fix main tf dropdown

This commit is contained in:
Dobromir Popov
2025-12-10 12:02:37 +02:00
parent c7a37bf5f0
commit e0d0471e8a
2 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,12 @@
the problem we have is we have duplicate implementations.
we should have only one data provider implementation in the main /core folder and extend it there if we need more functionality
we need to fully move the Inference Training Coordinator functions in Orchestrator - both classes have overlaping responsibilities and only one should exist.
InferenceFrameReference also should be in core/data_models.py.
we do not need a core folder in ANNOTATE app. we should refactor and move the classes in the main /core folder. this is a design flaw. we should have only one "core" naturally. the purpose of ANNOTATE app is to provide UI for creating test cases and anotating data and also running inference and training. all implementations should be in the main system and only referenced and used in the ANNOTATE app
we do not need a core folder in ANNOTATE app. we should refactor and move the classes in the main /core folder. this is a design flaw. we should have only one "core" naturally.
the purpose of ANNOTATE app is to provide UI for creating test cases and anotating data and also running inference and training.
all implementations should be in the main system and only referenced and used in the ANNOTATE app
we should have only one data provider implementation in the main /core folder and extend it there if we need more functionality

View File

@@ -76,9 +76,8 @@
<select class="form-select form-select-sm" id="primary-timeframe-select">
<option value="1s">1 Second</option>
<option value="1m" selected>1 Minute</option>
<option value="5m">5 Minutes</option>
<option value="15m">15 Minutes</option>
<option value="1h">1 Hour</option>
<option value="1d">1 Day</option>
</select>
</div>