Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SimpleSummarizer" /> class.
        /// </summary>
        /// <param name="stopwordProvider">The stopword provider.</param>
        /// <param name="method">The summarization method.</param>
        public SimpleSummarizer(IStopwordProvider stopwordProvider, SimpleSummarizerMethods method) : base(stopwordProvider)
        {
            NumberOfSentences = 5;

            Method = method;
        }
Esempio n. 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SimpleSummarizer" /> class.
        /// </summary>
        /// <param name="stopwordProvider">The stopword provider.</param>
        /// <param name="method">The summarization method.</param>
        public SimpleSummarizer(IStopwordProvider stopwordProvider, SimpleSummarizerMethods method) : base(stopwordProvider) {
            NumberOfSentences = 5;

            Method = method;
        }