2 instantiations of ParameterSetWithId
Microsoft.ML.Sweeper (2)
AsyncSweeper.cs (2)
121return Task.FromResult(new ParameterSetWithId(_numGenerated++, paramSets[0])); 229_paramChannel.Writer.TryWrite(new ParameterSetWithId(_numGenerated++, paramSet));
14 references to ParameterSetWithId
Microsoft.ML.Sweeper (7)
AsyncSweeper.cs (7)
50Task<ParameterSetWithId> ProposeAsync(); 111public Task<ParameterSetWithId> ProposeAsync() 114return Task.FromResult<ParameterSetWithId>(null); 123return Task.FromResult<ParameterSetWithId>(null); 171private readonly Channel<ParameterSetWithId> _paramChannel; 211_paramChannel = Channel.CreateUnbounded<ParameterSetWithId>( 276public async Task<ParameterSetWithId> ProposeAsync()
Microsoft.ML.Sweeper.Tests (7)
TestSweeper.cs (7)
149var tResult = await task; 171var tResult = await task; 203var tasks = new List<Task<ParameterSetWithId>>(); 268var tasks = new Task<ParameterSetWithId>[sweeps]; 334var tResult = await task; 336var paramWithId = tResult; 391var paramWithId = await sweeper.ProposeAsync();