feat: export PostgreSQL training dataset as JSON
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Failing after 17s
Validators (Pushes and Pull Requests) / validate-core (push) Failing after 54s

This commit is contained in:
2026-07-12 11:55:17 +09:00
parent e15e4c6e20
commit 49637f1b02
4 changed files with 61 additions and 0 deletions
@@ -0,0 +1,6 @@
namespace QuantEngine.Core.Interfaces;
public interface ILearningDatasetReader
{
Task<IReadOnlyList<IDictionary<string, object?>>> ReadTrainingExamplesAsync(int limit = 1000);
}