⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class1.cs

📁 用c#写的tf/idf代码
💻 CS
字号:
using System;
using System.Diagnostics;

namespace ServiceRanking
{
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	class Class1
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{			
			StopWordsHandler stopword=new StopWordsHandler() ;
			string[] doc=new string[4] {
										   "test b c c dd d d d d",
										   "a b c c c d dd d d test"
										,   "c d b f y teyr etre tretr gfgd c",
										"r a e e f n l i f f f f x l"
			};

			TFIDFMeasure tf=new TFIDFMeasure(doc) ;
			Trace.WriteLine((double)Math.Log(10000/50) ) ;
			Trace.WriteLine(tf.GetSimilarity(0, 1) ) ;
			string[] _3grams=NGram.GenerateNGrams("TEXT", 3) ;
			//
			// TODO: Add code to start application here
			//
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -