BigML.Client.CreateBatchTopicDistribution C# (CSharp) Method

CreateBatchTopicDistribution() public method

Create a BatchTopicDistribution.
public CreateBatchTopicDistribution ( DataSet dataset, string name = null, BatchTopicDistribution arguments = null ) : Task
dataset DataSet A DataSet instance
name string The name you want to give to the new batch topic distributions.
arguments BatchTopicDistribution Specifies the data that you want to predict.
return Task
        public Task<BatchTopicDistribution> CreateBatchTopicDistribution(DataSet dataset, string name = null,
                                            BatchTopicDistribution.Arguments arguments = null)
        {
            arguments = arguments ?? new BatchTopicDistribution.Arguments();
            if (!string.IsNullOrWhiteSpace(name))
                arguments.Name = name;
            arguments.DataSet = dataset.Resource;
            return Create<BatchTopicDistribution>(arguments);
        }

Same methods

Client::CreateBatchTopicDistribution ( BatchTopicDistribution arguments ) : Task