diff --git a/recommendation/README.md b/recommendation/README.md new file mode 100644 index 0000000..d9af1f8 --- /dev/null +++ b/recommendation/README.md @@ -0,0 +1,22 @@ +Two environments need to be configured before running the following code:
+1.nltk
+Run the following python code: + +import nltk
+nltk.download('wordnet')
+nltk.download('punkt')
+nltk.download('vader_lexicon') + +If the above code fails to run, you can try to manually download the relevant dataset and place it in the appropriate location.
+For example, after creating a folder named wordnet under the path (D:\nltk_data\corpora), you can download and unzip the wordnet dataset, and finally move the dataset to that folder. + +2.KAFKA
+The specific process of building kafka in local windows environment is as follows:
+First, install the kafka-python package via "pip install kafka-python -i https://pypi.tuna.tsinghua.edu.cn/simple".
+Secondly, download kafka via "http://mirrors.cloud.tencent.com/apache/kafka/".
+Next, extract the kafka files into a folder. You need to be careful not to set a very long path, otherwise it will generate an error. Enter the folder, open a cmd window for each of the following commands, and don't close it even after success.
+ (1) zookeeper-server-start.bat ... \... \config\zookeeper.properties
+ (2) kafka-server-start.bat ... \... \config\server.properties # load configuration
+ (3)kafka-console-producer.bat --broker-list 127.0.0.1:9092 --topic test #Start the producer
+ (4) kafka-console-consumer.bat --bootstrap-server 127.0.0.1:9092 --topic test --from-beginning #Start the consumer on port 9092.
+Finally, run a couple of simple demos you can find on the web to check if the installation was successful. diff --git a/recommendation/calculateRank.py b/recommendation/calculateRank.py new file mode 100644 index 0000000..cc461b3 --- /dev/null +++ b/recommendation/calculateRank.py @@ -0,0 +1,166 @@ +import pymysql as mysql +import re +from nltk.corpus import wordnet +from nltk.tokenize import word_tokenize +from nltk.sentiment import SentimentIntensityAnalyzer + +#tmp_department="Business Administration" +tmp_comment="" + +def mysqlConnect(): + #数据库连接 + conn = mysql.connect( + host='localhost', + user='root', + password='111', + database='findmyprof' + ) + return conn + +def universityScore(university): + #计算院校的分数,且院校属性占比40% + weight1=0.4 + if university: + university=int(university) + else: + return 0 + score1=float(university)*weight1 + return score1 + +def calculateSimilar(phrase1,phrase2): + #计算学生专业与教授研究领域的匹配程度(相似性) + tokens1 = word_tokenize(phrase1) + tokens2 = word_tokenize(phrase2) + # 使用NLTK的word_tokenize函数将短语分词,得到两个短语的词汇列表 + synsets1 = [] + synsets2 = [] + for token in tokens1: + synsets1.extend(wordnet.synsets(token)) + # 对于短语1中的每个词,使用NLTK的wordnet.synsets函数获取其同义词集合,并将其添加到synsets1列表中 + for token in tokens2: + synsets2.extend(wordnet.synsets(token)) + + max_sim = -1 + # 初始化最大相似度为-1 + for synset1 in synsets1: + for synset2 in synsets2: + sim = synset1.path_similarity(synset2) + # 使用synset1.path_similarity(synset2)计算两个同义词集合的路径相似度,并将结果存储在sim变量中 + + if sim is not None and sim > max_sim: + max_sim = sim + # 如果计算得到的相似度不为None且大于最大相似度,则更新最大相似度的值 + return max_sim + +def researchAreaScore(researchArea,tmp_department):#这里的researchArea暂用degree + #计算研究领域属性的分数,研究领域属性占比37% + weight2=0.37 + if researchArea is None: + return 0 + else: + phrase1=tmp_department + phrase2=re.split("in ",researchArea)[1]#暂用degree值代替researchArea值,因此需取degree后面部分 + #计算分词相似度 + max_sim=calculateSimilar(phrase1,phrase2) + score2=max_sim*weight2 + return score2 + +def evaluate_sentiment(comment): + #评估关于教授的网上评论的好坏程度 + sid = SentimentIntensityAnalyzer()# 初始化情感分析器 + sentiment_scores = sid.polarity_scores(comment)# 获取评论的情感分数 + good_bad_score = (sentiment_scores['pos'] - sentiment_scores['neg']) / 2 + 0.5# 根据情感分数计算好坏程度 + good_bad_score = max(0, min(1, good_bad_score))# 限定好坏程度范围在0至1之间 + return good_bad_score + +def webCommentScore(webComment): + #计算网上评论的分数,其中网上评论属性的占比为16% + weight3=0.16 + if webComment is None: + return 0 + else: + judge=evaluate_sentiment(webComment) + score3=judge*weight3 + return score3 + +def educationScore(education): + #计算教授的学术背景的分数,其中学术背景属性占比为7% + weight4=0.07 + if education is None: + return 0 + else: + #score4=int(education)*weight4 + score4 = 1.0 * weight4#目前education + return score4 + +def calculateRank(user_degree,name,university,researchArea,webComment,education): + #计算ranking值 + score1=universityScore(university) + score2=researchAreaScore(researchArea,user_degree) + score3=webCommentScore(webComment) + score4=educationScore(education) + score=score1+score2+score3+score4 + return score + +def writeInDataBase(ranks): + # 将结果写入数据库的result表 + mydb = mysqlConnect() + mycursor = mydb.cursor() + + sql1="drop table result;" + mycursor.execute(sql1) + mydb.commit() + + sql2="create table result ( `English Name` VARCHAR(100),ranking FLOAT)" + mycursor.execute(sql2) + mydb.commit() + + sql3 = "truncate table result;" + mycursor.execute(sql3) + mydb.commit() + + for key in ranks.keys(): + value=ranks[key] + value=round(value,3) + sql4 = "insert into result values(%s,%s);" + val = (key, value) + mycursor.execute(sql4, val) + mydb.commit() + + mycursor.close() + mydb.close() + + +def getData(user_degree): + # 获取数据库连接 + mydb = mysqlConnect() + mycursor = mydb.cursor() + + """sql = "select * from ust_web limit 5;" + mycursor.execute(sql) + #mydb.commit() + results=mycursor.fetchall() + for i in results: + print(i)""" + sql1="select `English Name`,Degree,Education from ust_web limit 32;" + mycursor.execute(sql1) + initial_data=mycursor.fetchall() + university=1 #目前所有教授均是hku,故设默认值为1 + result={} #用于存储ranking结果 + for i in initial_data: + rank=calculateRank(user_degree,i[0],university,i[1],tmp_comment,i[2]) + result[i[0]]=rank + #print(result) + + mycursor.close() + mydb.close() + + return result + + + +def main(id,user_degree): + result=getData(user_degree) + print("已计算出结果") + writeInDataBase(result) + print("已将"+"为ID:"+id+"的用户推荐的结果写入数据库result表内!") diff --git a/recommendation/calculateRank_csv.py b/recommendation/calculateRank_csv.py new file mode 100644 index 0000000..d12cd29 --- /dev/null +++ b/recommendation/calculateRank_csv.py @@ -0,0 +1,139 @@ +import csv +import re +from nltk.corpus import wordnet +from nltk.tokenize import word_tokenize +from nltk.sentiment import SentimentIntensityAnalyzer + +file_path='E:/FindMyProf/prof_data.csv'#教授数据文件的路径 +save_path='E:/FindMyProf/result.csv'#结果文件的路径 + +def universityScore(university): + #计算院校的分数,且院校属性占比40% + weight1=0.4 + if university: + university=int(university) + else: + return 0 + score1=float(university)*weight1 + return score1 + +def calculateSimilar(phrase1,phrase2): + #计算学生专业与教授研究领域的匹配程度(相似性) + tokens1 = word_tokenize(phrase1) + tokens2 = word_tokenize(phrase2) + # 使用NLTK的word_tokenize函数将短语分词,得到两个短语的词汇列表 + synsets1 = [] + synsets2 = [] + for token in tokens1: + synsets1.extend(wordnet.synsets(token)) + # 对于短语1中的每个词,使用NLTK的wordnet.synsets函数获取其同义词集合,并将其添加到synsets1列表中 + for token in tokens2: + synsets2.extend(wordnet.synsets(token)) + + max_sim = -1 + # 初始化最大相似度为-1 + for synset1 in synsets1: + for synset2 in synsets2: + sim = synset1.path_similarity(synset2) + # 使用synset1.path_similarity(synset2)计算两个同义词集合的路径相似度,并将结果存储在sim变量中 + + if sim is not None and sim > max_sim: + max_sim = sim + # 如果计算得到的相似度不为None且大于最大相似度,则更新最大相似度的值 + return max_sim + +def researchAreaScore(researchArea,tmp_department):#这里的researchArea暂用degree + #计算研究领域属性的分数,研究领域属性占比37% + weight2=0.37 + if researchArea is None: + return 0 + else: + phrase1=tmp_department + phrase2=re.split("in ",researchArea)[1]#暂用degree值代替researchArea值,因此需取degree后面部分 + #计算分词相似度 + max_sim=calculateSimilar(phrase1,phrase2) + score2=max_sim*weight2 + return score2 + +def evaluate_sentiment(comment): + #评估关于教授的网上评论的好坏程度 + sid = SentimentIntensityAnalyzer()# 初始化情感分析器 + sentiment_scores = sid.polarity_scores(comment)# 获取评论的情感分数 + good_bad_score = (sentiment_scores['pos'] - sentiment_scores['neg']) / 2 + 0.5# 根据情感分数计算好坏程度 + good_bad_score = max(0, min(1, good_bad_score))# 限定好坏程度范围在0至1之间 + return good_bad_score + +def webCommentScore(webComment): + #计算网上评论的分数,其中网上评论属性的占比为16% + weight3=0.16 + if webComment is None: + return 0 + else: + judge=evaluate_sentiment(webComment) + score3=judge*weight3 + return score3 + +def educationScore(education): + #计算教授的学术背景的分数,其中学术背景属性占比为7% + weight4=0.07 + if education is None: + return 0 + else: + #score4=int(education)*weight4 + score4 = 1.0 * weight4#目前education + return score4 + +def calculateRank(user_degree,name,university,researchArea,webComment,education): + # 计算ranking值 + score1 = universityScore(university) + score2 = researchAreaScore(researchArea, user_degree) + score3 = webCommentScore(webComment) + score4 = educationScore(education) + score = score1 + score2 + score3 + score4 + return score + +def getData(user_degree): + university=1#目前所有教授均是hku,故设默认值为1 + tmp_comment=""#目前没有关于教授的网上评论,故设为空 + result={} #用于存储ranking结果 + + with open(file_path, 'r') as file:#文件路径 + reader = csv.reader(file) # 创建csv reader对象 + for i, row in enumerate(reader): # 逐行读取csv文件的内容 + # 读取前32行内容 + if i == 0: + continue + else: + rank = calculateRank(user_degree, row[1], university, row[2], tmp_comment, row[3]) + keyword=row[0]+"!"+row[1] + result[keyword] = rank + """elif i <= 32: + #print(row) + rank = calculateRank(user_degree, row[1], university, row[2], tmp_comment, row[3]) + keyword = row[0] + "!" + row[1] + result[keyword] = rank + else: + break""" + + + return result + +def write_csv_file(ranks): + with open(save_path, 'w+', newline='') as file: + writer = csv.writer(file) + writer.writerow(['ID','English Name', 'ranking']) + + for key in ranks.keys(): + keyId=re.split("!",key)[0] + value1=re.split("!",key)[1] + value2 = ranks[key] + value2 = round(value2, 3) + writer.writerow([keyId, value1,value2]) + +def main(id,user_degree): + result = getData(user_degree) + print("已计算出结果") + write_csv_file(result) + print("已将" + "为ID:" + id + "的用户推荐的结果写入result.csv内!") + +main("1234","Business Administration")#用于调试 \ No newline at end of file diff --git a/recommendation/consumer.py b/recommendation/consumer.py new file mode 100644 index 0000000..a7dec79 --- /dev/null +++ b/recommendation/consumer.py @@ -0,0 +1,15 @@ +import calculateRank_csv +import resultSorted +import re +from kafka import KafkaConsumer + +consumer=KafkaConsumer("test",bootstrap_servers='localhost:9092') + +for i in consumer: + print(i) + record=i.value.decode() + ID=re.split(",",record)[0] + degree=re.split(",",record)[1] + n=re.split(",",record)[2] + calculateRank_csv.main(ID,degree)#所有教授的ranking结果 + resultSorted.sort_csv_by_column(n)#评分最高的n名教授的ranking结果 diff --git a/recommendation/consumer_test.py b/recommendation/consumer_test.py new file mode 100644 index 0000000..ff845ac --- /dev/null +++ b/recommendation/consumer_test.py @@ -0,0 +1,12 @@ +import calculateRank +import re +from kafka import KafkaConsumer + +consumer=KafkaConsumer("test",bootstrap_servers='localhost:9092') + +for i in consumer: + print(i) + record=i.value.decode() + ID=re.split(",",record)[0] + degree=re.split(",",record)[1] + calculateRank.main(ID,degree) diff --git a/recommendation/producer.py b/recommendation/producer.py new file mode 100644 index 0000000..8f03ceb --- /dev/null +++ b/recommendation/producer.py @@ -0,0 +1,17 @@ +from kafka import KafkaProducer + +producer = KafkaProducer(bootstrap_servers='localhost:9092') #连接kafka + +id=input("What is your ID?") +#academicStatus=input("What is your academic status?") +#faculty=input("What is your faculty?") +program=input("What is your program?") +#major=input("What is your major?") +#interest=input("What is your research interest?") +n=input("How many recommendations do you need to show you? Please fill in the integer.") + +msg=id+","+program+","+n +msg = msg.encode('utf-8') +producer.send('test', msg) + +producer.close() \ No newline at end of file diff --git a/recommendation/producer_test.py b/recommendation/producer_test.py new file mode 100644 index 0000000..b063fde --- /dev/null +++ b/recommendation/producer_test.py @@ -0,0 +1,16 @@ +from kafka import KafkaProducer + +producer = KafkaProducer(bootstrap_servers='localhost:9092') #连接kafka + +id=input("What is your ID?") +#academicStatus=input("What is your academic status?") +#faculty=input("What is your faculty?") +program=input("What is your program?") +#major=input("What is your major?") +#interest=input("What is your research interest?") + +msg=id+","+program +msg = msg.encode('utf-8') +producer.send('test', msg) + +producer.close() \ No newline at end of file diff --git a/recommendation/prof_data.csv b/recommendation/prof_data.csv new file mode 100644 index 0000000..eaac3a3 --- /dev/null +++ b/recommendation/prof_data.csv @@ -0,0 +1,832 @@ +ID,English Name,Degree,Education,Phone,Email,Room,Region,Serving School,Title,Research Area,Citation(last 3yrs),h_index(last 3yrs),i10_index(last 3yrs),Associated Organization +1,Nancy Yuk-Yu IP,PhD in Pharmacology,"Harvard University, 1983",(852) 2358 6101,boip@ust.hk,Room 6349,,,,,13357,43,157, +2,Yike GUO,PhD in Computational Logic,"Imperial College London, 1994",(852) 2358 6122,yikeguo@ust.hk,Room 6336,,,,,13632,54,195, +3,Ting Chuen PONG,PhD in Computer Science,"Virginia Polytechnic Institute and State University, 1984",(852) 2358 6974,tcpong@ust.hk,Room 3544,,,,,1940,19,30, +4,Tim Kwang-Ting CHENG,PhD in Electrical Engineering and Computer Sciences,"Berkeley, 1988",(852) 2358 6161,timcheng@ust.hk,Room 6359,,,,,8438,41,135, +5,Yang WANG,PhD in Mathematics,"Harvard University, 1990",(852) 2358 5956,yangwang@ust.hk,Room 6358,,,,,169,6,2, +6,Penger TONG,PhD in Physics,"University of Pittsburgh, 1988",(852) 2358 7498,penger@ust.hk,Room 4456,,,,,2644,28,81, +7,Jimmy Chi Hung FUNG,PhD in Applied Mathematics and Theoretical Physics,"University of Cambridge, 1991",(852) 2358 7419,majfung@ust.hk,Room 3452,,,,,5197,36,105, +8,Che Ting CHAN,PhD in Physics,"Berkeley, 1985",(852) 2358 7487,phchan@ust.hk,Room 4449,,,,,18830,61,242, +9,Yung Hou WONG,PhD in Pharmacology,"University of Cambridge, 1989",(852) 2358 7328,boyung@ust.hk,Room 6520,,,,,6126,38,76, +10,Hong Kam LO,PhD in Civil Engineering,"The Ohio State University, 1991",(852) 2358 6952,cehklo@ust.hk,Room 6548,,,,,4405,36,118, +11,Kar Yan TAM,PhD in Management Information Systems,"Purdue University, 1988",(852) 2358 8282,kytam@ust.hk,Room LSK7014,,,,,2126,24,31, +12,Kellee Sing TSAI,PhD in Political Science,"Columbia University, 1999",(852) 2358 7777,ktsai@ust.hk,Room 3364,,,,,1766,20,29, +13,Huamin QU,PhD in Computer Science,"The State University of New York at Stony Brook, 2004",(852) 2358 6985,huamin@ust.hk,Room 2529,,,,,7381,49,159, +14,Kam Biu LUK,PhD in Experimental Particle Physics,"The State University of New Jersey, 1983",(852) 3469 2363,kbluk@ust.hk,Room IAS4001,,,,,0,0,0, +15,Charles Wang Wai NG,PhD in Civil Engineering,"University of Bristol, 1993",(852) 2358 8760,cecwwng@ust.hk,Room 4600,,,,,15988,65,366, +16,King Lau CHOW,PhD in Cell Biology,"Baylor College of Medicine, 1990",(852) 2358 7342,bokchow@ust.hk,Room 5032,,,,,1088,16,19, +17,Kai Lung HUI,PhD in Information Systems,"The Hong Kong University of Science and Technology, 2000",(852) 2358 7641,klhui@ust.hk,Room LSK4020,,,,,2126,24,31, +18,Yuk Fai FONG,PhD in Economics,"Boston University, 2003",(852) 2358 7612,yfong@ust.hk,Room LKS6006,,,,,234,8,6, +19,Stuart GIETEL-BASTEN,PhD in Historical Demography,"University of Cambridge, 2008",(852) 3469 2688,sgb@ust.hk,Room 2358,,,,,1620,21,46, +20,Allen Hao HUANG,PhD in Business Administration,"Duke University, 2007",(852) 2358 7559,acahuang@ust.hk,Room LSK6013,,,,,2246,12,12, +21,Arthur Pui Sang LAU,PhD in Biology,"The Hong Kong University of Science and Technology, 1995",(852) 2358 6915,pslau@ust.hk,Room 4361,,,,,8771,50,159, +22,Kam Tuen LAW,PhD in Condensed Matter Theory,"Brown University, 2008",(852) 2358 7970,phlaw@ust.hk,Room 4471,,,,,5595,39,69, +23,Pak Wo LEUNG,PhD in Physics,"Cornell University, 1990",(852) 2358 7483,phleung@ust.hk,Room 1401,,,,,10156,40,181, +24,Yi-Min LIN,PhD in Organisation Study,"Yale University, 1991",(852) 2358 7816,soyimin@ust.hk,Room 2357,,,,,264,8,8, +25,Ho Yi MAK,PhD in Molecular Pathology,"University of London, 2000",(852) 2358 8785,hym@ust.hk,Room 5437,,,,,33,2,1, +26,Kira MATUS,PhD in Public Policy,"Harvard University, 2009",(852) 3469 2730,kmatus@ust.hk,Room 4616D,,,,,22,1,1, +27,Wai Ho MOW,PhD in Information Engineering,"The Chinese University of Hong Kong, 1993",(852) 2358 7070,eewhmow@ust.hk,Room 6546,,,,,1666,22,45, +28,Zhi NING,PhD in Environmental Engineering,"University of Southern California, 2009",(852) 3469 2207,zhining@ust.hk,Room 4356,,,,,6585,36,96, +29,Stephen Lee SHIH,PhD in Environmental Engineering,,(852) 2358 7534,stephenshih@ust.hk,Room LSK2011,,,,,191,8,7, +30,Richard Hau Yue SO,PhD in Engineering and Applied Sciences,"University of Southampton, 1995",(852) 2358 6961,rhyso@ust.hk,Room 5604,,,,,0,0,0, +31,Yu-Hsing WANG,PhD in Civil Engineering,"The Georgia Institute of Technology, 2001",(852) 2358 8757,ceyhwang@ust.hk,Room 3572,,,,,1984,21,39, +32,Melinda Karen WHONG,PhD in Second Language Acquisition,"University of Durham, 2005",(852) 2358 7878,lcmwhong@ust.hk,Room 3380,,,,,344,8,7, +33,James Ka Lei WONG,PhD in Government,"The London School of Economics and Political Science, 2013",(852) 2358 7836,jameskalei@ust.hk,Room 3370,,,,,0,0,0, +34,Ben Yui Bun CHAN,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2008",(852) 2358 8226,ybchan@ust.hk,Room 6583,,,,,1849,24,40, +35,Leung Yuk Frank LAM,PhD in Chemical Engineering,"The Hong Kong University of Science and Technology, 2005",(852) 2358 7239,kefrank@ust.hk,Room 5580,,,,,0,0,0, +36,Yongshun CAI,PhD in Political Science,"Stanford University, 2001",(852) 2358 7782,socai@ust.hk,Room 2375,,,,,1471,19,24, +37,Jianping GAN,PhD in Physical Oceanography,"McGill University, 1995",(852) 2358 7421,magan@ust.hk,Room 3451,,,,,3424,34,77, +38,Yaping GONG,PhD in Human Resources Management and Organizational Behavior,"The Ohio State University, 2002",(852) 2358 7748,mnygong@ust.hk,Room LSK5015,,,,,71,3,1, +39,Jiewen HONG,PhD in Marketing,"Northwestern University, 2008",(852) 2358 7694,mkjiewen@ust.hk,Room LSK4013,,,,,739,10,10, +40,Ming Yi HUNG,PhD in Accounting,"Massachusetts Institute of Technology, 1998",(852) 2358 7552,acmy@ust.hk,Room LSK6023,,,,,4945,20,26, +41,Alexis Kai Hon LAU,PhD in Atmospheric and Oceanic Sciences,"Princeton University, 1991",(852) 2358 6944,alau@ust.hk,Room 4332,,,,,8771,50,159, +42,Steven B. MILES,PhD in History,"University of Washington, 2000",(852) 2358 8938,hmsbmiles@ust.hk,Room 2376,,,,,124,4,3, +43,Andrew Wing On POON,PhD in Physics,"Yale University, 2001",(852) 2358 7905,eeawpoon@ust.hk,Room 2432,,,,,1323,20,36, +44,Minhua SHAO,PhD in Materials Science and Engineering,"The State University of New York at Stony Brook, 2006",(852) 3469 2269,kemshao@ust.hk,Room CYT2006,,,,,0,0,0, +45,Qingping SUN,PhD in Solid Mechanics,"Tsinghua University, 1989",(852) 2358 7182,meqpsun@ust.hk,Room 2576,,,,,3784,35,92, +46,Jiannong WANG,PhD in Physics,"University of Bristol, 1990",(852) 2358 7506,phjwang@ust.hk,Room 4436,,,,,3533,28,72, +47,Kun XU,PhD in Astronomy,"Columbia University, 1993",(852) 2358 7433,makxu@ust.hk,Room 3444,,,,,5401,39,125, +48,Chu ZHANG,PhD in Finance,"The University of Chicago, 1992",(852) 2358 7684,czhang@ust.hk,Room LSK5006,,,,,654,13,16, +49,Jiheng ZHANG,PhD in Industrial Engineering,"Georgia Institute of Technology, 2009",(852) 2358 7092,jiheng@ust.hk,Room 5538,,,,,406,12,13, +50,Li Min ZHANG,PhD in Geotechnical Engineering,"Chengdu University of Science and Technology, 1989",(852) 2358 8720,cezhangl@ust.hk,Room 3575,,,,,14244,62,269, +51,Xiaofang ZHOU,PhD in Computer Science,"The University of Queensland, 1994",(852) 2358 8340,zxf@ust.hk,Room 3531,,,,,0,0,0, +52,David Edward COOK,PhD in Economics,"Madison, 1996",(852) 2358 7614,davcook@ust.hk,Room LSK6079,,,,,1851,24,59, +53,Robert Kam Ming KO,PhD in Pharmacology,"The University of British Columbia, 1990",(852) 2358 7298,bcrko@ust.hk,Room 5534,,,,,0,0,0, +54,Wa Hung LEUNG,PhD in Chemistry,"The University of Hong Kong, 1989",(852) 2358 7360,chleung@ust.hk,Room 4538,,,,,842,15,28, +55,Naubahar SHARIF,PhD in Science and Technology Studies,"Cornell University, 2005",(852) 2358 7826,sosn@ust.hk,Room 4616B,,,,,708,14,18, +56,Qian ZHANG,PhD in Computer Science,"Wuhan University, 1999",(852) 2358 8766,qianzh@ust.hk,Room 3544,,,,,0,0,0, +57,Qing LI,PhD in Management Science,"The University of British Columbia, 2001",(852) 2358 7749,imqli@ust.hk,Room LSK4077,,,,,338,8,7, +58,Jack Chin Pang CHENG,PhD in Civil and Environmental Engineering,"Stanford University, 2009",(852) 2358 8186,cejcheng@ust.hk,Room 4604,,,,,11352,64,150, +59,Henry Hei Ning LAM,PhD in Chemical Engineering,"Massachusetts Institute of Technology, 2005",(852) 2358 7133,kehlam@ust.hk,Room 4561,,,,,4164,29,50, +60,Zhigang LI,PhD in Mechanical Engineering,"University of Delaware, 2005",(852) 2358 7186,mezli@ust.hk,Room 2561,,,,,0,0,0, +61,Tiezheng QIAN,PhD in Theoretical Physics,"Chinese Academy of Sciences, 1997",(852) 2358 7443,maqian@ust.hk,Room 3437,,,,,1660,18,25, +62,Gang WANG,PhD in Geotechnical Engineering,"Berkeley, 2005",(852) 2358 7161,gwang@ust.hk,Room 3592,,,,,2766,35,77, +63,Raymond Chi Wing WONG,PhD in Computer Science and Engineering,"The Chinese University of Hong Kong, 2008",(852) 2358 6982,raywong@ust.hk,Room 3541,,,,,2685,30,73, +64,Tom CHEUNG,PhD in Biochemistry,"University of Colorado at Boulder, 2006",(852) 2358 7306,tcheung@ust.hk,Room 5520,,,,,3760,25,34, +65,Xiaojuan MA,PhD in Computer Science,"Princeton University, 2010",(852) 2358 6991,mxj@ust.hk,Room 3507,,,,,4140,34,107, +66,Nora Anniesha Binte HUSSIN,PhD in Applied Linguistics,"The University of Hong Kong, 2009",(852) 2358 8149,lcnora@ust.hk,Room 3314,,,,,0,0,0, +67,Khaled BEN LETAIEF,PhD in Electrical Engineering,"Purdue University, 1990",(852) 2358 7064,eekhaled@ust.hk,Room 2439,,,,,21931,57,223, +68,Ricky Shi-wei LEE,PhD in Aeronautical and Astronautical Engineering,"Purdue University, 1992",(86) 20 8833,rickylee@ust.hk,Room W2,,,,,0,0,0, +69,Bertram Emil SHI,PhD in Electrical Engineering,"Berkeley, 1994",(852) 2358 7079,eebert@ust.hk,Room 2393,,,,,2878,23,46, +70,Steven John DEKREY,PhD in School and Sport Psychology,"The University of Iowa, 1982",(852) 2358 7550,sjdekrey@ust.hk,Room LSK3011,,,,,0,0,0, +71,Guojun BU,PhD in Biochemistry,"Virginia Polytechnic Institute and State University, 1990",(852) 2358 8631,gbu@ust.hk,Room 5453,,,,,4103,20,25, +72,Man Sun CHAN,PhD in Electrical Engineering,"Berkeley, 1995",(852) 2358 8519,mchan@ust.hk,Room 2519,,,,,6888,34,147, +73,Ying Ju CHEN,PhD in Operations Management,"New York University, 2007",(852) 2358 7758,imchen@ust.hk,Room LSK4076,,,,,3289,31,77, +74,Andrew Glen COHEN,PhD in Physics,"Harvard University, 1986",(852) 2358 5060,acohen@ust.hk,Room IAS5001,,,,,1090,6,6, +75,Xi DAI,PhD in Theoretical Physics,"Chinese Academy of Sciences, 1999",(852) 2358 7479,daix@ust.hk,Room 4422,,,,,31919,70,152, +76,Sam GARG,PhD in Management Science and Engineering,"Stanford University, 2011",(852) 2358 6001,samgarg@ust.hk,Room LSK5014,,,,,600,9,9, +77,Mohamed Salah GHIDAOUI,PhD in Civil Engineering,"University of Toronto, 1993",(852) 2358 7174,ghidaoui@ust.hk,Room 3569,,,,,247,5,4, +78,Albert Yiu Cheung HA,PhD in Business,"Stanford University, 1992",(852) 2358 7724,imayha@ust.hk,Room LSK4023,,,,,2089,23,76, +79,Yan JI,PhD in Economics,"Massachusetts Institute of Technology, 2017",(852) 2358 8298,jiy@ust.hk,Room LSK5009,,,,,637,9,9, +80,James LEE,PhD in History,"The University of Chicago, 1983",(852) 2358 7779,jqljzl@ust.hk,Room 2384,,,,,1061,16,31, +81,Jiatao LI,PhD in Management,"The University of Texas at Dallas, 1992",(852) 2358 7757,mnjtli@ust.hk,Room LSK5024,,,,,5662,39,71, +82,Anirban MUKHOPADHYAY,PhD in Marketing,"Columbia University, 2004",(852) 2358 7708,mkmukhop@ust.hk,Room LSK4002,,,,,1418,19,29, +83,Sir Christopher PISSARIDES,PhD in Economics,"The London School of Economics and Political Science, 1974",(852) 2358 8345,cpissarides@ust.hk,Room IAS3009,,,,,39190,36,63, +84,Peiyuan QIAN,PhD in Marine Biology,"University of Alberta, 1991",(852) 2358 7331,boqianpy@ust.hk,Room 5443,,,,,12184,49,322, +85,Jaideep SENGUPTA,PhD in Management,"Los Angeles, 1996",(852) 2358 7718,mkjaisen@ust.hk,Room LSK4006,,,,,22,2,1, +86,Mengze SHI,PhD in Industrial Administration,"Carnegie Mellon University, 1997",(852) 2358 7650,mengzeshi@ust.hk,Room LSK4050,,,,,1467,19,23, +87,James Yeong Liang THONG,PhD in Information Systems,"National University of Singapore, 1997",(852) 2358 7633,jthong@ust.hk,Room LSK4066,,,,,0,0,0, +88,Gunther UHLMANN,PhD in Mathematics,"Massachusetts Institute of Technology, 1976",(852) 3469 2460,gunther@ust.hk,Room IAS4010,,,,,7194,44,171, +89,Ting XIE,PhD in Molecular Biology and Biochemistry,"and the University of Medicine and Dentistry of New Jersey, 1996",(852) 3469 2792,tgx@ust.hk,Room 5467,,,,,1215,15,16, +90,Yuan XIE,PhD in Computer Engineering,"Princeton University, 2002",(852) 3469 3062,yuanxie@ust.hk,Room CYT3011,,,,,22579,71,360, +91,Lianke YAN,PhD in Computer Engineering,,(852) 3469 2350,yanlianke@ust.hk,Room IAS1016,,,,,166,8,7, +92,Xin ZHANG,PhD in Fluid Mechanics,"University of Cambridge, 1991",(852) 3469 2220,aexzhang@ust.hk,Room 2577C,,,,,162,6,4, +93,Utpal BHATTACHARYA,PhD in Finance,"Columbia University, 1990",(852) 2358 8498,ubhattac@ust.hk,Room LSK5007,,,,,2707,22,30, +94,Cameron Dougall CAMPBELL,PhD in Demography and Sociology,"University of Pennsylvania, 1995",(852) 2358 7776,camcam@ust.hk,Room 3345,,,,,767,14,26, +95,Guanghao CHEN,PhD in Demography and Sociology,,(852) 2358 8752,ceghchen@ust.hk,Room 3578,,,,,7975,47,185, +96,Kevin Chien-Wen CHEN,PhD in Accountancy,"Champaign, 1985",(852) 2358 7585,acchen@ust.hk,Room LSK6024,,,,,0,0,0, +97,Kevin Jing CHEN,PhD in Electrical Engineering,"The University of Maryland, 1993",(852) 2358 8969,eekjchen@ust.hk,Room 2421,,,,,11710,50,244, +98,Lei CHEN,PhD in Computer Science,"University of Waterloo, 2005",(852) 2358 6980,leichen@ust.hk,Room 3561,,,,,13522,56,268, +99,Shing Chi CHEUNG,PhD in Computing,"Imperial College London, 1994",(852) 2358 7016,sccheung@ust.hk,Room 2534,,,,,4211,30,72, +100,Zhiyong FAN,PhD in Interdisciplinary Materials Science,"Irvine, 2006",(852) 2358 8027,eezfan@ust.hk,Room 2523,,,,,13589,66,189, +101,Pascale FUNG,PhD in Computer Science,"Columbia University, 1997",(852) 2358 8537,pascale@ust.hk,Room 2454,,,,,12925,49,157, +102,Furong GAO,PhD in Chemical Engineering,"McGill University, 1993",(852) 2358 7139,kefgao@ust.hk,Room 4558,,,,,8919,46,208, +103,Vidhan Krishan GOYAL,PhD in Finance,"University of Pittsburgh, 1994",(852) 2358 7678,goyal@ust.hk,Room LSK5011,,,,,5731,21,22, +104,Charles Youyang HSU,PhD in Accounting,"Purdue University, 2004",(852) 2358 7568,achsu@ust.hk,Room LSK6022,,,,,959,12,13, +105,Lancelot Fitzgerald JAMES,PhD in Statistics,"The State University of New York at Buffalo, 1993",(852) 2358 7742,lancelot@ust.hk,Room LSK4022,,,,,0,0,0, +106,Guocheng JIA,PhD in Chemistry,"The Ohio State University, 1989",(852) 2358 7361,chjiag@ust.hk,Room CYT6009,,,,,56,5,1, +107,Vincent Kin Nang LAU,PhD in Electrical Engineering,"University of Cambridge, 1998",(852) 2358 7066,eeknlau@ust.hk,Room 2416,,,,,7461,41,156, +108,Bo LI,PhD in Electrical and Computer Engineering,"University of Massachusetts, 1993",(852) 2358 6976,bli@ust.hk,Room 2535,,,,,12970,44,417, +109,Weiping LI,PhD in Mathematics,"Columbia University, 1991",(852) 2358 7432,mawpli@ust.hk,Room 3444,,,,,0,0,0, +110,Xiaoyuan LI,PhD in Chemistry,"Princeton University, 1988",(852) 2358 7356,chxyli@ust.hk,Room 4516,,,,,11724,54,199, +111,Yingying LI,PhD in Statistics,"The University of Chicago, 2008",(852) 2358 7744,yyli@ust.hk,Room LSK4070,,,,,936,14,14, +112,Zhenyang LIN,PhD in Chemistry,"University of Oxford, 1990",(852) 2358 7379,chzlin@ust.hk,Room 4518,,,,,49,4,2, +113,Shiqing LING,PhD in Statistics,"The University of Hong Kong, 1997",(852) 2358 7459,maling@ust.hk,Room 3460,,,,,1530,20,41, +114,Hongbin LIU,PhD in Oceanography,"University of Hawaii, 1997",(852) 2358 7341,liuhb@ust.hk,Room CYT5002,,,,,0,0,0, +115,Irene Man Chi LO,PhD in Civil Engineering,"The University of Texas at Austin, 1992",(852) 2358 7157,cemclo@ust.hk,Room 3570,,,,,201,9,9, +116,Ross MURCH,PhD in Electrical and Electronic Engineering,"University of Canterbury, 1990",(852) 2358 7044,eermurch@ust.hk,Room 2417,,,,,5373,39,118, +117,Tai Kai NG,PhD in Physics,"Northwestern University, 1987",(852) 2358 7477,phtai@ust.hk,Room 4432,,,,,2221,15,27, +118,Albert Francis PARK,PhD in Applied Economics,"Stanford University, 1996",(852) 2358 5981,albertpark@ust.hk,Room LSK6077,,,,,3196,32,60, +119,Randy Yat Choi POON,PhD in Biochemistry,"University of Cambridge, 1994",(852) 2358 8703,rycpoon@ust.hk,Room 5526,,,,,0,0,0, +120,Karl Wah Keung TSIM,PhD in Molecular Neurobiology,"University of Cambridge, 1988",(852) 2358 7332,botsim@ust.hk,Room 5456,,,,,7722,42,83, +121,Fugee TSUNG,PhD in Industrial and Operations Engineering,"University of Michigan, 1997",(852) 2358 7097,season@ust.hk,Room 5546,,,,,3563,34,84, +122,Ning WANG,PhD in Materials Physics,"University of Science and Technology Beijing, 1990",(852) 2358 7489,phwang@ust.hk,Room 4442,,,,,7132,44,145, +123,Danyang XIE,PhD in Economics,"The University of Chicago, 1992",(852) 2358 7622,dxie@ust.hk,,,,,,946,12,14, +124,Henry He YAN,PhD in Chemistry,"Northwestern University, 2004",(852) 2358 7366,hyan@ust.hk,Room CYT6003,,,,,32670,90,283, +125,Hai YANG,PhD in Chemistry,,(852) 2358 7178,cehyang@ust.hk,Room 3597,,,,,14708,61,254, +126,Dit Yan YEUNG,PhD in Computer Science,"University of Southern California, 1989",(852) 2358 6977,dyyeung@ust.hk,Room 3542,,,,,22262,52,121, +127,Jianzhen YU,PhD in Atmospheric Chemistry,"The University of North Carolina at Chapel Hill, 1996",(852) 2358 7389,chjianyu@ust.hk,Room 4534,,,,,8023,52,178, +128,Fumin ZHANG,PhD in Electrical Engineering,"The University of Maryland, 2004",(852) 3469 3088,eefumin@ust.hk,Room UC114,,,,,0,0,0, +129,Rachel Quan ZHANG,PhD in Industrial Engineering and Management Sciences,"Northwestern University, 1994",(852) 2358 7113,rzhang@ust.hk,Room 5584,,,,,993,15,22, +130,Tianshou ZHAO,PhD in Mechanical Engineering,"University of Hawaii, 1995",(852) 2358 8647,metzhao@ust.hk,Room 2594,,,,,15225,55,342, +131,Shaohui ZHENG,PhD in Operations Research,"Columbia University, 1994",(852) 2358 7751,imzheng@ust.hk,Room LSK4014,,,,,333,10,11, +132,Zexiang LI,PhD in Engineering,"Berkeley, 1989",(852) 2358 7051,eezxli@ust.hk,Room UC110,,,,,0,0,0, +133,Michael Scott ALTMAN,PhD in Physics,"Brown University, 1988",(852) 2358 7478,phaltman@ust.hk,Room 4457,,,,,85,5,1, +134,David Karl BANFIELD,PhD in Biochemistry,"The University of British Columbia, 1991",(852) 2358 8633,bodkb@ust.hk,Room 5441,,,,,0,0,0, +135,Jianfeng CAI,PhD in Mathematics,"The Chinese University of Hong Kong, 2007",(852) 3469 2248,jfcai@ust.hk,Room 3436,,,,,5986,31,58, +136,Gary Shueng Han CHAN,PhD in Electrical Engineering,"Stanford University, 1999",(852) 2358 6990,gchan@ust.hk,Room 2539,,,,,39,4,1, +137,Ho Bun CHAN,PhD in Physics,"Massachusetts Institute of Technology, 1999",(852) 2358 7493,hochan@ust.hk,Room 4421,,,,,3178,29,88, +138,Simon Wan CHAN,PhD in Bioanalytical Chemistry,"Hong Kong Baptist University, 2007",(852) 2358 7370,chanwan@ust.hk,Room 4517,,,,,2500,27,65, +139,Huai-Liang CHANG,PhD in Mathematics,"Stanford University, 2007",(852) 2358 7454,mahlchang@ust.hk,Room 3490,,,,,366,12,13, +140,Jeffrey Robert CHASNOV,PhD in Physics,"Columbia University, 1990",(852) 2358 7448,machas@ust.hk,Room 3456,,,,,466,12,13, +141,Ying CHAU,PhD in Chemical Engineering,"Massachusetts Institute of Technology, 2005",(852) 2358 8935,keychau@ust.hk,Room 4555,,,,,1831,28,50, +142,Beifang CHEN,PhD in Mathematics,"The State University of New York at Buffalo, 1991",(852) 2358 7449,mabfchen@ust.hk,Room 3458,,,,,8524,38,88, +143,Fei CHEN,PhD in Atmospheric Sciences,"Blaise Pascal University, 1990",(852) 3469 2436,feichen@ust.hk,Room 4359,,,,,15895,55,169, +144,Kai CHEN,PhD in Computer Science,"Northwestern University, 2012",(852) 2358 7028,kaichen@ust.hk,Room 3509,,,,,4308,35,80, +145,Kani CHEN,PhD in Statistics,"Columbia University, 1994",(852) 2358 7425,makchen@ust.hk,Room 3426,,,,,1115,18,22, +146,Tai-Yuan CHEN,PhD in Management Science,"The University of Texas at Dallas, 2006",(852) 2358 7575,acty@ust.hk,Room LSK6014,,,,,1353,11,12, +147,Siu Wing CHENG,PhD in Computer Science,"University of Minnesota, 1992",(852) 2358 6973,scheng@ust.hk,Room 3551,,,,,873,13,18, +148,Edmund Yik Man CHIANG,PhD in Mathematics,"University of London, 1991",(852) 2358 7441,machiang@ust.hk,Room 3457,,,,,551,6,3, +149,Albert Chi Shing CHUNG,PhD in Mathematics,,(852) 2358 8776,achung@ust.hk,Room 3510,,,,,2231,23,37, +150,Cunsheng DING,PhD in Computer Science,"University of Turku, 1997",(852) 2358 7021,cding@ust.hk,Room 2533,,,,,6094,43,126, +151,Ping GAO,PhD in Chemical Engineering,"University of Cambridge, 1990",(852) 2358 7126,kepgao@ust.hk,Room 4560,,,,,1897,23,36, +152,Song GUO,PhD in Computer Science,"University of Ottawa, 2006",(852) 2358 8833,songguo@ust.hk,Room CYT3006A,,,,,22893,73,377, +153,Yilong HAN,PhD in Physics,"The University of Chicago, 2003",(852) 2358 7492,yilong@ust.hk,Room 4447,,,,,1753,21,36, +154,Carsten Andreas HOLZ,PhD in Economics,"Cornell University, 1995",(852) 2358 7835,socholz@ust.hk,Room 2368,,,,,768,16,18, +155,Andrew Brian HORNER,PhD in Computer Science,"Champaign, 1993",(852) 2358 6998,horner@ust.hk,Room 3549,,,,,751,12,17, +156,I-ming HSING,PhD in Chemical Engineering,"Massachusetts Institute of Technology, 1997",(852) 2358 7131,kehsing@ust.hk,Room CYT2002A,,,,,2097,23,58, +157,Jishan HU,PhD in Applied Mathematics,"Princeton University, 1991",(852) 2358 7434,majhu@ust.hk,Room 3447,,,,,1186,19,27, +158,Xijun HU,PhD in Chemical Engineering,"The University of Queensland, 1993",(852) 2358 7134,kexhu@ust.hk,Room 4559,,,,,1956,23,66, +159,Baoling HUANG,PhD in Mechanical Engineering,"University of Michigan, 2008",(852) 2358 7181,mebhuang@ust.hk,Room 2577B,,,,,4477,39,97, +160,Pingbo HUANG,PhD in Physiology,"University of Cincinnati, 1994",(852) 2358 7305,bohuangp@ust.hk,Room 5463,,,,,566,15,19, +161,Yong HUANG,PhD in Organic Chemistry,"The University of Chicago, 2002",(852) 3469 2625,yonghuang@ust.hk,Room 4530,,,,,2216,28,63, +162,Gyu Boong JO,PhD in Physics,"Massachusetts Institute of Technology, 2010",(852) 2358 5954,gbjo@ust.hk,Room 4434,,,,,1514,18,26, +163,Ajay JONEJA,PhD in Industrial Engineering,"Purdue University, 1993",(852) 2358 7119,joneja@ust.hk,Room 5598,,,,,2316,28,77, +164,Lambros KATAFYGIOTIS,PhD in Civil Engineering,"California Institute of Technology, 1991",(852) 2358 8750,lambros@ust.hk,Room 3567,,,,,3189,26,50, +165,Wing Hung KI,PhD in Electrical Engineering,"Los Angeles, 1995",(852) 2358 8516,eeki@ust.hk,Room 2520,,,,,4077,37,106, +166,James Tin Yau KWOK,PhD in Computer Science,"The Hong Kong University of Science and Technology, 1996",(852) 2358 7013,jamesk@ust.hk,Room 3545,,,,,12797,43,118, +167,David Chuen Chun LAM,PhD in Materials,"Santa Barbara, 1991",(852) 2358 7208,medcclam@ust.hk,Room 2559,,,,,0,0,0, +168,Christopher Kin Ying LEUNG,PhD in Civil Engineering,"Massachusetts Institute of Technology, 1990",(852) 2358 8183,ckleung@ust.hk,Room 3566,,,,,0,0,0, +169,Shing Yu LEUNG,PhD in Mathematics,"Los Angeles, 2006",(852) 2358 7414,masyleung@ust.hk,Room 3431,,,,,809,15,25, +170,Siu Fai LEUNG,PhD in Economics,"The University of Chicago, 1987",(852) 2358 7618,sfleung@ust.hk,Room LSK6029,,,,,2009,21,28, +171,Jensen Tsan Hang LI,PhD in Physics,"The Hong Kong University of Science and Technology, 2004",(852) 2358 7471,jensenli@ust.hk,Room 4454,,,,,583,11,14, +172,Mo LI,PhD in Computer Science,"The Hong Kong University of Science and Technology, 2010",(852) 2358 7017,lim@ust.hk,Room 3534,,,,,5160,33,86, +173,Ning LI,PhD in Plant Molecular Biology,"University of Washington, 1989",(852) 2358 7335,boningli@ust.hk,Room 5460,,,,,1874,24,44, +174,Fangzhen LIN,PhD in Computer Science,"Stanford University, 1991",(852) 2358 6975,flin@ust.hk,Room 3557,,,,,804,14,16, +175,Nian LIN,PhD in Physics,"The Hong Kong University of Science and Technology, 1997",(852) 2358 7494,phnlin@ust.hk,Room 4443,,,,,157,6,2, +176,Jianmei LIU,PhD in Chinese Language and Literature,"Columbia University, 1998",(852) 2358 7767,hmjmliu@ust.hk,Room 3338,,,,,114,4,3, +177,Qian LIU,PhD in Decision,"Columbia University, 2006",(852) 2358 7118,qianliu@ust.hk,Room 5593,,,,,846,11,11, +178,Rolf Walter LORTZ,PhD in Decision,,(852) 2358 7491,lortz@ust.hk,Room 4478,,,,,1805,19,43, +179,Qiong LUO,PhD in Computer Science,"Madison, 2002",(852) 2358 6995,luo@ust.hk,Room 3511,,,,,2220,26,47, +180,Zhengtang LUO,PhD in Polymer Science,"University of Connecticut, 2007",(852) 2358 8823,keztluo@ust.hk,Room 4557,,,,,0,0,0, +181,Howard Cam LUONG,PhD in Electrical Engineering and Computer Sciences,"Berkeley, 1994",(852) 2358 8514,eeluong@ust.hk,Room 2453,,,,,1567,21,47, +182,Guowu MENG,PhD in Mathematics,"Brown University, 1993",(852) 2358 7451,mameng@ust.hk,Room 3484,,,,,115,6,2, +183,Yongli MI,PhD in Chemical Engineering,"Syracuse University, 1992",(852) 2358 7127,keymix@ust.hk,Room 4574,,,,,1389,21,36, +184,Mo MU,PhD in Mathematics,"Academia Sinica, 1987",(852) 2358 7446,mamu@ust.hk,Room 3445,,,,,5160,33,86, +185,Abhiroop MUKHERJEE,PhD in Economics,"Yale University, 2010",(852) 2358 7682,amukherjee@ust.hk,Room LSK5008,,,,,977,8,8, +186,Eric S NELSON,PhD in Philosophy,"Emory University, 2002",(852) 3469 2437,hmericsn@ust.hk,Room 2383,,,,,893,14,24, +187,Kristiaan NEYTS,PhD in Philosophy,,(852) 3469 3157,eeneyts@ust.hk,Room 2415,,,,,2476,22,71, +188,Daniel P. PALOMAR,PhD in Philosophy,,(852) 2358 7060,palomar@ust.hk,Room 2398,,,,,7476,41,108, +189,Dimitris PAPADIAS,PhD in Electrical and Computer Engineering,"National Technical University of Athens, 1994",(852) 2358 6971,dimitris@ust.hk,Room 3555,,,,,3019,30,65, +190,Robert Zhong QI,PhD in Biochemistry and Molecular Biology,"University of Calgary, 1996",(852) 2358 7273,qirz@ust.hk,Room 5458,,,,,744,13,16, +191,Xiangtong QI,PhD in Management Science and Information System,"The University of Texas at Austin, 2003",(852) 2358 8231,ieemqi@ust.hk,Room 5594,,,,,1519,21,40, +192,Ye QI,PhD in Environmental Science,"The State University of New York, 1994",(852) 2358 8327,yeqi@ust.hk,,,,,,524,5,5, +193,Li QIU,PhD in Electrical Engineering,"University of Toronto, 1990",(852) 2358 7067,eeqiu@ust.hk,Room 2440,,,,,1504,19,38, +194,Jianan QU,PhD in Optics,"Chinese Academy of Sciences, 1989",(852) 2358 8541,eequ@ust.hk,Room 2434,,,,,2194,25,53, +195,Long QUAN,PhD in Computer Science,"INRIA, 1989",(852) 2358 7018,quan@ust.hk,Room 3506,,,,,6793,40,78, +196,Pedro SANDER,PhD in Computer Science,"Harvard University, 2003",(852) 2358 6983,psander@ust.hk,Room 3504,,,,,1955,22,35, +197,Chii SHANG,PhD in Civil Engineering,"Purdue University, 1999",(852) 2358 7885,cechii@ust.hk,Room 3596,,,,,6362,41,101, +198,Ling SHI,PhD in Control and Dynamical Systems,"California Institute of Technology, 2008",(852) 2358 7055,eesling@ust.hk,Room 2410,,,,,7300,46,117, +199,James Edward Barbour SIMPSON,PhD in Applied Linguistics,"The University of Reading, 2004",(852) 2358 7788,hmjsimpson@ust.hk,Room 3386,,,,,0,0,0, +200,Mike Ka Pui SO,PhD in Statistics,"The University of Hong Kong, 1996",(852) 2358 7726,immkpso@ust.hk,Room LSK4075,,,,,2198,24,54, +201,Iam Keong SOU,PhD in Physics,"University of Illinois Chicago, 1990",(852) 2358 7476,phiksou@ust.hk,Room 4459,,,,,5595,39,69, +202,Hui SU,PhD in Atmospheric Sciences,"University of Washington, 1998",(852) 3469 3101,cehsu@ust.hk,Room 4607,,,,,3046,29,86, +203,Jianwei SUN,PhD in Organic Chemistry,"The University of Chicago, 2008",(852) 2358 7351,sunjw@ust.hk,Room CYT6010,,,,,4860,41,120, +204,Chiew Lan TAI,PhD in Organic Chemistry,,(852) 2358 7020,taicl@ust.hk,Room 3515,,,,,3144,26,54, +205,Ping TAN,PhD in Computer Science,"The Hong Kong University of Science and Technology, 2007",(852) 3469 2587,pingtan@ust.hk,Room 2414,,,,,9530,46,107, +206,Chi Keung TANG,PhD in Computer Science,"University of Southern California, 2000",(852) 2358 8775,cktang@ust.hk,Room 3538,,,,,7722,42,83, +207,Kai TANG,PhD in Computer,"University of Michigan, 1990",(852) 2358 8656,mektang@ust.hk,Room 2606,,,,,2316,28,77, +208,Rongbiao TONG,PhD in Chemistry,"Emory University, 2008",(852) 2358 7357,rtong@ust.hk,Room CYT6011,,,,,1541,22,57, +209,Dan Chiu Wa TSANG,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2006",(852) 3469 3133,cedan@ust.hk,Room 4603,,,,,61,4,2, +210,Kam Tim TSE,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2009",(852) 2358 8763,timkttse@ust.hk,Room 3568,,,,,4195,36,98, +211,Chi Ying TSUI,PhD in Computer Engineering,"University of Southern California, 1994",(852) 2358 7071,eetsui@ust.hk,Room 5599,,,,,4487,35,105, +212,Ophelia K C TSUI,PhD in Physics,"Princeton University, 1996",(852) 3469 2671,okctsui@ust.hk,Room 4455,,,,,1317,21,37, +213,Ralf VAN DER LANS,PhD in Marketing,"Tilburg University, 2006",(852) 2358 7706,rlans@ust.hk,Room LSK4003,,,,,812,15,17, +214,Xiangrong WANG,PhD in Physics,"University of Rochester, 1990",(852) 2358 7488,phxwan@ust.hk,Room 4450,,,,,2469,24,51, +215,Ian Duncan WILLIAMS,PhD in Chemistry,"University of Bristol, 1985",(852) 2358 7384,chwill@ust.hk,Room CYT6005,,,,,12463,52,192, +216,Ellick Kin Fai WONG,PhD in Psychology,"The Chinese University of Hong Kong, 2000",(852) 2358 8063,mnewong@ust.hk,Room LSK5032,,,,,1029,19,26, +217,Joseph Tin Yum WONG,PhD in Biology,"Univeristy of Stirling, 1992",(852) 2358 7343,botin@ust.hk,Room 5454,,,,,0,0,0, +218,Kam Sing WONG,PhD in Solid State Physics,"University of Oxford, 1991",(852) 2358 7475,phkswong@ust.hk,Room 4453,,,,,11184,59,148, +219,Man WONG,PhD in Electrical Engineering,"Stanford University, 1989",(852) 2358 7057,eemwong@ust.hk,Room 2521,,,,,2471,21,68, +220,Dekai WU,PhD in Computer Science,"Berkeley, 1992",(852) 2358 6989,dekai@ust.hk,Room 3556,,,,,698,12,14, +221,Hongkai WU,PhD in Physical Chemistry,"Harvard University, 2002",(852) 2358 7246,chhkwu@ust.hk,Room 4515,,,,,6257,39,101, +222,Lixin WU,PhD in Mathematics,"Los Angeles, 1991",(852) 2358 7435,malwu@ust.hk,Room 3427,,,,,0,0,0, +223,Shengqing WU,PhD in East Asian Languages and Culture,"Los Angeles, 2004",(852) 2358 8981,hmswu@ust.hk,Room 2380,,,,,2545,29,58, +224,Xun WU,PhD in Public Policy Analysis,"The University of North Carolina at Chapel Hill, 2001",(852) 2358 2579,wuxun@ust.hk,Room 4616A,,,,,2499,26,50, +225,Zhenguo WU,PhD in Biochemistry,"The University of Western Ontario, 1995",(852) 2358 8704,bczgwu@ust.hk,Room 5527,,,,,93,5,3, +226,Yang XIANG,PhD in Mathematics,"New York University, 2001",(852) 2358 7430,maxiang@ust.hk,Room 3425,,,,,1250,20,34, +227,Jiang XU,PhD in Computer Engineering,"Princeton University, 2007",(852) 2358 5036,eexu@ust.hk,Room 2438,,,,,0,0,0, +228,Yan XU,PhD in Telecommunications Policy,"University of Strathclyde, 1997",(852) 2358 7640,xuyan@ust.hk,Room LSK4074,,,,,2965,14,14, +229,Min YAN,PhD in Mathematics,"The University of Chicago, 1990",(852) 2358 7442,mamyan@ust.hk,Room 3487,,,,,305,8,6, +230,Jinglei YANG,PhD in Mathematics,,(852) 3469 2298,maeyang@ust.hk,Room 2546,,,,,7134,47,140, +231,Zhi Yu YANG,PhD in Physics,"Purdue University, 1988",(852) 2358 7485,phyang@ust.hk,Room 4458,,,,,7019,23,35, +232,Shuhuai YAO,PhD in Mechanical Engineering,"Stanford University, 2005",(852) 2358 7205,meshyao@ust.hk,Room 2577F,,,,,0,0,0, +233,Yuan YAO,PhD in Mathematics,"Berkeley, 2006",(852) 2358 7461,yuany@ust.hk,Room 3430,,,,,2526,23,41, +234,Wenjing YE,PhD in Theoretical and Applied Mechanics,"Cornell University, 1998",(852) 2358 7194,mewye@ust.hk,Room 2560,,,,,1405,19,35, +235,King Lun YEUNG,PhD in Chemical Engineering,"University of Notre Dame, 1993",(852) 2358 7123,kekyeung@ust.hk,Room 4550,,,,,4003,32,103, +236,Ke YI,PhD in Computer Science,"Duke University, 2006",(852) 2358 8770,yike@ust.hk,Room 3547,,,,,2574,28,64, +237,Michelle YIK,PhD in Psychology,"The University of British Columbia, 1999",(852) 2358 7815,myik@ust.hk,Room 2338,,,,,3125,23,35, +238,Levent YOBAS,PhD in Biomedical Engineering,"Case Western Reserve University, 2001",(852) 2358 7068,eelyobas@ust.hk,Room CYT3012,,,,,1541,20,36, +239,Haifeng YOU,PhD in Accounting,"Berkeley, 2007",(852) 2358 7576,achy@ust.hk,Room LSK6010,,,,,896,13,14, +240,Man YU,PhD in Operations Management and Science,"University of Michigan, 2010",(852) 2358 7728,manyu@ust.hk,Room LSK4069,,,,,569,9,9, +241,Weichuan YU,PhD in Computer Science,"University of Kiel, 2001",(852) 2358 7054,eeyu@ust.hk,Room 2428,,,,,1797,18,33, +242,Chik Patrick YUE,PhD in Electrical Engineering,"Stanford University, 1998",(852) 2358 7047,eepatrick@ust.hk,Room CYT3010,,,,,2408,24,58, +243,Bei ZENG,PhD in Physics,"Massachusetts Institute of Technology, 2009",(852) 2358 8895,zengb@ust.hk,Room 4481,,,,,918,13,14, +244,Charles Chuan ZHANG,PhD in Electrical and Computer Engineering,"University of Toronto, 2007",(852) 2358 6997,charlesz@ust.hk,Room CYT3002A,,,,,970,15,22, +245,Hongtao ZHANG,PhD in Operations Research,"Massachusetts Institute of Technology, 1990",(852) 2358 7755,imhzhang@ust.hk,Room LSK4015,,,,,0,0,0, +246,Nevin Lianwen ZHANG,PhD in Computer Science,"The University of British Columbia, 1993",(852) 2358 7015,lzhang@ust.hk,Room 2541,,,,,1674,23,40, +247,Wei ZHANG,PhD in Computer Engineering,"Princeton University, 2009",(852) 2358 8170,eeweiz@ust.hk,Room 2449,,,,,2369,25,60, +248,Xiangru ZHANG,PhD in Environmental Engineering,"Champaign, 2002",(852) 2358 8479,xiangru@ust.hk,Room 4601,,,,,0,0,0, +249,Xueqing ZHANG,PhD in Construction Engineering and Management,"University of Alberta, 2006",(852) 2358 8480,zhangxq@ust.hk,Room 3571,,,,,0,0,0, +250,Jidong ZHAO,PhD in Civil Engineering,"Tsinghua University, 2002",(852) 2358 8481,jzhao@ust.hk,Room 4606,,,,,0,0,0, +251,Xinghua ZHENG,PhD in Statistics,"The University of Chicago, 2008",(852) 2358 7750,xhzheng@ust.hk,Room LSK4071,,,,,546,13,14, +252,Songfa ZHONG,PhD in Economics,"The Hong Kong University of Science and Technology, 2009",(852) 2358 7600,szhong@ust.hk,Room LSK6009,,,,,991,18,28, +253,Guang ZHU,PhD in Chemical Physics and Biophysics,"The University of Maryland, 1992",(852) 2358 8705,gzhu@ust.hk,Room 5528,,,,,4388,17,28, +254,Yongchang ZHU,PhD in Mathematics,"Yale University, 1990",(852) 2358 7447,mazhu@ust.hk,Room 3459,,,,,965,9,9, +255,Kai LIU,PhD in Neuroscience,"The State University of New Jersey, 2006",(852) 2358 7277,kailiu@ust.hk,Room 5445,,,,,2862,21,28, +256,Jiguang WANG,PhD in Neuroscience,,(852) 3469 2672,jgwang@ust.hk,Room 5577,,,,,0,0,0, +257,Can YANG,PhD in Electrical and Electronic Engineering,"The Hong Kong University of Science and Technology, 2011",(852) 2358 7462,macyang@ust.hk,Room 3482,,,,,2617,28,58, +258,Sunil ARYA,PhD in Computer Science,"The University of Maryland, 1995",(852) 2358 8769,arya@ust.hk,Room 3514,,,,,1367,16,26, +259,Pak Hung AU,PhD in Economics,"Northwestern University, 2012",(852) 2358 7620,aupakhung@ust.hk,Room LSK6069,,,,,352,8,8, +260,Zhigang BAO,PhD in Mathematics,"Zhejiang University, 2013",(852) 2358 7416,mazgbao@ust.hk,Room 3429,,,,,507,14,18, +261,Brahim BENSAOU,PhD in Computer Science,"Pierre and Marie Curie University, 1993",(852) 2358 7014,csbb@ust.hk,Room 3537,,,,,826,15,30, +262,Charles Wing Hoi CHAN,PhD in East Asian Studies,"University of Toronto, 1995",(852) 2358 7765,hmwhchan@ust.hk,Room 3357,,,,,934,15,17, +263,David Cheng CHANG,PhD in History,"San Diego, 2011",(852) 2358 5867,changcheng@ust.hk,Room 2350,,,,,45,4,1, +264,Melody Man Chi CHAO,PhD in Social Psychology,"Champaign, 2009",(852) 2358 7739,mchao@ust.hk,Room LSK5022,,,,,2048,24,34, +265,Peter Fusheng CHEN,PhD in Accounting,"University of Alberta, 1999",(852) 2358 7572,acpchen@ust.hk,Room LSK6011,,,,,6860,28,71, +266,Qing CHEN,PhD in Materials Science and Engineering,"Arizona State University, 2013",(852) 3469 2234,chenqing@ust.hk,Room 2556,,,,,3028,26,38, +267,Sherry CHEN,PhD in Solid Mechanics,"University of Minnesota, 2013",(852) 3469 2296,xianchen@ust.hk,Room 2572,,,,,840,14,15, +268,Zhanhui CHEN,PhD in Finance,"M University, 2011",(852) 2358 7670,chenzhanhui@ust.hk,Room LSK5075,,,,,199,6,3, +269,Zhihong CHEN,PhD in Accounting,"The Hong Kong University of Science and Technology, 2005",(852) 2358 7574,aczh@ust.hk,Room LSK6012,,,,,0,0,0, +270,Ki Ling CHEUNG,PhD in Industrial Engineering,"Stanford University, 1990",(852) 2358 7737,imcheung@ust.hk,Room LSK4021,,,,,1567,21,47, +271,Siu Woo CHEUNG,PhD in Sociocultural Anthropology,"University of Washington, 1996",(852) 2358 7763,hmcheung@ust.hk,Room 3340,,,,,0,0,0, +272,Kenny K CHUNG,PhD in Neuroscience,"University of Cambridge, 2001",(852) 2358 8019,bckchung@ust.hk,Room 5439,,,,,287,9,9, +273,Amy Nicole DALTON,PhD in Marketing,"Duke University, 2008",(852) 2358 7698,mkamy@ust.hk,Room LSK4008,,,,,476,10,10, +274,Joshua DERMAN,PhD in History,"Princeton University, 2008",(852) 2358 5869,hmderman@ust.hk,Room 3352,,,,,101,4,2, +275,Ilias DIMITRAKOPOULOS,PhD in Civil Engineering,"Aristotle University of Thessaloniki, 2009",(852) 2358 5975,ilias@ust.hk,Room 3587,,,,,1725,24,39, +276,Daisy Yan DU,PhD in East Asian Studies,"Madison, 2012",(852) 2358 7792,daisyyandu@ust.hk,Room 2369,,,,,113,5,4, +277,Tsz Ho Frederick FONG,PhD in Mathematics,"Stanford University, 2012",(852) 3469 2243,mafong@ust.hk,Room 3481,,,,,119,7,6, +278,Bradley Alan FOREMAN,PhD in Electrical Engineering,"Cornell University, 1995",(852) 2358 7527,phbaf@ust.hk,Room 4473,,,,,0,0,0, +279,Li-tsui FU,PhD in History of Art,"Berkeley, 1995",(852) 2358 8024,hmltfu@ust.hk,Room 3359,,,,,1587,18,22, +280,Yongsheng GAO,PhD in Control Systems and Manufacturing Engineering,"University of Birmingham, 1992",(852) 2358 8649,meygao@ust.hk,Room 2558,,,,,2421,25,53, +281,Yusong GUO,PhD in Biological Sciences,"Carnegie Mellon University, 2008",(852) 3469 2492,guoyusong@ust.hk,Room 5530,,,,,587,14,18, +282,Zhihong GUO,PhD in Biological Chemistry,"University of Minnesota, 1998",(852) 2358 7352,chguo@ust.hk,Room 4519,,,,,1669,19,33, +283,Li HAN,PhD in Economics,"Harvard University, 2008",(852) 2358 7838,lihan@ust.hk,Room 3390,,,,,406,7,7, +284,Alex Jingwei HE,PhD in Public Policy,"National University of Singapore, 2011",(852) 3469 2282,ajwhe@ust.hk,Room 4616A,,,,,1638,22,41, +285,Wenkai HE,PhD in Political Science,"Massachusetts Institute of Technology, 2007",(852) 2358 7775,hewenkai@ust.hk,Room 3376,,,,,88,3,1, +286,Kristiaan HELSEN,PhD in Marketing,"University of Pennsylvania, 1990",(852) 2358 7720,mkhel@ust.hk,Room LSK4009,,,,,0,0,0, +287,David James HENDRY,PhD in Political Science,"Champaign, 2012",(852) 2358 8327,hendry@ust.hk,Room 3346,,,,,444,11,12, +288,Virgil Kit Yiu HO,PhD in Political Science,,(852) 2358 7802,hmvihoky@ust.hk,Room 3349,,,,,0,0,0, +289,Weiyin HONG,PhD in Information Systems,"The Hong Kong University of Science and Technology, 2002",(852) 2358 7645,whong@ust.hk,Room LSK5046,,,,,2126,14,16, +290,Yue HOU,PhD in Political Science,"Massachusetts Institute of Technology, 2015",(852) 3469 2690,yuehou@ust.hk,Room 3348,,,,,458,8,8, +291,Xinyu HUA,PhD in Managerial Economics and Strategy,"Northwestern University, 2005",(852) 2358 7609,xyhua@ust.hk,Room LSK6076,,,,,393,8,8, +292,Eun Soon IM,PhD in Atmospheric Science,"Pusan National University, 2006",(852) 2358 8190,ceim@ust.hk,Room 4602,,,,,1886,23,39, +293,Ivan Chi Ho IP,PhD in Mathematics,"Yale University, 2012",(852) 2358 7431,ivanip@ust.hk,Room 3470,,,,,133,8,6, +294,Toyotaka ISHIBASHI,PhD in Mathematics,,(852) 3469 2238,toyotaka@ust.hk,Room 5509,,,,,1148,19,32, +295,Tianling JIN,PhD in Mathematics,"The State University of New Jersey, 2012",(852) 2358 7417,tianlingjin@ust.hk,Room 3424,,,,,708,17,22, +296,Hyuncheol Bryant KIM,PhD in Economics,"Columbia University, 2013",(852) 3469 2942,hbkim@ust.hk,Room LSK6007,,,,,321,8,8, +297,Sung Hun KIM,PhD in Computer Science,"Santa Cruz, 2006",(852) 2358 6992,hunkim@ust.hk,Room 2527,,,,,11027,40,67, +298,Tat Koon KOH,PhD in Industrial Administration,"Carnegie Mellon University, 2012",(852) 2358 7632,koh@ust.hk,Room LSK4061,,,,,263,6,5, +299,Shuk Mei Agnes KU,PhD in Sociology,"Los Angeles, 1995",(852) 2358 7784,soagnes@ust.hk,Room 3369,,,,,455,12,15, +300,Richard LAKERVELD,PhD in Chemical Engineering,"Delft University of Technology, 2010",(852) 3469 2217,kelakerveld@ust.hk,Room CYT2003,,,,,134,4,4, +301,Stanley Chun Kwan LAU,PhD in Biology,"The Hong Kong University of Science and Technology, 2001",(852) 2358 7329,scklau@ust.hk,Room CYT5005,,,,,0,0,0, +302,Dongwon LEE,PhD in Information Systems,"The University of Maryland, 2017",(852) 2358 7690,dongwon@ust.hk,Room LSK4036,,,,,613,9,9, +303,Yi-Kuen LEE,PhD in Mechanical Engineering,"Los Angeles, 2001",(852) 2358 8663,meyklee@ust.hk,Room 2547,,,,,1635,19,42, +304,Yonghoon LEE,PhD in Organisational Behaviour,"INSEAD, 2015",(852) 2358 7721,yglee@ust.hk,Room LSK5051,,,,,214,6,6, +305,Anthony Kwan LEUNG,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2011",(852) 2358 8482,ceanthony@ust.hk,Room 3582,,,,,2897,30,63, +306,Danny Chi Yeu LEUNG,PhD in Medical Genetics,"The University of British Columbia, 2012",(852) 3469 2494,dcyleung@ust.hk,Room 5519,,,,,5790,15,18, +307,Kin Yin LI,PhD in Mathematics,"Berkeley, 1989",(852) 2358 7420,makyli@ust.hk,Room 3471,,,,,936,14,14, +308,Larry LI,PhD in Engineering,"University of Cambridge, 2012",(852) 3469 2232,larryli@ust.hk,Room 2577E,,,,,568,13,14, +309,Yao Amber LI,PhD in Economics,"The University of Western Ontario, 2010",(852) 2358 7605,yaoli@ust.hk,Room LSK6057,,,,,1185,16,18, +310,Chun LIANG,PhD in Biology,"Brown University, 1993",(852) 2358 7296,bccliang@ust.hk,Room 5524,,,,,1454,21,33, +311,Rhea Patricia LIEM,PhD in Aerospace Engineering,"University of Toronto, 2015",(852) 3469 2295,rpliem@ust.hk,Room 2562,,,,,801,14,14, +312,Woo Young LIM,PhD in Economics,"University of Pittsburgh, 2010",(852) 2358 7628,wooyoung@ust.hk,Room LSK6080,,,,,460,11,11, +313,Song LIN,PhD in Marketing,"Massachusetts Institute of Technology, 2015",(852) 2358 7717,mksonglin@ust.hk,Room LSK4005,,,,,221,6,6, +314,Jia LIU,PhD in Marketing,"Columbia University, 2017",(852) 2358 7709,jialiu@ust.hk,Room LSK4051,,,,,165,5,5, +315,Junwei LIU,PhD in Physics,"Tsinghua University, 2014",(852) 2358 7971,liuj@ust.hk,Room 4474,,,,,0,0,0, +316,Tao LIU,PhD in Physics,"University of Pennsylvania, 2007",(852) 2358 7984,taoliu@ust.hk,Room 4470,,,,,1786,24,42, +317,Mengqian LU,PhD in Earth and Environmental Engineering,"Columbia University, 2014",(852) 2358 7177,cemlu@ust.hk,Room 3593,,,,,686,17,24, +318,Yang LU,PhD in Economics,"Boston University, 2009",(852) 2358 7619,yanglu@ust.hk,Room LSK6059,,,,,190,7,7, +319,Jianxiong MA,PhD in Social Science,"The Hong Kong University of Science and Technology, 2008",(852) 2358 7766,hmjxm@ust.hk,Room 3342,,,,,4140,34,107, +320,John Zhongdong MA,PhD in Geography,"McMaster University, 1993",(852) 2358 7829,sojohnma@ust.hk,Room 2348,,,,,529,8,8, +321,Peter MACKAY,PhD in Finance,"Purdue University, 1998",(852) 2358 8319,pmackay@ust.hk,Room LSK5079,,,,,735,6,6, +322,Brian Kan Wing MAK,PhD in Computer Science,"Oregon Graduate Institute of Science and Technology, 1998",(852) 2358 7012,bmak@ust.hk,Room 3513,,,,,1014,17,19, +323,Eric Paul MARBERG,PhD in Mathematics,"Massachusetts Institute of Technology, 2013",(852) 3469 2245,emarberg@ust.hk,Room 3492,,,,,375,10,10, +324,Wilfred Siu Hung NG,PhD in Computer Science,"University of London, 1997",(852) 2358 6979,wng@ust.hk,Room 3503,,,,,1831,20,50, +325,Tuan Anh NGUYEN,PhD in Biochemistry,"Korea Advanced Institute of Science and Technology, 2012",(852) 3469 2679,tuananh@ust.hk,Room 5513,,,,,59,4,2, +326,Ding PAN,PhD in Biochemistry,,(852) 2358 8896,dingpan@ust.hk,Room 4476,,,,,1231,19,29, +327,George Kamenov PANAYOTOV,PhD in Finance,"The University of Maryland, 2005",(852) 2358 5049,panayotov@ust.hk,Room LSK5085,,,,,0,0,0, +328,Dimitris PAPADOPOULOS,PhD in Computer Science,"Boston University, 2016",(852) 2358 8767,dipapado@ust.hk,Room 2537,,,,,1992,21,28, +329,Hyo Keun PARK,PhD in Chemical Physics,"Champaign, 2006",(852) 2358 7322,hkpark@ust.hk,Room 5452,,,,,0,0,0, +330,Sangyoon PARK,PhD in Economics,"Northwestern University, 2016",(852) 3469 2423,sangyoon@ust.hk,Room 2378,,,,,98,5,3, +331,Baryon Tensor POSADAS,PhD in East Asian Studies,"University of Toronto, 2010",(852) 2358 5872,hmbposadas@ust.hk,Room 2355,,,,,0,0,0, +332,Kirill PROKOFIEV,PhD in East Asian Studies,,(852) 2358 7499,kprok@ust.hk,Room 4414,,,,,0,0,0, +333,Jin QI,PhD in Decision Sciences,"National University of Singapore, 2014",(852) 2358 8238,jinqi@ust.hk,Room 5592,,,,,372,8,8, +334,Shaojie SHEN,PhD in Electrical and Systems Engineering,"University of Pennsylvania, 2014",(852) 3469 2287,eeshaojie@ust.hk,Room UC112,,,,,0,0,0, +335,Yajing SHEN,PhD in Electrical and Systems Engineering,,(852) 2358 5035,eeyajing@ust.hk,Room 2450,,,,,2704,23,58, +336,Yangqiu SONG,PhD in Control Science and Technology,"Tsinghua University, 2009",(852) 2358 6987,yqsong@ust.hk,Room 3518,,,,,8874,48,127, +337,Abhishek Kumar SRIVASTAVA,PhD in Physics,"University of Lucknow, 2008",(852) 3469 2485,eeabhishek@ust.hk,Room CYT4012,,,,,2794,28,81, +338,Haibin SU,PhD in Materials Science and Engineering,"The State University of New York, 2002",(852) 2358 7388,haibinsu@ust.hk,Room 4540,,,,,570,10,10, +339,Bilian Ni SULLIVAN,PhD in Business Administration,"Stanford University, 2003",(852) 2358 7747,mnbilian@ust.hk,Room LSK5023,,,,,919,9,9, +340,Fei SUN,PhD in Chemistry,"The University of Chicago, 2012",(852) 3469 2442,kefsun@ust.hk,Room CYT2004,,,,,1692,24,39, +341,Kevin Kim-Pong TAM,PhD in Psychology,"The University of Hong Kong, 2006",(852) 2358 7828,kevintam@ust.hk,Room 2351,,,,,3371,27,49, +342,Sujata VISARIA,PhD in Economics,"Columbia University, 2005",(852) 2358 7608,svisaria@ust.hk,Room LSK6083,,,,,675,9,9, +343,Xuhu WAN,PhD in Applied Mathematics,"University of Southern California, 2005",(852) 2358 7731,imwan@ust.hk,Room LSK4072,,,,,6391,41,108, +344,Jin WANG,PhD in Economics,"The London School of Economics and Political Science, 2010",(852) 2358 7834,sojinwang@ust.hk,Room 2347,,,,,1881,8,7, +345,Jing WANG,PhD in Information Systems,"New York University, 2013",(852) 3469 2125,jwang@ust.hk,Room LSK4044,,,,,1054,10,10, +346,Peng WANG,PhD in Economics,"New York University, 2009",(852) 2358 7630,pwang@ust.hk,Room LSK6077,,,,,0,0,0, +347,Shiheng WANG,PhD in Accounting,"s University, 2008",(852) 2358 7570,acwang@ust.hk,Room LSK6020,,,,,501,6,6, +348,Wei WANG,PhD in Computer Engineering,"University of Toronto, 2015",(852) 2358 6972,weiwa@ust.hk,Room 3524,,,,,3143,28,78, +349,Wenbo WANG,PhD in Marketing,"New York University, 2012",(852) 2358 7703,wenbowang@ust.hk,Room LSK4054,,,,,312,6,5, +350,Xuan WANG,PhD in Operations Management,"New York University, 2016",(852) 2358 5854,xuanwang@ust.hk,Room LSK4079,,,,,1952,19,28, +351,Yi WANG,PhD in Theoretical Physics,"Chinese Academy of Sciences, 2009",(852) 3469 2430,phyw@ust.hk,Room 4445,,,,,3000,28,55, +352,Yiwen WANG,PhD in Electrical and Computer Engineering,"The University of Florida, 2008",(852) 2358 7053,eewangyw@ust.hk,Room 2444,,,,,662,12,16, +353,Zhe WANG,PhD in Environmental Engineering,"Shandong University, 2011",(852) 3469 2523,envrwangz@ust.hk,Room 4365,,,,,5052,39,70, +354,Man Hoi WONG,PhD in Electrical and Computer Engineering,"Santa Barbara, 2009",(852) 2358 8992,eemhwong@ust.hk,Room 2446,,,,,3657,28,60, +355,Simon Man Ho WONG,PhD in East Asian Studies,"University of Toronto, 1996",(852) 2358 7772,hmmhwong@ust.hk,Room 3354,,,,,588,13,16, +356,Angela Ruohao WU,PhD in Bioengineering,"Stanford University, 2012",(852) 3469 2577,angelawu@ust.hk,Room 5512,,,,,2416,19,26, +357,Maosheng XIONG,PhD in Mathematics,"Champaign, 2007",(852) 2358 7456,mamsxiong@ust.hk,Room 3476,,,,,482,13,18, +358,Hong XU,PhD in Information,"The University of Texas at Austin, 2010",(852) 2358 7635,hxu@ust.hk,Room LSK4059,,,,,319,7,6, +359,Juanyi XU,PhD in Economics,"The University of British Columbia, 2005",(852) 2358 7604,jennyxu@ust.hk,Room LSK6071,,,,,371,9,7, +360,Yan YAN,PhD in Molecular Biology,"Princeton University, 2010",(852) 2358 5929,yany@ust.hk,Room 5511,,,,,484,13,13, +361,Sen YANG,PhD in Physics,"San Diego, 2009",(852) 2358 7981,phsyang@ust.hk,Room 4477,,,,,372,4,2, +362,Yi YANG,PhD in Computer Science,"Northwestern University, 2015",(852) 2358 6359,imyiyang@ust.hk,Room LSK4041,,,,,1061,15,22, +363,Zhengbao YANG,PhD in Mechanical Enginering,"University of Toronto, 2016",(852) 2358 7187,zbyang@ust.hk,Room 2557,,,,,5734,39,77, +364,Masaru YARIME,PhD in Economics and Policy Studies of Innovation and Technological Change,"Maastricht University, 2003",(852) 3469 2283,yarime@ust.hk,Room 4616E,,,,,0,0,0, +365,Sai Kit YEUNG,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2009",(852) 3469 2796,saikit@ust.hk,Room 5600,,,,,5201,30,56, +366,Yuk Man Carine YIU,PhD in Humanities,"The Hong Kong University of Science and Technology, 2005",(852) 2358 7801,yyiu@ust.hk,Room 3339,,,,,72,5,2, +367,Hongyu YU,PhD in Electrical Engineering,"University of Southern California, 2005",(852) 3469 2754,hongyuyu@ust.hk,Room 2571,,,,,0,0,0, +368,Jialin YU,PhD in Economics,"Princeton University, 2005",(852) 2358 8318,jialin@ust.hk,Room LSK5002,,,,,573,9,9, +369,George Jie YUAN,PhD in Electrical Engineering,"University of Pennsylvania, 2006",(852) 2358 8029,eeyuan@ust.hk,Room 2522,,,,,556,14,21, +370,Alminas ZALDOKAS,PhD in Finance,"INSEAD, 2012",(852) 2358 7665,alminas@ust.hk,Room LSK5010,,,,,1351,10,10, +371,Amy Yunzhi ZANG,PhD in Accounting,"Duke University, 2006",(852) 2358 7561,aczang@ust.hk,Room LSK6002,,,,,3047,7,7, +372,Qinglu ZENG,PhD in Biological Sciences,"The State University of New York at Albany, 2008",(852) 2358 8701,zeng@ust.hk,Room CYT5003,,,,,872,14,19, +373,Chengxing ZHAI,PhD in Physis,"University of Washington, 1994",(852) 3469 2409,cxzhai@ust.hk,Room 4338,,,,,1144,19,29, +374,Hai ZHANG,PhD in Mathematics,"Michigan State University, 2013",(852) 2358 7439,haizhang@ust.hk,Room 3449,,,,,932,18,27, +375,Jun ZHANG,PhD in Electrical,"The University of Texas at Austin, 2009",(852) 2358 7050,eejzhang@ust.hk,Room 2430,,,,,17487,47,129, +376,Lok Cheung Lawrence ZHANG,PhD in History and East Asian Languages,"Harvard University, 2010",(852) 2358 7825,hmlczhang@ust.hk,Room 3337,,,,,41,4,3, +377,Min ZHANG,PhD in Chinese Linguistics,"Peking University, 1991",(852) 2358 7803,hmzm@ust.hk,Room 3335,,,,,14244,62,269, +378,Xiaojun ZHANG,PhD in Information Systems,"University of Arkansas, 2010",(852) 2358 7637,xiaojunzhang@ust.hk,Room LSK4045,,,,,0,0,0, +379,Xiaowei ZHANG,PhD in Management Science and Engineering,"Stanford University, 2011",(852) 2358 8232,xiaoweiz@ust.hk,Room 5541,,,,,0,0,0, +380,Ying ZHAO,PhD in Marketing,"Berkeley, 2001",(852) 2358 7701,mkyzhao@ust.hk,Room LSK4012,,,,,1831,28,50, +381,Pavel Ivanov ZHELYAZKOV,PhD in Organizational Behavior and Sociology,"Harvard University, 2015",(852) 2358 7760,pzhelyazkov@ust.hk,Room LSK5013,,,,,0,0,0, +382,Rong ZHENG,PhD in Information System,"New York University, 2009",(852) 2358 7642,rzheng@ust.hk,Room LSK4042,,,,,1221,6,6, +383,Yanfeng ZHENG,PhD in Business Administration,"Madison, 2006",(852) 2358 6028,yfz@ust.hk,Room LSK5021,,,,,1093,14,16, +384,Rongrong ZHOU,PhD in Marketing,"Columbia University, 2001",(852) 2358 7702,mkrrzhou@ust.hk,Room LSK4010,,,,,781,11,12, +385,Yuanyuan ZHOU,PhD in Engineering,"Brown University, 2016",(852) 2358 7137,yyzhou@ust.hk,Room 4556,,,,,9287,52,100, +386,Pengyu ZHU,PhD in Policy,"University of Southern California, 2011",(852) 3469 2847,pengyuzhu@ust.hk,Room 4616C,,,,,1249,21,32, +387,Tao ZHU,PhD in Economics,"Pennsylvania State University, 2002",(852) 2358 7601,taozhu@ust.hk,Room LSK6028,,,,,92,6,2, +388,Adrian Hoi Chun PO,PhD in Condensed Matter Theory,"Harvard University, 2018",(852) 2358 7976,hcpo@ust.hk,Room 4440,,,,,5626,30,40, +389,Jun AOYAGI,PhD in Economics,"Berkeley, 2021",(852) 2358 5052,junaoyagi@ust.hk,Room LSK5005,,,,,0,0,0, +390,Emilio BISETTI,PhD in Financial Economics,"Carnegie Mellon University, 2018",(852) 2358 7680,bisetti@ust.hk,Room LSK5057,,,,,67,5,3, +391,Thomas Bradford BITTERLY,PhD in Operations,"University of Pennsylvania, 2018",(852) 2358 7756,bbitterly@ust.hk,Room LSK5044,,,,,480,8,8, +392,Tristan Camille BRAUD,PhD in Computer Science,"University Grenoble Alpes, 2016",(852) 3469 3004,braudt@ust.hk,Room 5590,,,,,2541,23,43, +393,Zachariah BROWN,PhD in Organizational Behaviour,"Columbia University, 2021",(852) 2358 7741,zcb@ust.hk,Room LSK5043,,,,,41,2,1, +394,Xuanyu CAO,PhD in Electrical Engineering,"The University of Maryland, 2017",(852) 3469 2864,eexcao@ust.hk,Room 2445,,,,,671,16,20, +395,Keith CHAN,PhD in Economics,"University of Cambridge, 2021",(852) 3469 2968,keithchan@ust.hk,Room 4358,,,,,3580,30,93, +396,Liz Pui Yee CHEE,PhD in History and Social Anthropology,"National University of Singapore, 2016",(852) 2358 7798,hmlizchee@ust.hk,Room 2372,,,,,0,0,0, +397,Hao CHEN,PhD in Computer Science and Engineering,"The Chinese University of Hong Kong, 2017",(852) 2358 8346,jhc@ust.hk,Room 3524,,,,,21588,60,103, +398,Long CHEN,PhD in Computer Science and Technology,"Zhejiang University, 2020",(852) 2358 8836,longchen@ust.hk,Room 3508,,,,,4592,25,40, +399,Qifeng CHEN,PhD in Computer Science,"Stanford University, 2017",(852) 2358 8838,cqf@ust.hk,Room 3508,,,,,8524,38,88, +400,Qihui CHEN,PhD in Business and Management,"The University of Maryland, 2023",(852) 2358 7713,qihuichen@ust.hk,Room LSK4056,,,,,157,5,4, +401,Siyin CHEN,PhD in Organizational Behaviour and Human Resource Management,"University of Toronto, 2023",(852) 2358 7732,siyinchen@ust.hk,Room LSK5051,,,,,87,2,2, +402,Tengteng CHEN,PhD in Chemistry,"Brown University, 2020",(852) 2358 7387,tengtengchen@ust.hk,Room 4542,,,,,1094,17,24, +403,Wilbur CHEN,PhD in Business Administration,"Harvard University, 2022",(852) 2358 7578,acwilbur@ust.hk,Room LSK6048,,,,,119,3,3, +404,Yangyang CHEN,PhD in Mechanical and Aerospace Engineering,"University of Missouri, 2017",(852) 3469 3025,maeychen@ust.hk,Room 2555,,,,,2560,31,41, +405,Yanzhen CHEN,PhD in Information Systems,"The University of Texas at Austin, 2017",(852) 2358 7643,imyanzhen@ust.hk,Room LSK4060,,,,,91,5,4, +406,Yi CHEN,PhD in Industrial Engineering,"Northwestern University, 2021",(852) 2358 7115,yichen@ust.hk,Room 5559C,,,,,1382,22,30, +407,Chen CHENG,PhD in Developmental and Brain Sciences,"University of Massachusetts Boston, 2019",(852) 2358 8432,chencheng@ust.hk,Room 2385,,,,,218,9,9, +408,Ja Ee CHO,PhD in Management,"Columbia University, 2017",(852) 2358 6358,jaeecho@ust.hk,Room LSK5030,,,,,179,6,6, +409,Tony CHO,PhD in Business,"New York University, 2023",(852) 2358 7587,accho@ust.hk,Room LSK6041,,,,,59,1,1, +410,Jaeho CHOI,PhD in Management,"University of Pennsylvania, 2023",(852) 2358 7738,jaehochoi@ust.hk,Room LSK5070,,,,,100,4,3, +411,Tae-Ung CHOI,PhD in Management,"Northwestern University, 2023",(852) 2358 6172,tuchoi@ust.hk,Room LSK5012,,,,,1,1,0, +412,Carsten Hao Ye CHONG,PhD in Management,,(852) 2358 7730,carstenchong@ust.hk,Room LSK4039,,,,,0,0,0, +413,Shangyu DANG,PhD in Management,,(852) 2358 5944,sdang@ust.hk,Room 5507,,,,,0,0,0, +414,Julien DE TROULLIOUD DE LANVERSIN,PhD in Mechanical and Aerospace Engineering,"Princeton University, 2019",(852) 3469 2433,jdtdl@ust.hk,Room 4616G,,,,,0,0,0, +415,Laurence Laurencio DELINA,PhD in Environmental Management,"The University of New South Wales, 2016",(852) 3469 2555,lld@ust.hk,Room 4357,,,,,0,0,0, +416,Shuoqing DENG,PhD in Applied Mathematics,"Universite Paris Dauphine, 2019",(852) 2358 7423,masdeng@ust.hk,Room 3485,,,,,1589,20,38, +417,Qingkai DONG,PhD in Accounting,"Columbia University, 2023",(852) 2358 7573,acqdong@ust.hk,Room LSK6051,,,,,9,2,0, +418,Marc DORDAL CARRERAS,PhD in Economics,"Berkeley, 2021",(852) 2358 7964,marcdordal@ust.hk,Room LSK6078,,,,,48,2,1, +419,Molong DUAN,PhD in Mechanical Engineering,"University of Michigan, 2018",(852) 3469 3024,duan@ust.hk,Room 2570,,,,,302,9,9, +420,Sophie Linying FAN,PhD in Marketing,"The Hong Kong Polytechnic University, 2019",(852) 2358 7693,sophiefan@ust.hk,Room LSK4004,,,,,36,2,1, +421,Junlong FENG,PhD in Economics,"Columbia University, 2020",(852) 2358 7616,jlfeng@ust.hk,Room LSK6073,,,,,33,3,2, +422,Carlos Manuel FERNÁNDEZ-LORÍA,PhD in Information Systems,"New York University, 2021",(852) 3469 3027,imcarlos@ust.hk,Room LSK5054A,,,,,215,7,5, +423,Lin FU,PhD in Information Systems,,(852) 3469 2969,linfu@ust.hk,Room 2606A,,,,,151,6,5, +424,Hanyu GAO,PhD in Chemical and Biological Engineering,"Northwestern University, 2017",(852) 3469 2443,hanyugao@ust.hk,Room CYT2002B,,,,,1233,11,13, +425,Robin Kaiji GONG,PhD in Economics,"Stanford University, 2019",(852) 2358 7595,rkgong@ust.hk,Room LSK6058,,,,,71,3,1, +426,Dasa GU,PhD in Earth and Atmospheric Sciences,"The Georgia Institute of Technology, 2014",(852) 2358 8789,dasagu@ust.hk,Room 4367,,,,,795,15,20, +427,Xinzhou GUO,PhD in Statistics,"University of Michigan, 2019",(852) 2358 7436,xinzhoug@ust.hk,Room 3433,,,,,78,4,2, +428,David HAGMANN,PhD in Behavioral Decision Research,"Carnegie Mellon University, 2018",(852) 2358 6356,hagmann@ust.hk,Room LSK5053,,,,,1420,7,7, +429,Jonathan Eugene HALPERT,PhD in Physical Chemistry,"Massachusetts Institute of Technology, 2008",(852) 3469 2628,jhalpert@ust.hk,Room 4545,,,,,147,5,5, +430,Ding HE,PhD in Chemistry,"Florida International University, 2014",(852) 2358 7346,dinghe@ust.hk,Room CYT5006,,,,,1215,19,40, +431,Junxian HE,PhD in Language and Information Technologies,"Carnegie Mellon University, 2022",(852) 2358 8765,junxianh@ust.hk,Room 3512,,,,,2915,22,29, +432,Yukinori HIRANO,PhD in Language and Information Technologies,,(852) 2358 8031,yukinori@ust.hk,Room 5505A,,,,,0,0,0, +433,Quoc HO,PhD in Mathematics,"The University of Chicago, 2017",(852) 2358 7450,maqho@ust.hk,Room 3477,,,,,366,9,9, +434,Yu HU,PhD in Applied Mathematics,"University of Washington, 2014",(852) 2358 7415,mahy@ust.hk,Room 3443,,,,,461,8,8, +435,Jinqing HUANG,PhD in Physical Chemistry,"The University of Hong Kong, 2015",(852) 3469 2627,jqhuang@ust.hk,Room 4544,,,,,491,11,15, +436,Yangguang HUANG,PhD in Economics,"University of Washington, 2016",(852) 2358 7627,huangyg@ust.hk,Room LSK6075,,,,,115,7,6, +437,Jenny HUNG,PhD in Philosophy,"Lingnan University, 2018",(852) 2358 7761,hmjhung@ust.hk,Room 2349,,,,,21,3,0, +438,Berthold JÄCK,PhD in Philosophy,,(852) 2358 7495,bjaeck@ust.hk,Room 4435,,,,,1514,18,26, +439,Martha JEONG,PhD in Organizational Behavior,"Harvard University, 2019",(852) 2358 7735,marthajeong@ust.hk,Room LSK5054,,,,,0,0,0, +440,Sisi JIAN,PhD in Transport Network Planning,"The University of New South Wales, 2017",(852) 2358 8185,cesjian@ust.hk,Room 3589,,,,,406,11,12, +441,Jiashuo JIANG,PhD in Operations Management,"New York University, 2022",(852) 2358 8230,jsjiang@ust.hk,Room 5559B,,,,,120,6,4, +442,Qingyuan JIANG,PhD in Mathematics,"The Chinese University of Hong Kong, 2018",(852) 2358 7437,jiangqy@ust.hk,Room 3491,,,,,1430,9,9, +443,Wei JIANG,PhD in Quantitative Finance,"National University of Singapore, 2018",(852) 2358 7091,weijiang@ust.hk,Room 5548,,,,,1352,22,28, +444,Huan JIN,PhD in East Asian Languages and Civilizations,"Harvard University, 2017",(852) 2358 5943,hmhjin@ust.hk,Room 3367,,,,,10,2,0, +445,Amir KAFSHDAR GOHARSHADY,PhD in Computer Science,"Institute of Science and Technology Austria, 2021",(852) 2358 8339,goharshady@ust.hk,Room IAS2003,,,,,812,16,27, +446,Kohei KAWAGUCHI,PhD in Economics,"The London School of Economics and Political Science, 2015",(852) 2358 7613,kkawaguchi@ust.hk,Room LSK6070,,,,,241,8,8, +447,Hwa Young KIM,PhD in Management,"Los Angeles, 2022",(852) 2358 7563,achykim@ust.hk,Room LSK6049,,,,,8,1,0, +448,Yoonseob KIM,PhD in Chemical Engineering,"University of Michigan, 2016",(852) 2358 7138,yoonseobkim@ust.hk,Room CYT2002,,,,,1662,19,26, +449,Magdalena KLEMUN,PhD in Engineering Systems,"Massachusetts Institute of Technology, 2020",(852) 3469 2558,magdalena@ust.hk,Room 4337,,,,,0,0,0, +450,Becki Yi KUANG,PhD in Chemistry,"Brandeis University, 2013",(852) 3469 2617,kekuang@ust.hk,Room 5578,,,,,1864,23,33, +451,Ohchan KWON,PhD in Chemistry,,(852) 2358 7651,ohchankw@ust.hk,Room LSK4057,,,,,77,4,2, +452,Yong LAI,PhD in Microbiology,"The University of Hong Kong, 2016",(852) 2358 7237,yonglai@ust.hk,Room CYT2006A,,,,,428,10,10, +453,Byoungchan LEE,PhD in Economics,"Berkeley, 2019",(852) 2358 7596,bclee@ust.hk,Room LSK6068,,,,,112,4,3, +454,Shiming LEI,PhD in Materials Science and Engineering,"Pennsylvania State University, 2017",(852) 2358 7529,phslei@ust.hk,Room 4482,,,,,1521,23,35, +455,Jiying LI,PhD in Limnology and Oceanography,"University of Minnesota, 2014",(852) 3469 2934,jiyingli@ust.hk,Room CYT2012,,,,,425,14,15, +456,Mitch Guijun LI,PhD in Electrical and Electronic Engineering,"The University of Hong Kong, 2013",(852) 3469 2958,mitchli@ust.hk,Room 5591A,,,,,1939,24,37, +457,Sen LI,PhD in Electrical and Computer Engineering,"The Ohio State University, 2017",(852) 2358 7155,cesli@ust.hk,Room 3586,,,,,583,11,14, +458,Xiaomeng LI,PhD in Computer Science and Engineering,"The Chinese University of Hong Kong, 2019",(852) 3469 2867,eexmli@ust.hk,Room 2524,,,,,5721,23,37, +459,Xuan LI,PhD in Economics,"Columbia University, 2019",(852) 2358 7597,xuanli@ust.hk,Room LSK6042,,,,,142,8,6, +460,Yi LIAO,PhD in Chemistry,"University of Michigan, 2015",(852) 2358 7922,liaoy@ust.hk,Room 5459,,,,,1399,20,36, +461,Yatang LIN,PhD in Economics,"The London School of Economics and Political Science, 2017",(852) 2358 7625,linyt@ust.hk,Room LSK6052,,,,,574,9,9, +462,Yen Hung LIN,PhD in Experimental Solid State Physics,"Imperial College London, 2015",(852) 3469 2747,eeyen@ust.hk,Room 2422,,,,,329,5,4, +463,Zhen LIU,PhD in Experimental Solid State Physics,,(852) 3469 2553,zhenliu@ust.hk,Room 5522,,,,,0,0,0, +464,Haipeng LU,PhD in Chemistry,"University of Southern California, 2017",(852) 3469 2097,haipenglu@ust.hk,Room 4533,,,,,3991,28,43, +465,Lijian LU,PhD in Decision,"Columbia University, 2016",(852) 3469 2866,lijianlu@ust.hk,Room LSK4045,,,,,154,6,4, +466,Yanglong LU,PhD in Mechanical Engineering,"The Georgia Institute of Technology, 2020",(852) 3469 2940,maeylu@ust.hk,Room 2577D,,,,,282,7,5, +467,Zhongming LU,PhD in Environmental Engineering,"The Georgia Institute of Technology, 2015",(852) 3469 2398,zhongminglu@ust.hk,Room 4353,,,,,1220,19,27, +468,Guodong LYU,PhD in Management,"National University of Singapore, 2019",(852) 2358 7734,imlyu@ust.hk,Room LSK4035,,,,,218,6,6, +469,Jingjing MA,PhD in Industrial and Organizational Psychology,"Michigan State University, 2019",(852) 2358 7727,maj@ust.hk,Room LSK5052,,,,,1272,9,9, +470,Xiaolu MA,PhD in Comparative Literature,"Harvard University, 2017",(852) 2358 8921,hmxlma@ust.hk,Room 3377,,,,,7,2,0, +471,Julian MAK,PhD in Applied Mathematics,"The University of Leeds, 2013",(852) 3469 2823,jclmak@ust.hk,Room 5482,,,,,229,9,9, +472,Zili MENG,PhD in Applied Mathematics,,(852) 3469 2726,zilim@ust.hk,Room 2441,,,,,0,0,0, +473,Quentin MOREAU,PhD in Finance,"Paris Dauphine University, 2022",(852) 3469 2414,qmoreau@ust.hk,Room 4337,,,,,137,2,1, +474,Arthur Kent MORRIS,PhD in Business Administration,"The University of Utah, 2018",(852) 2358 7564,acarthur@ust.hk,Room LSK6015,,,,,36,3,1, +475,Stefan NAGL,PhD in Analytical Chemistry,"University of Regensburg, 2008",(852) 3469 2629,chnagl@ust.hk,Room 4546,,,,,13324,48,200, +476,Hugh NAKAMURA,PhD in Pharmaceutical Sciences,"Kyoto University, 2017",(852) 3469 2552,hnakamura@ust.hk,Room 4520,,,,,851,11,11, +477,John Gerard Francis NASH,PhD in Finance,"The University of Chicago, 2016",(852) 2358 7661,jgfnash@ust.hk,Room LSK5059,,,,,0,0,0, +478,Maximilian Alexander NITZSCHNER,PhD in Finance,,(852) 2358 7418,mnitzschner@ust.hk,Room 3435,,,,,0,0,0, +479,Don NOH,PhD in Economics,"Princeton University, 2023",(852) 2358 7039,noh@ust.hk,Room LSK5056,,,,,25,1,1, +480,Hnin Yin Yin NYEIN,PhD in Materials Science and Engineering,"Berkeley, 2020",(852) 3469 2241,hnyein@ust.hk,Room CYT2005,,,,,8483,23,23, +481,Jun OH,PhD in Accounting,"Cornell University, 2023",(852) 2358 7588,acjo@ust.hk,Room LSK6005,,,,,7,2,0, +482,Deniz OKAT,PhD in Finance,"Aalto University, 2016",(852) 2358 7672,okat@ust.hk,Room LSK5058,,,,,12,2,0, +483,Ling PAN,PhD in Engineering,"Tsinghua University, 2022",(852) 3469 2725,lingpan@ust.hk,Room 2447,,,,,415,9,9, +484,Yuxin PAN,PhD in Civil Engineering,"The University of British Columbia, 2018",(852) 2358 5976,ceypan@ust.hk,Room 5536,,,,,61,3,1, +485,Eunyoung PARK,PhD in Business Administration,"Arizona State University, 2022",(852) 2358 7740,eunyoungpark@ust.hk,Room LSK5031,,,,,43,2,1, +486,Sang Kyu PARK,PhD in Marketing,"The University of Florida, 2021",(852) 2358 7696,sangkyupark@ust.hk,Room LSK4053,,,,,7,2,0, +487,Lionel PARREAUX,PhD in Marketing,,(852) 2358 8341,parreaux@ust.hk,Room 3547,,,,,196,7,6, +488,Zhichao PENG,PhD in Applied Mathematics,"Rensselaer Polytechnic institute, 2020",(852) 2358 7466,pengzhic@ust.hk,Room 3446,,,,,91,7,2, +489,Shuaijie QIAN,PhD in Mathematics,"National University of Singapore, 2020",(852) 2358 7422,sjqian@ust.hk,Room 3488,,,,,102,7,5, +490,Quentin Zhen QIN,PhD in Linguistics,"The University of Kansas, 2017",(852) 2358 7797,hmzqin@ust.hk,Room 3368,,,,,278,9,9, +491,Jishen QIU,PhD in Civil Engineering,"Nanyang Technological University, 2016",(852) 2358 5974,cejqiu@ust.hk,Room 3577,,,,,1609,19,22, +492,Yangjian QUAN,PhD in Chemistry,"The Chinese University of Hong Kong, 2015",(852) 3469 2550,chyjquan@ust.hk,Room 4532,,,,,1817,28,35, +493,Deyu RAO,PhD in Applied Economics,"Cornell University, 2022",(852) 2358 7602,dyrao@ust.hk,Room LSK6072,,,,,191,3,2, +494,Stephane REDONNET,PhD in Computational AeroAcoustics,"Marseille, 2016",(852) 2358 7192,redonnet@ust.hk,Room 2577F,,,,,267,11,11, +495,Sayan SARKAR,PhD in Strategy and Entrepreneurship,"London Business School, 2021",(852) 2358 7745,sarkar@ust.hk,Room LSK5071,,,,,26,2,2, +496,Rob SCHARFF,PhD in Design Engineering,"Delft University of Technology, 2021",(852) 3469 2848,scharffrbn@ust.hk,Room 5591D,,,,,1058,14,17, +497,Julie SEMMELHACK,PhD in Biology,"San Diego, 2009",(852) 3469 2677,jsemmelhack@ust.hk,Room 5507A,,,,,677,7,7, +498,Yafeng SHAN,PhD in Philosophy,"University College London, 2016",(852) 2358 7807,hmyfshan@ust.hk,Room 3356,,,,,0,0,0, +499,Qiming SHAO,PhD in Electrical and Computer Engineering,"Los Angeles, 2019",(852) 2358 7042,eeqshao@ust.hk,Room 2442,,,,,3739,29,41, +500,Dongdong SHE,PhD in Computer Science,"Columbia University, 2023",(852) 2358 7029,dongdong@ust.hk,Room 3505,,,,,550,8,8, +501,Jiasi SHEN,PhD in Computer Science and Engineering,"Massachusetts Institute of Technology, 2022",(852) 2358 8835,sjs@ust.hk,Room CYT3002B,,,,,99,7,4, +502,Yifan SHEN,PhD in Sociology,"Brown University, 2022",(852) 3469 2422,yifanshen@ust.hk,Room 2370,,,,,22,3,1, +503,Yiwen SHEN,PhD in Operations Management,"Columbia University, 2021",(852) 2358 7581,yiwenshen@ust.hk,Room LSK4067,,,,,301,8,7, +504,Fan SHI,PhD in Mechanical Engineering,"Imperial College London, 2016",(852) 2358 7196,maefanshi@ust.hk,Room 2544,,,,,244,10,10, +505,June Zijun SHI,PhD in Industrial Administration,"Carnegie Mellon University, 2019",(852) 2358 7695,juneshi@ust.hk,Room LSK4052,,,,,167,5,5, +506,Xiaoming SHI,PhD in Atmospheric Sciences,"University of Washington, 2015",(852) 3469 2396,shixm@ust.hk,Room 4352,,,,,343,11,11, +507,Dongwook SHIN,PhD in Decision,"Columbia University, 2017",(852) 3469 2127,dwshin@ust.hk,Room LSK4068,,,,,110,6,4, +508,Shenghui SONG,PhD in Electrical Engineering,"City University of Hong Kong, 2006",(852) 2358 5033,eeshsong@ust.hk,Room 6532,,,,,2370,16,25, +509,Benjamin STEUER,PhD in Chinese Studies,"University of Vienna, 2018",(852) 3469 2557,bst@ust.hk,Room 4362,,,,,400,10,11, +510,Wei SU,PhD in Chinese Studies,,(852) 3469 2415,weisu@ust.hk,Room 4340,,,,,8217,38,185, +511,Chao TANG,PhD in Accounting,"University of Minnesota, 2018",(852) 2358 7586,actang@ust.hk,Room LSK6021,,,,,7,2,0, +512,Rong TANG,PhD in Statistics,"Champaign, 2023",(852) 2358 7458,martang@ust.hk,Room 3432,,,,,20,3,0, +513,Rui TANG,PhD in Economics,"Princeton University, 2021",(852) 2358 7969,ruitang@ust.hk,Room LSK6082,,,,,35,4,0, +514,Di TIAN,PhD in Economics,"University of Pennsylvania, 2023",(852) 2358 8202,ditian@ust.hk,Room LSK5074,,,,,1022,18,27, +515,Fengbin TU,PhD in Economics,,(852) 2358 7043,fengbintu@ust.hk,Room 2418,,,,,1099,16,20, +516,Masayuki USHIO,PhD in Economics,,(852) 3469 2938,ushio@ust.hk,Room CYT2013,,,,,2822,25,40, +517,Kenward VONG,PhD in Biological Chemistry,"McGill University, 2013",(852) 3469 2551,kvong@ust.hk,Room 4521,,,,,0,0,0, +518,Danqing WANG,PhD in Management,"INSEAD, 2014",(852) 2358 7743,danqingw@ust.hk,Room LSK5029,,,,,699,6,5, +519,Emily Jing WANG,PhD in Accounting,"The University of British Columbia, 2018",(852) 2358 7560,acemily@ust.hk,Room LSK6027,,,,,1054,10,10, +520,Ke WANG,PhD in Mathematics,"The State University of New Jersey, 2013",(852) 3469 2016,kewang@ust.hk,Room 3434,,,,,393,8,7, +521,Lan WANG,PhD in Chemistry,"Harvard University, 2016",(852) 2358 7271,lanwang@ust.hk,Room 5472,,,,,228,8,8, +522,Shuai WANG,PhD in Information Sciences and Technology,"Pennsylvania State University, 2018",(852) 2358 8328,shuaiw@ust.hk,Room CYT3003,,,,,0,0,0, +523,Walter Zhe WANG,PhD in Building Science,"Tsinghua University, 2017",(852) 2358 8753,cezhewang@ust.hk,Room 3564,,,,,5052,39,70, +524,Wen WANG,PhD in Economics,"Duke University, 2020",(852) 2358 7830,wenwangww@ust.hk,Room 2352,,,,,7,1,0, +525,Xiaoliang WANG,PhD in Economics,"University of Pennsylvania, 2023",(852) 2358 7676,xlwangfin@ust.hk,Room LSK5060,,,,,0,0,0, +526,Xin WANG,PhD in Operations Management,"Carnegie Mellon University, 2016",(852) 2358 7982,xinwang@ust.hk,Room 5543,,,,,230,4,4, +527,Yan WANG,PhD in Applied Marine Physics,"University of Miami, 2015",(852) 3469 2801,yanwang@ust.hk,Room 5485,,,,,367,10,11, +528,Terence Tsz Wai WONG,PhD in Biomedical Engineering,"Washington University, 2018",(852) 2358 6929,ttwwong@ust.hk,Room 5579,,,,,1570,18,25, +529,Allen Chenguang WU,PhD in Industrial Engineering and Management Sciences,"Northwestern University, 2018",(852) 2358 7116,allenwu@ust.hk,Room 5559A,,,,,72,5,2, +530,Longjun WU,PhD in Biology,"University of Rochester, 2019",(852) 2358 8251,longjunwu@ust.hk,Room CYT2013B,,,,,75,5,3, +531,Qinggong WU,PhD in Economics,"University of Michigan, 2016",(852) 2358 7615,wqg@ust.hk,Room LSK6081,,,,,34,3,1, +532,Alex WYATT,PhD in Marine Ecology and Oceanography,"The University of Western Australia, 2011",(852) 3469 2824,wyatt@ust.hk,Room 5484,,,,,1040,17,20, +533,Dong XIA,PhD in Computational Science and Engineering,"The Georgia Institute of Technology, 2016",(852) 3469 2244,madxia@ust.hk,Room 3431,,,,,867,16,17, +534,Lucy XIA,PhD in Operations Research and Financial Engineering,"Princeton University, 2015",(852) 3469 2126,lucyxia@ust.hk,Room LSK4082,,,,,113,7,6, +535,Changying XIANG,PhD in Architecture,"Norwegian University of Science and Technology, 2022",(852) 3469 2402,changyingx@ust.hk,Room 5591B,,,,,2492,23,25, +536,Zhiyao XIE,PhD in Computer Engineering,"Duke University, 2022",(852) 3469 2959,eezhiyao@ust.hk,Room 2437,,,,,490,10,10, +537,Yan XIONG,PhD in Finance,"University of Toronto, 2019",(852) 2358 7882,yanxiong@ust.hk,Room LSK5061,,,,,143,7,7, +538,Dan XU,PhD in Information and Communication Technology,"University of Trento, 2018",(852) 2358 8837,danxu@ust.hk,Room 3509,,,,,6444,40,70, +539,Qin XU,PhD in Physics,"The University of Chicago, 2015",(852) 2358 8591,qinxu@ust.hk,Room 4479,,,,,1740,16,21, +540,Tianju XUE,PhD in Civil and Environmental Engineering,"Princeton University, 2022",(852) 2358 7151,cetxue@ust.hk,Room 3573,,,,,270,10,10, +541,Wei XUE,PhD in Civil and Environmental Engineering,,(852) 3469 2558,weixue@ust.hk,Room 4337,,,,,347,10,10, +542,Daniel G YANG,PhD in Accounting and Management Information Systems,"The Ohio State University, 2022",(852) 2358 7583,acdy@ust.hk,Room LSK6026,,,,,1199,19,28, +543,Jiachuan YANG,PhD in Civil,"Arizona State University, 2016",(852) 2358 8184,cejcyang@ust.hk,Room 3590,,,,,1731,24,34, +544,Yansong YANG,PhD in Electrical and Computer Engineering,"Champaign, 2019",(852) 3469 2284,eeyyang@ust.hk,Room 2397,,,,,2142,25,50, +545,Eyub YEGEN,PhD in Finance,"University of Toronto, 2021",(852) 2358 7679,yegen@ust.hk,Room LSK5077,,,,,0,0,0, +546,Zhitao YIN,PhD in Information Systems,"Georgia State University, 2019",(852) 2358 7647,zhitaoyin@ust.hk,Room LSK4058,,,,,1491,3,3, +547,Wei YOU,PhD in Operations Research,"Columbia University, 2019",(852) 2358 8233,weiyou@ust.hk,Room 5559D,,,,,104,6,5, +548,Yantao YU,PhD in Smart Construction,"The Hong Kong Polytechnic University, 2020",(852) 2358 7201,ceyantao@ust.hk,Room 3576,,,,,2420,19,22, +549,Binhang YUAN,PhD in Computer Science,"Rice University, 2020",(852) 2358 6978,biyuan@ust.hk,Room 3517,,,,,1003,13,15, +550,Charmaine YUNG,PhD in Marine Science and Conservation,"Duke University, 2016",(852) 3469 2825,ccmyung@ust.hk,Room CYT,,,,,509,9,9, +551,Tobias Benedikt ZÜRN,PhD in Chinese Studies,"Madison, 2016",(852) 2358 7806,hmtzuern@ust.hk,Room 3343,,,,,29,2,1, +552,Ruohan ZHAN,PhD in Computational and Mathematical Engineering,"Stanford University, 2021",(852) 2358 7110,rhzhan@ust.hk,Room 5559E,,,,,450,10,10, +553,Dong ZHANG,PhD in Political Science,"Northwestern University, 2016",(852) 2358 7819,dongzhang@ust.hk,Room 2381,,,,,0,0,0, +554,Han ZHANG,PhD in Sociology,"Princeton University, 2020",(852) 2358 8400,zhangh@ust.hk,Room 2379,,,,,240,6,3, +555,Jingdi ZHANG,PhD in Physics,"Boston University, 2014",(852) 2358 8451,jdzhang@ust.hk,Room 4441,,,,,1911,24,30, +556,Jize ZHANG,PhD in Civil Engineering,"University of Notre Dame, 2019",(852) 2358 7162,cejize@ust.hk,Room 3565,,,,,533,12,14, +557,Lisheng ZHANG,PhD in Chemistry,"The University of Chicago, 2019",(852) 3469 2392,zhangls@ust.hk,Room 5521,,,,,1218,16,20, +558,Qiong ZHANG,PhD in Earth Sciences,"University of Oxford, 2017",(852) 2358 8254,qiongz@ust.hk,Room CYT2013A,,,,,0,0,0, +559,Rui ZHANG,PhD in Physics,"The City University of New York, 2013",(852) 2358 5734,ruizhang@ust.hk,Room 4460,,,,,0,0,0, +560,Shenghan ZHANG,PhD in Physics,,(852) 2358 5973,ceshenghan@ust.hk,Room 3594,,,,,339,9,9, +561,Tianlong ZHANG,PhD in Materials Science and Engineering,"City University of Hong Kong, 2021",(852) 2358 6169,tianlong@ust.hk,Room 2554,,,,,2169,17,19, +562,Yihan ZHANG,PhD in Electrical Engineering,"Columbia University, 2020",(852) 3469 2727,eeyihan@ust.hk,Room 2431,,,,,444,10,11, +563,Xiaofan ZHAO,PhD in Public Administration,"Tsinghua University, 2018",(852) 3469 2415,xfzhao@ust.hk,Room 4340,,,,,696,13,16, +564,Qiye ZHENG,PhD in Materials Science and Engineering,"Champaign, 2017",(852) 3469 2939,qiyezheng@ust.hk,Room 2543,,,,,1725,19,21, +565,Wenjuan ZHENG,PhD in Sociology,"The City University of New York, 2018",(852) 2358 7827,wjzheng@ust.hk,Room 2346,,,,,41,3,1, +566,Yue ZHENG,PhD in Business and Management,"The University of Maryland, 2017",(852) 2358 7569,aczheng@ust.hk,Room LSK6050,,,,,155,5,3, +567,Yanguang ZHOU,PhD in Mechanical Engineering,"RWTH Aachen University, 2017",(852) 2358 7204,maeygzhou@ust.hk,Room 2577A,,,,,1058,18,37, +568,Zoey Yiyuan ZHOU,PhD in Finance,"The University of Hong Kong, 2023",(852) 3469 2540,zoeyzhou@ust.hk,Room 4354,,,,,227,3,1, +569,Bonnie Danqing ZHU,PhD in Bioengineering,"Stanford University, 2018",(852) 3469 2526,dqzhu@ust.hk,Room 4572A,,,,,616,8,8, +570,Yicheng ZHU,PhD in Finance,"University of Pennsylvania, 2020",(852) 2358 5051,yichengz@ust.hk,Room LSK5080,,,,,84,3,3, +571,Amy Kit Yu FU,PhD in Biology,"The Hong Kong University of Science and Technology, 1998",(852) 2358 5740,boamy@ust.hk,Room 5477,,,,,2585,27,54, +572,Kei May LAU,PhD in Electrical Engineering,"Rice University, 1981",(852) 2358 7049,eekmlau@ust.hk,Room 2452,,,,,7367,45,163, +573,Frankie CHIU,PhD in Electronic Engineering,"City University of Hong Kong, 2005",(852) 3469 2262,eefrankie@ust.hk,Room 2413,,,,,1614,19,36, +574,Wei HAN,PhD in Physical Chemistry,"Graduate University of the Chinese Academy of Sciences, 2008",(852) 3469 2410,keweihan@ust.hk,Room 4335,,,,,1341,23,32, +575,Wing Yip LAM,PhD in Chemistry,"The Hong Kong University of Science and Technology, 2003",(852) 2358 7242,chjacky@ust.hk,Room CYT6004,,,,,4405,36,118, +576,Moez LOUATI,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2016",(852) 3469 2683,mzlouati@ust.hk,Room 4605,,,,,0,0,0, +577,Syed Mohsin ABBAS,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2017",,abbassm@ust.hk,Room CYT3008,,,,,310,10,11, +578,Mirza Muhammad Faran Ashraf BAIG,PhD in Biopharmaceutical and Medicinal Chemistry,"Nanjing University, 2020",(852) 2358 8805,faran@ust.hk,Room 4522,,,,,1514,20,42, +579,Lanlan CAI,PhD in Environmental Science,"Xiamen University, 2016",(852) 2358 7337,cailanlan@ust.hk,Room CYT5007,,,,,458,12,13, +580,Shuai CHEN,PhD in Condensed Matter Physics,"Tsinghua University, 2021",(852) 3469 2265,chsh@ust.hk,Room 4484,,,,,0,0,0, +581,Xiangke CHEN,PhD in Biomedical Sciences,"The University of Hong Kong, 2021",(852) 2358 7345,xkchen@ust.hk,Room 6201H,,,,,840,14,15, +582,Yi CHEN,PhD in Biomedical Sciences,,(852) 2358 8805,atmoschenyi@ust.hk,Room 4522,,,,,1382,22,30, +583,Jun Kang CHOW,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2019",(852) 2358 8700,junkangchow@ust.hk,Room 1206E,,,,,475,10,11, +584,Lun DAI,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2021",(852) 2358 7152,dailun@ust.hk,Room 4598,,,,,98,6,5, +585,Yangfan DENG,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2021",(852) 2358 7152,yfdeng@ust.hk,Room 3599,,,,,1351,23,36, +586,Shimin DI,PhD in Computer Science and Engineering,"The Hong Kong University of Science and Technology, 2022",,dishimin@ust.hk,Room 3208A,,,,,149,6,6, +587,Amartansh DUBEY,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2022",(852) 3469 2865,eedubey@ust.hk,Room 2455,,,,,0,0,0, +588,Pip FREESTONE,PhD in Applied Linguistics,"University of Reading, 2020",,hmdrpip@ust.hk,Room 2387,,,,,1514,18,26, +589,Liuqing GAO,PhD in Electrical and Computer Engineering,"Champaign, 2022",(852) 2358 6002,eelgao@ust.hk,Room 2427,,,,,467,10,10, +590,Dengyang GUO,PhD in Chemical Engineering,"Delft University of Technology, 2019",(852) 3469 2265,dyguo@ust.hk,Room 4484,,,,,1373,15,16, +591,Huayan GUO,PhD in Chemical Engineering,,(852) 2358 1458,eeguohuayan@ust.hk,Room 3116,,,,,2735,16,16, +592,Jiarui HAN,PhD in Environmental Engineering,"The Hong Kong University of Science and Technology, 2019",(852) 2358 8761,jrhan@ust.hk,Room 2200A,,,,,1145,15,16, +593,Hengtao HE,PhD in Information and Communication Engineering,"Southeast University, 2021",(852) 2358 5003,eehthe@ust.hk,Room 2412,,,,,1985,13,16, +594,Jian HE,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2022",(852) 2358 7152,hejian@ust.hk,Room 4598,,,,,3004,23,24, +595,Peng HUA,PhD in Mechanical Engineering,"The Hong Kong University of Science and Technology, 2019",(852) 3469 2223,penghua@ust.hk,Room 2566,,,,,402,10,10, +596,Jingyang HUANG,PhD in Social Science,"The Hong Kong University of Science and Technology, 2022",(852) 2358 7831,jyhuangw@ust.hk,Room 3351,,,,,43,4,2, +597,Linus Ta-Lun HUANG,PhD in History and Philosophy of Science,"The University of Sydney, 2017",(852) 2358 7805,linushuang@ust.hk,Room 2387,,,,,155,6,4, +598,Hongwei JIA,PhD in History and Philosophy of Science,,(852) 2358 7980,jiahongwei@ust.hk,Room 4433,,,,,404,9,9, +599,Arash KAZEMIAN,PhD in Power Engineering and Engineering Thermophysics,"Shanghai Jiao Tong University, 2022",,arash@ust.hk,Room IAS1004,,,,,1415,17,18, +600,Ryan Tsz Kin KWOK,PhD in Nano Science and Technology,"The Hong Kong University of Science and Technology, 2013",(852) 3469 2692,chryan@ust.hk,Room 4095,,,,,25297,83,240, +601,Yi LAN,PhD in Life Science,"The Hong Kong University of Science and Technology, 2020",,wylan@ust.hk,Room 3641,,,,,744,13,14, +602,Shuohui LI,PhD in Theoretical Physics,"University of Chinese Academy of Sciences, 2020",(852) 2358 7530,shuohuili@ust.hk,Room 4423,,,,,238,3,3, +603,Zhenning LI,PhD in Theoretical Physics,,(852) 3469 2556,lzhenn@ust.hk,Room 4410,,,,,714,14,19, +604,Kezheng LIAO,PhD in Chemistry,"The Hong Kong University of Science and Technology, 2023",(852) 3469 2946,liaokezheng@ust.hk,Room CYT5011,,,,,1047,18,21, +605,Jacky LIE,PhD in Physics,"Champaign, 2015",(852) 3469 2802,iaskilie@ust.hk,Room 4413,,,,,712,11,13, +606,Changqing LIN,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2016",(852) 2358 8316,cqlin@ust.hk,Room 4332,,,,,3726,32,54, +607,Chongjia LIN,PhD in Mechanical Engineering,"The Hong Kong University of Science and Technology, 2021",(852) 3469 3205,justinlin@ust.hk,Room 2604,,,,,657,14,18, +608,Zehong LIN,PhD in Information Engineering,"The Chinese University of Hong Kong, 2022",(852) 2358 7074,eezhlin@ust.hk,Room 3112A,,,,,128,6,4, +609,Changdong LIU,PhD in Radio Physics,"The East China Normal University, 2010",(852) 2358 8713,lcd@ust.hk,Room 6318,,,,,331,12,12, +610,Deyun LIU,PhD in Civil and Environmental Engineering Research,"Imperial College London, 2022",(852) 2358 7152,deyunliu@ust.hk,Room 4598,,,,,188,8,6, +611,Wenzhe LIU,PhD in Physics,"Fudan University, 2020",(852) 2358 7530,wzliu@ust.hk,Room 4423,,,,,1148,13,13, +612,Yang LIU,PhD in Philosophy,"Columbia University, 2015",(852) 3469 2370,hmyliu@ust.hk,Room IAS2025,,,,,376,8,8, +613,Ziyi LIU,PhD in Computer Science,"The University of Queensland, 2023",,zyl@ust.hk,Room 3208A,,,,,46,5,1, +614,Xiaoxuan MENG,PhD in Systems Engineering and Engineering Management,"City University of Hong Kong, 2015",(852) 2358 7622,xxmeng@ust.hk,Room LSK6016A,,,,,78,5,3, +615,Quanhua MU,PhD in Bioengineering,"The Hong Kong University of Science and Technology, 2020",(852) 2358 7921,qmucbe@ust.hk,Room 5505,,,,,1856,15,18, +616,Gleb PAPYSHEV,PhD in Public Policy,"The Hong Kong University of Science and Technology, 2023",(852) 2358 7817,gleb@ust.hk,Room 3351,,,,,49,3,1, +617,Jun QIAN,PhD in Electronic and Electrical Engineering,"University College London, 2022",(852) 3469 2531,eejunqian@ust.hk,Room 3116,,,,,7050,45,113, +618,Shuang QIU,PhD in Computer Science and Engineering,"University of Michigan, 2021",(852) 3469 2246,masqiu@ust.hk,Room 3442,,,,,560,13,16, +619,Tongming QU,PhD in Computational Ceomechanics,"Swansea University, 2022",(852) 2358 7152,tongmingqu@ust.hk,Room 3599,,,,,2194,25,53, +620,Pui San SO,PhD in Civil Engineering,"The Hong Kong University of Science and Technology, 2021",(852) 2358 6294,cepsso@ust.hk,Room 3583,,,,,195,7,6, +621,Weizhi SONG,PhD in Bioinformatics and Microbial Ecology,"The University of New South Wales, 2019",,ocessongwz@ust.hk,Room 3641,,,,,449,11,12, +622,Honglei TIAN,PhD in Biochemistry,"The Hong Kong University of Science and Technology, 2015",(852) 2358 5022,thl@ust.hk,Room 7165,,,,,362,9,9, +623,Man Chun TSENG,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2016",(852) 2358 5034,eemcken@ust.hk,Room 2435,,,,,323,9,8, +624,Renjun TU,PhD in Genetics,"Southeast University, 2017",(852) 2358 7345,renjuntu@ust.hk,Room 6315,,,,,155,7,4, +625,Maolin WANG,PhD in Electrical and Electronic Engineering,"The University of Hong Kong, 2020",(852) 2356 3179,maolinwang@ust.hk,Room CYT3013,,,,,192,5,4, +626,Xiaoyu WANG,PhD in Electrical and Electronic Engineering,,(852) 2358 8572,maxywang@ust.hk,Room 3450,,,,,0,0,0, +627,Victor Junqiu WEI,PhD in Computer Science and Engineering,"The Hong Kong University of Science and Technology, 2018",(852) 2358 8329,victorwei@ust.hk,Room 2538,,,,,218,7,6, +628,Chi Ho WONG,PhD in Physics,"The Hong Kong University of Science and Technology, 2015",(852) 2358 7530,chkhwong@ust.hk,Room 4423,,,,,212,9,9, +629,Hiu Yi WONG,PhD in Immunology,"National University of Singapore, 2019",(852) 2358 7279,annawong@ust.hk,Room 6313,,,,,3533,28,72, +630,Buchen WU,PhD in Mechanical Engineering,"National University of Singapore, 2023",(852) 3469 3206,buchenwu@ust.hk,Room 2604,,,,,89,6,5, +631,Mengxi WU,PhD in Earth,"Brown University, 2021",(852) 2358 7152,mengxiwu@ust.hk,Room 3599,,,,,64,6,2, +632,Huijuan XIAO,PhD in Environmental Engineering,"The Hong Kong Polytechnic University, 2023",(852) 2358 8761,xiaohj@ust.hk,Room 2200A,,,,,747,14,14, +633,Dongfang XU,PhD in Environmental Engineering,,,eedxu@ust.hk,Room IAS1004,,,,,2913,19,20, +634,Ting XU,PhD in Biology,"Hong Kong Baptist University, 2018",,tingxu@ust.hk,Room 3641,,,,,913,16,20, +635,Xian XU,PhD in Individualized Interdisciplinary Program,"The Hong Kong University of Science and Technology, 2023",(852) 3469 2413,xianxu@ust.hk,Room 4363,,,,,46,2,2, +636,Ying XUE,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2022",(852) 2358 8843,yingxue@ust.hk,Room temperature,,,,,447,13,14, +637,Liangliang YANG,PhD in Organic Chemistry,"Nankai University, 2020",(852) 2358 7376,yangll@ust.hk,Room CYT6014,,,,,264,6,5, +638,Xiong YANG,PhD in Biomedical Engineering,"City University of Hong Kong, 2022",(852) 2358 7035,eexiongyang@ust.hk,Room UC108,,,,,381,10,10, +639,Fangxin Francine YI,PhD in Urban Development and Policy,"National University of Singapore, 2020",(852) 3469 2410,francineyi@ust.hk,Room 4335,,,,,330,4,4, +640,Huan YIN,PhD in Control Science and Engineering,"Zhejiang University, 2021",(852) 3469 3070,eehyin@ust.hk,Room UC111,,,,,616,15,17, +641,Xu YU,PhD in Environmental Science,"Graduate University of the Chinese Academy of Sciences, 2019",(852) 3469 2556,yuxu@ust.hk,Room 4355,,,,,10484,50,219, +642,Qinbai YUN,PhD in Materials Science and Engineering,"Nanyang Technological University, 2020",(852) 3469 2003,qinbaiyun@ust.hk,Room CYT4005,,,,,4496,31,44, +643,Zhixiong ZENG,PhD in Geotechnics,"cole des Ponts ParisTech, 2021",(852) 2358 7152,zhixiongzeng@ust.hk,Room 4598,,,,,142,5,4, +644,Bingchao ZHANG,PhD in Architecture,"The University of Tokyo, 2021",(852) 2358 7152,zhangbc@ust.hk,Room 2200A,,,,,2220,12,15, +645,Daquan ZHANG,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2020",(852) 2358 5714,eedzhangai@ust.hk,Room 3114A,,,,,2219,19,24, +646,Dong ZHANG,PhD in Electronic and Computer Engineering,,(852) 2358 7035,dongz@ust.hk,,,,,,0,0,0, +647,Junxue ZHANG,PhD in Computer Science and Engineering,"The Hong Kong University of Science and Technology, 2022",(852) 2358 7000,zjx@ust.hk,Room 2542,,,,,594,13,17, +648,Qianpeng ZHANG,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2019",(852) 2358 5714,eeqzhangaf@ust.hk,Room 3114A,,,,,3024,28,37, +649,Ruoyang ZHANG,PhD in Physics,"Nankai University, 2016",(852) 2358 7530,ruoyangzhang@ust.hk,Room 4423,,,,,863,17,29, +650,Shuaizhong ZHANG,PhD in Microsystems,"Eindhoven University of Technology, 2019",(852) 3469 3023,szzhang@ust.hk,Room 2604,,,,,447,9,9, +651,Qinglan ZHAO,PhD in Chemical Engineering,"The University of Queensland, 2019",(852) 2358 7128,keqzhao@ust.hk,Room 4564,,,,,1388,22,34, +652,Shiwei ZHAO,PhD in Chemical Engineering,,(852) 2358 8761,ceswzhao@ust.hk,Room 2200A,,,,,2055,20,29, +653,Peng ZHOU,PhD in Mechanical Engineering,"The Hong Kong University of Science and Technology, 2021",(852) 3469 2230,pengzhou@ust.hk,Room 2566,,,,,330,8,8, +654,Lilong CAI,PhD in Robotics,"University of Toronto, 1990",(852) 2358 7209,melcai@ust.hk,Room 2545,,,,,1263,19,39, +655,Hoi Sing KWOK,PhD in Applied Physics,"Harvard University, 1978",(852) 2358 7056,eekwok@ust.hk,Room CYT4013,,,,,13147,43,246, +656,Kung Wai Christine LOH,PhD in Applied Physics,,(852) 2358 8064,cloh@ust.hk,Room 4332,,,,,0,0,0, +657,Barry Victor SAUTMAN,PhD in Political Science,"Columbia University, 1990",(852) 2358 7821,sobarrys@ust.hk,Room 3383,,,,,1282,20,34, +658,Roger KING,PhD in Finance,"The Hong Kong University of Science and Technology, 2006",(852) 2358 8259,rking@ust.hk,Room LSK5004,,,,,977,13,15, +659,Qian PENG,PhD in Finance,"The Hong Kong University of Science and Technology, 2007",(852) 2358 8259,pengq@ust.hk,Room LSK5004,,,,,0,0,0, +660,Paul KITNEY,PhD in Economics,"Australian National University, 2015",(852) 2358 7598,pkitney@ust.hk,Room LSK6056,,,,,5790,15,18, +661,Donald LOW,PhD in Economics,,(852) 3469 2579,donaldlow@ust.hk,Room 4616F,,,,,170,6,3, +662,Stephen William NASON,PhD in Management and Organization,"University of Southern California, 1994",(852) 2358 7759,mnsnason@ust.hk,Room LSK5020,,,,,0,0,0, +663,Joseph SALVACRUZ,PhD in Agricultural Economics,"University of Kentucky, 1993",(852) 2358 7697,mkjcs@ust.hk,Room LSK4007,,,,,0,0,0, +664,Tian Wen CHEN,PhD in Physics,"The Chinese University of Hong Kong, 2004",(852) 2358 7983,twchen@ust.hk,Room 4444,,,,,309,4,4, +665,Garvin Percy DIAS,PhD in Computer Science,"Fudan University, 1998",(852) 2358 7654,percy@ust.hk,Room LSK4037,,,,,0,0,0, +666,Julian Mcallister GROVES,PhD in Sociology,"The University of North Carolina at Chapel Hill, 1992",(852) 2358 7814,sojulian@ust.hk,Room 3371,,,,,0,0,0, +667,Thomas Wei Chung HU,PhD in Education,"University of South Australia, 2006",(852) 2358 7179,thomashu@ust.hk,Room 3585,,,,,1478,22,39, +668,Jeevan JAISINGH,PhD in Management Information Systems,"Purdue University, 2003",(852) 2358 7639,jeevan@ust.hk,Room LSK4038,,,,,0,0,0, +669,Ice Wai Ping KO,PhD in Ecology and Biodiversity,"The University of Hong Kong, 1999",(852) 2358 8923,iceko@ust.hk,Room 5444,,,,,0,0,0, +670,James Sai Ho KWOK,PhD in Electrical and Electronic Engineering,"Imperial College London, 1997",(852) 2358 7652,jkwok@ust.hk,Room LSK4080,,,,,12797,43,118, +671,Veronique J A LAFON-VINAIS,PhD in Electrical and Electronic Engineering,,(852) 2358 7686,vlafon@ust.hk,Room LSK5078,,,,,0,0,0, +672,Ronald LAU,PhD in Operations Management,"The University of Alabama, 1991",(852) 2358 8348,rlau@ust.hk,Room LSK4081,,,,,8771,50,159, +673,Winnie Suk Wai LEUNG,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2010",(852) 2358 7062,eewswleung@ust.hk,Room 6531,,,,,0,0,0, +674,Xin LIANG,PhD in Education,"The Chinese University of Hong Kong, 2008",(852) 2358 7847,lcsheila@ust.hk,Room 3310,,,,,1769,24,44, +675,Betty LIN,PhD in Education,,(852) 3469 2235,bettylin@ust.hk,Room 4366,,,,,360,12,13, +676,Marshal Yuanshuai LIU,PhD in Biochemical Engineering,"The Hong Kong Polytechnic University, 2007",(852) 2358 8409,keysliu@ust.hk,Room 4551,,,,,957,7,5, +677,Robin Lok Wang MA,PhD in Materials Science and Engineering,"The University of New South Wales, 2005",(852) 3469 2231,melwma@ust.hk,Room 2606B,,,,,0,0,0, +678,Kelvin P MAK,PhD in Accounting,"City University of Hong Kong, 2010",(852) 2358 7571,acmak@ust.hk,Room LSK6055,,,,,0,0,0, +679,Emily M NASON,PhD in Management,"Los Angeles, 2005",(852) 2358 7746,enason@ust.hk,Room 4008,,,,,0,0,0, +680,Baoqian PAN,PhD in Operations Management,"The Hong Kong University of Science and Technology, 2010",(852) 2358 7729,ismtpbq@ust.hk,Room LSK5041,,,,,251,8,6, +681,Lynn PI,PhD in Finance,"Georgia State University, 1992",(852) 2358 7687,lynnpi@ust.hk,Room LSK5073,,,,,214,2,2, +682,David Paul ROSSITER,PhD in Computer Voice and Audio,"The University of York, 1995",(852) 2358 8771,rossiter@ust.hk,Room 3554,,,,,695,13,15, +683,Ekkachai SAENYASIRI,PhD in Business,"The City University of New York, 2008",(852) 2358 7663,esaenyasiri@ust.hk,Room LSK5083,,,,,0,0,0, +684,Tony SHIEH,PhD in Accounting,"New York University, 1999",(852) 2358 7579,actony@ust.hk,Room LSK6003,,,,,0,0,0, +685,Kam Wing SIU,PhD in Economics,"Boston University, 2008",(852) 2358 7617,eckwsiu@ust.hk,Room LSK6054,,,,,873,13,18, +686,Jean Jiying WANG,PhD in Computer Science,"The Hong Kong University of Science and Technology, 2004",(852) 2358 5729,jeanwang@ust.hk,Room LSK5050A,,,,,1054,10,10, +687,Kam Tim WOO,PhD in Electrical and Electronic Engineering,"The Hong Kong University of Science and Technology, 2005",(852) 2358 8540,eetim@ust.hk,Room 2419,,,,,2976,28,51, +688,Chui Han Anita AU,PhD in Electrical and Electronic Engineering,,(852) 2358 7852,lcanita@ust.hk,Room 3382,,,,,0,0,0, +689,Marco CABOARA,PhD in China Studies,"University of Washington, 2011",(852) 3469 3136,hmcaboara@ust.hk,Room 3341,,,,,33,3,0, +690,Sarah CARMICHAEL,PhD in China Studies,,(852) 2358 7841,lcsarah@ust.hk,Room 3409,,,,,556,12,18, +691,Man Fung CHEUNG,PhD in Physics,"The University of Texas at Austin, 2011",(852) 2358 7484,cheungmf@ust.hk,Room 4444,,,,,990,18,27, +692,Isaac David DROSCHA,PhD in Physics,,(852) 2358 7768,droscha@ust.hk,Room SA216,,,,,0,0,0, +693,Mercedes M. DUJUNCO,PhD in Music,"University of Washington, 1994",(852) 2358 7795,hmmercedu@ust.hk,Room 3350,,,,,0,0,0, +694,Danyal Jonathan FREEMAN,PhD in Applied Linguistics,"City University of Hong Kong, 2015",(852) 2358 7856,lcdanyal@ust.hk,Room 3384,,,,,0,0,0, +695,Delian Dawn GASKELL,PhD in Applied Linguistics,,(852) 2358 5710,lcdgaskell@ust.hk,Room 3306,,,,,0,0,0, +696,Jason Man Wai HO,PhD in Management Operations,"The Hong Kong University of Science and Technology, 2002",(852) 3469 2989,imjasonho@ust.hk,Room LSK4082B,,,,,1666,22,45, +697,Aditi JHAVERI,PhD in in English Language Education,"The University of Hong Kong, 2015",(852) 2358 7863,lcaditij@ust.hk,Room 3311,,,,,54,3,2, +698,Jia JIA,PhD in Information Systems,"The Hong Kong University of Science and Technology, 2012",(852) 2358 6085,justinjia@ust.hk,Room LSK5045,,,,,53211,85,208, +699,Ilari Julius KAILA,PhD in Music,"The State University of New York at Stony Brook, 2010",(852) 2358 7762,kaila@ust.hk,Room SA205,,,,,0,0,0, +700,Anna Yee Ngan KWONG,PhD in Art History,"t Innsbruck, 2003",(852) 2358 6146,hmakwong@ust.hk,Room SA218,,,,,0,0,0, +701,Chak Yan Jessie Teresa LAM,PhD in Art History,,(852) 2358 7876,lcjlam@ust.hk,Room 3388,,,,,0,0,0, +702,Cindy Ka Sin LAM,PhD in Marine Environmental Science,"University of Oldenburg, 2007",(852) 2358 6075,envscindy@ust.hk,Room 5440,,,,,0,0,0, +703,Gibson LAM,PhD in Computer Science and Engineering,"The Hong Kong University of Science and Technology, 2012",(852) 2358 6984,gibson@ust.hk,Room 3553,,,,,211,5,4, +704,Chi Man LEUNG,PhD in Mathematics,"The Hong Kong University of Science and Technology, 2011",(852) 3469 3033,chimanleung@ust.hk,Room 3419,,,,,31,4,0, +705,Wai Ting LEUNG,PhD in Computer Science and Engineering,"The Hong Kong University of Science and Technology, 2010",(852) 2358 6986,kwtleung@ust.hk,Room 3548,,,,,2897,30,63, +706,Edward Siu Leung LI,PhD in Computer Science and Engineering,,(852) 2358 7853,lcedward@ust.hk,Room 3410,,,,,0,0,0, +707,Po Lung LI,PhD in Computer Science and Engineering,,(852) 2358 7869,lcpolung@ust.hk,Room 3403,,,,,178,9,9, +708,Xin LI,PhD in Computer Science,"The Hong Kong University of Science and Technology, 2005",(852) 2358 6994,lixin@ust.hk,Room 3525,,,,,1228,15,19, +709,Melissa Jane MEGAN,PhD in Computer Science,,(852) 2358 7902,lcmmegan@ust.hk,Room 3411,,,,,0,0,0, +710,Luisa Sze Man MOK,PhD in Computer Science,,(852) 3469 2395,luisamok@ust.hk,Room 4364,,,,,4405,36,118, +711,Sai Lok NAM,PhD in Humanities,"The Hong Kong University of Science and Technology, 2014",(852) 2358 7813,shlewis@ust.hk,Room 2367,,,,,2220,26,47, +712,Eric Chi Yung NG,PhD in Economics,"The University of Western Ontario, 2007",(852) 2358 7610,ecyng@ust.hk,Room LSK6016D,,,,,2221,15,27, +713,Ping PAN,PhD in Applied English Linguistics,"The Chinese University of Hong Kong, 2010",(852) 2358 5942,hmpanping@ust.hk,Room 3334,,,,,1231,19,29, +714,Xuan QIU,PhD in Industrial Engineering,"The University of Hong Kong, 2013",(852) 2358 8236,xuanqiu@ust.hk,Room 5549,,,,,511,12,12, +715,Tao REN,PhD in Industrial Engineering,,(852) 2358 7848,lcrentao@ust.hk,Room 3378,,,,,403,12,17, +716,Hong TAO,PhD in Mechanical Engineering,"Yale University, 2006",(852) 2358 8358,maehongtao@ust.hk,Room 2569,,,,,4386,34,93, +717,Emily Ming Wai TSANG,PhD in Polymer Chemistry,"Simon Fraser University, 2011",(852) 3469 2100,chetsang@ust.hk,Room 4536,,,,,1747,18,22, +718,Shuk Ching Elza TSANG,PhD in Education,"University of East Anglia, 2007",(852) 2358 7868,lcelzatsang@ust.hk,Room 3415,,,,,0,0,0, +719,Yau Chat TSOI,PhD in Computer Science,"Nanyang Technological University, 2009",(852) 2358 6984,desmond@ust.hk,Room 3553,,,,,0,0,0, +720,Kai Sun Albert WONG,PhD in Electrical Engineering,"Massachusetts Institute of Technology, 1988",(852) 2358 7065,eealbert@ust.hk,Room 2424,,,,,670,12,14, +721,Sin Ting Cynthia YAU,PhD in Zoology,"University of Aberdeen, 1994",(852) 2358 7309,cynthiastyau@ust.hk,Room 5436,,,,,0,0,0, +722,Liza Sook Yee YEW,PhD in Zoology,,(852) 2358 7867,lcliza@ust.hk,Room 3308,,,,,0,0,0, +723,Chi Wai YU,PhD in Statistics,"The University of British Columbia, 2009",(852) 2358 7429,macwyu@ust.hk,Room 3419,,,,,177,4,4, +724,Crystal CHAN,PhD in Statistics,,(852) 2358 6015,lccrystal@ust.hk,Room 3407,,,,,18830,61,242, +725,Ki Cecia CHAN,PhD in Systems Engineering and Engineering Management,"The Chinese University of Hong Kong, 2010",(852) 2358 6994,kccecia@ust.hk,Room 3525,,,,,18830,61,242, +726,Sandy Wai Ching CHAN,PhD in Systems Engineering and Engineering Management,,(852) 2358 6048,lcschan@ust.hk,Room 3309,,,,,0,0,0, +727,Thomas Anthony Chun Hun CHAN,PhD in Systems Engineering and Engineering Management,,(852) 2358 5775,lcthomas@ust.hk,Room 3312,,,,,1849,24,40, +728,Jasmine CHEN,PhD in Systems Engineering and Engineering Management,,(852) 2358 5709,lcjasmine@ust.hk,Room 3405,,,,,840,14,15, +729,Wai Yi Rosita CHENG,PhD in Systems Engineering and Engineering Management,,(852) 2358 7852,lcrosita@ust.hk,Room 3382,,,,,0,0,0, +730,Anisa CHEUNG,PhD in Systems Engineering and Engineering Management,,(852) 2358 7842,lcanisa@ust.hk,Room 3305,,,,,416,8,6, +731,Steven Kwok Yip CHEUNG,PhD in Accounting and Finance,"Bristol, 2019",(852) 3469 2971,acstcheung@ust.hk,Room LSK6043,,,,,163,7,5, +732,Doreen Ka Ki CHONG,PhD in Accounting and Finance,,(852) 2358 5988,lcdchong@ust.hk,Room 3307,,,,,4405,36,118, +733,Birdy Shun CHU,PhD in Accounting and Finance,,(852) 2358 7794,hmshun@ust.hk,Room 3332,,,,,6818,42,93, +734,Daniel CHUN,PhD in Accounting and Finance,,(852) 3469 2950,djychun@ust.hk,Room 4339,,,,,12,2,0, +735,John COOMBES,PhD in Information Systems,"City University of Hong Kong, 2006",(852) 2358 7736,johncm@ust.hk,Room LSK5050,,,,,0,0,0, +736,Krista Yingzi DU,PhD in Information Systems,,(852) 2358 7877,lckristadu@ust.hk,Room 3305,,,,,83,5,4, +737,Martin Antony EASTWOOD,PhD in Information Systems,,(852) 2358 7859,lcmeastwood@ust.hk,Room 3316,,,,,0,0,0, +738,Graham James Fisher ENGLAND,PhD in Information Systems,,(852) 2358 7887,lcgraham@ust.hk,Room 3304,,,,,0,0,0, +739,Rebecca FARMER,PhD in Information Systems,,(852) 2358 7866,lcrebecca@ust.hk,Room 3414,,,,,0,0,0, +740,Eddy Hon Fai FUNG,PhD in Information Systems,,(852) 2358 7862,lcefung@ust.hk,Room 3021,,,,,5197,36,105, +741,John FUNG,PhD in Information Systems,,(852) 2358 5712,lcjohnfung@ust.hk,Room 3412,,,,,5197,36,105, +742,Qiuzi GUO,PhD in Chinese Art History,"University of Heidelberg, 2019",(852) 2358 6712,hmqzguo@ust.hk,Room 1346,,,,,1669,19,33, +743,Masayuki HIRATA,PhD in Corpus linguistics,"City University of Hong Kong, 2015",(852) 2358 6047,lcmasa@ust.hk,Room 3312,,,,,2396,27,79, +744,Fiona Sze Han HO,PhD in Corpus linguistics,,(852) 2358 7873,lcfiona@ust.hk,Room 3305,,,,,0,0,0, +745,Hon Ming HO,PhD in Mathematics,"The Chinese University of Hong Kong, 2004",(852) 2358 7429,mastanho@ust.hk,Room 3433,,,,,4211,30,72, +746,Mark HOPKINS,PhD in Mathematics,,(852) 2358 7848,lcmark@ust.hk,Room 3378,,,,,596,12,12, +747,Siu Chun HUNG,PhD in Biochemistry and Molecular Biophysics,"Columbia University, 1997",(852) 2358 7303,bohsc@ust.hk,Room 5451,,,,,4405,36,118, +748,Monica Mei Hang JIM,PhD in Biochemistry and Molecular Biophysics,,(852) 2358 7842,lcmonica@ust.hk,Room 3305,,,,,222,7,7, +749,Yılmaz KÖYLÜ,PhD in Linguistics and Second Language Studies,"Indiana University, 2019",(852) 3469 2936,lcyilmaz@ust.hk,Room 3023,,,,,0,0,0, +750,Yin Bon KU,PhD in Mathematics,"Los Angeles, 2000",(852) 2358 8571,maybku@ust.hk,Room 3419,,,,,4779,34,68, +751,Alex LAM,PhD in Computer Engineering,"McGill University, 2011",(852) 2358 6986,lamngok@ust.hk,Room 3548,,,,,32,3,2, +752,Levi LAM,PhD in Computer Engineering,,(852) 2358 7875,lclevilam@ust.hk,Room 3408,,,,,0,0,0, +753,Tsz Kin LAM,PhD in Mathematics,"The State University of New York at Stony Brook, 1990",(852) 2358 7457,tklam@ust.hk,Room 3419,,,,,98,5,4, +754,Yeung LAM,PhD in Molecular Pharmacology and Toxicology,"University of Southern California, 2007",(852) 2358 8714,ylam@ust.hk,Room 5515,,,,,4003,32,103, +755,Brian Hui Wang LAU,PhD in Molecular Pharmacology and Toxicology,,(852) 3469 3049,brianlau@ust.hk,Room 5591C,,,,,181,7,5, +756,Wai Ling LAW,PhD in Linguistics,"Purdue University, 2017",(852) 3469 2936,lcclaw@ust.hk,Room 3023,,,,,4077,37,106, +757,Ping Chung Eric LEE,PhD in Linguistics,,(852) 2358 7860,lceric@ust.hk,Room 3312,,,,,3463,29,99, +758,Pui LEE,PhD in Linguistics,,(852) 2358 7849,lcleepui@ust.hk,Room 3412,,,,,4489,34,70, +759,William LEE,PhD in Applied Linguistics,"The Hong Kong Polytechnic University, 2018",(852) 2358 7845,lcwlee@ust.hk,Room 3413,,,,,28,3,1, +760,Chi Sun Benjamin LEUNG,PhD in Education Psychology,"Monash University, 2006",(852) 2358 7862,lcben@ust.hk,Room 3021,,,,,917,18,25, +761,Jac Ka Lok LEUNG,PhD in Education Psychology,,(852) 3469 2793,egjac@ust.hk,Room 6530,,,,,809,15,25, +762,Shui Yee LEUNG,PhD in Microbiology,"The University of Hong Kong, 2013",(852) 2358 5067,envsveronica@ust.hk,Room 5474,,,,,809,15,25, +763,Angie Eugenia LI,PhD in Microbiology,,(852) 2358 7846,lcangie@ust.hk,Room 3404,,,,,52,5,3, +764,May Yu Chun LIAO,PhD in Microbiology,,(852) 2358 8156,lcmayliao@ust.hk,Room 3405,,,,,5343,30,54, +765,Martin MA,PhD in Microbiology,,(852) 3469 3038,lcmartinma@ust.hk,Room 3406,,,,,414,11,13, +766,Wai Leung Bruce MA,PhD in Microbiology,,(852) 2358 5909,lcmbruce@ust.hk,Room 3312,,,,,0,0,0, +767,Linda Yeung Oi MAK,PhD in Microbiology,,(852) 2358 6014,lclindam@ust.hk,Room 3315,,,,,22262,52,121, +768,Shawn MC RAE,PhD in Microbiology,,(852) 2358 8156,lcshawnm@ust.hk,Room 3405,,,,,0,0,0, +769,Mark Anthony MELICAN,PhD in Microbiology,,(852) 2358 7875,lcmmelican@ust.hk,Room 3408,,,,,0,0,0, +770,Gary MUDDEMAN,PhD in Microbiology,,(852) 2358 7864,lcgmuddeman@ust.hk,Room 3405,,,,,0,0,0, +771,Yee Fai NG,PhD in Surface Physics,"The University of Hong Kong, 2002",(852) 2358 7473,phyfng@ust.hk,Room 4448,,,,,0,0,0, +772,Min NUO,PhD in Surface Physics,,(852) 2358 6049,lcnuomin@ust.hk,Room 3389,,,,,390,11,12, +773,Timothy Markham PAGE,PhD in Music Composition,"The University of Chicago, 2018",(852) 2358 8909,hmtpage@ust.hk,Room SA204,,,,,900,13,17, +774,Yu Jing RAO,PhD in Applied Linguistics,"Beijing Language and Culture University, 2016",(852) 2358 7874,lcemmarao@ust.hk,Room 3022,,,,,2574,30,35, +775,Thomas Jay REWHORN,PhD in Applied Linguistics,,(852) 2358 7891,lctrewhorn@ust.hk,Room 3309,,,,,0,0,0, +776,Dinesh Arjan SADHWANI,PhD in Psychology,"Roehampton, 2007",(852) 2358 5712,lcdinesh@ust.hk,Room 3412,,,,,0,0,0, +777,Nicholas Alistair SAMPSON,PhD in Psychology,,(852) 2358 7846,lcnicholas@ust.hk,Room 3404,,,,,0,0,0, +778,Khawar SARFRAZ,PhD in Electronic and Computer Engineering,"The Hong Kong University of Science and Technology, 2016",(852) 2358 6097,eesarfraz@ust.hk,Room 2423,,,,,52,3,2, +779,Meike SAUERWEIN,PhD in Environmental Science,"The Hong Kong University of Science and Technology, 2016",(852) 3469 2699,meike@ust.hk,Room 4364,,,,,0,0,0, +780,Koji SHIOMI,PhD in Environmental Science,,(852) 2358 5711,lckoji@ust.hk,Room 3408,,,,,0,0,0, +781,Tse Mei Annie SHU,PhD in Psychology,"The University of Hong Kong, 2012",(852) 2358 7820,annieshu@ust.hk,Room 2371,,,,,114,5,5, +782,Kathy Mun Yee SIN,PhD in Psychology,,(852) 2358 6014,lckathy@ust.hk,Room 3315,,,,,0,0,0, +783,Nicolson Yat Fan SIU,PhD in Psychology,"The Chinese University of Hong Kong, 2016",(852) 2358 7839,nicsiu@ust.hk,Room 2371,,,,,513,10,10, +784,Suzan STAMPER,PhD in Psychology,,(852) 2358 7858,lcsstamper@ust.hk,Room 3303,,,,,0,0,0, +785,Jing TAN,PhD in International Law,"The University of Hong Kong, 2019",(852) 2358 7558,actan@ust.hk,Room LSK6004,,,,,164,3,1, +786,Eunice TANG,PhD in International Law,,(852) 2358 8150,lceunicetang@ust.hk,Room 3412,,,,,2316,28,77, +787,Kin Hun TANG,PhD in International Law,,(852) 2358 7887,lckint@ust.hk,Room 3304,,,,,2234,21,42, +788,Michael TYRALA,PhD in Asian and International Studies,"City University of Hong Kong, 2019",(852) 3469 2952,mtyrala@ust.hk,Room 4339,,,,,341,3,3, +789,Bernadette Wan-Lan WO,PhD in Asian and International Studies,,(852) 2358 7843,lcbwo@ust.hk,Room 3309,,,,,228,8,8, +790,Chun Ho WONG,PhD in Asian and International Studies,,(852) 2358 7864,lcderekwong@ust.hk,Room 3405,,,,,212,9,9, +791,Elaine Suk Yi WONG,PhD in Asian and International Studies,,(852) 2358 5909,lcsukyi@ust.hk,Room 3312,,,,,0,0,0, +792,Jerry Kai Hung WONG,PhD in Asian and International Studies,,(852) 2358 7859,lcjerry@ust.hk,Room 3316,,,,,4077,37,106, +793,Kasina Ka Sin WONG,PhD in Asian and International Studies,,(852) 2358 6047,lckasina@ust.hk,Room 3312,,,,,11184,59,148, +794,Lee Long Shaun WONG,PhD in Asian and International Studies,,(852) 3469 3038,lcshaunwong@ust.hk,Room 3406,,,,,1570,18,25, +795,Ngam Susan WONG,PhD in Asian and International Studies,,(852) 2358 5988,lcsusan@ust.hk,Room 3307,,,,,2471,21,68, +796,Nick WONG,PhD in Applied Linguistics,"Lancaster University, 2024",(852) 2358 7844,lcnickwong@ust.hk,Room 3313,,,,,52,2,2, +797,Wilson WOON,PhD in Electrical and Electronic Engineering,"The University of Hong Kong, 2011",(852) 2358 7975,wilsonwoon@ust.hk,Room 4448,,,,,0,0,0, +798,Kam Yin WU,PhD in English Language Education,"The University of Hong Kong, 2007",(852) 2358 7890,lckywu@ust.hk,Room 3358,,,,,2811,28,41, +799,Xiufen XU,PhD in Modern Chinese Language,"The University of Hong Kong, 2007",(852) 2358 7866,lcxfxu@ust.hk,Room 3414,,,,,5401,39,125, +800,Jing YAO,PhD in Systems Analysis and Integration,"National University of Defense Technology, 2008",(852) 2358 8572,majyao@ust.hk,Room 3450,,,,,1288,18,25, +801,Guibo YE,PhD in Applied Mathematics,"Fudan University, 2007",(852) 3469 2615,magbye@ust.hk,Room 3419,,,,,336,8,7, +802,Anna Po Shan YU,PhD in Applied Mathematics,,(852) 2358 6015,lcapyu@ust.hk,Room 3407,,,,,1740,18,30, +803,Wai Ying YU,PhD in Applied Mathematics,,(852) 2358 7854,lcwaiying@ust.hk,Room 3309,,,,,7461,41,156, +804,Su YUAN,PhD in Chinese Language and Literature,"The Chinese University of Hong Kong, 2019",(852) 2358 7874,lcsuyuan@ust.hk,Room 3022,,,,,2781,20,22, +805,Ka Ming YUEN,PhD in Chinese Language and Literature,,(852) 2358 7860,lckaming@ust.hk,Room 3312,,,,,2574,28,64, +806,Rong ZHANG,PhD in Mechanical Engineering,"The Hong Kong University of Science and Technology, 2017",(852) 3469 2949,rongz@ust.hk,Room 4374,,,,,1221,6,6, +807,Yin ZHONG,PhD in Mechanical Engineering,,(852) 2358 7873,lcyinzhong@ust.hk,Room 3305,,,,,49,4,1, +808,Titi ZHOU,PhD in Social Science,"The Hong Kong University of Science and Technology, 2014",(852) 2358 7804,ttz@ust.hk,Room 2356,,,,,69,4,3, +809,Tong ZHOU,PhD in Social Science,,(852) 2358 7854,lczhoutong@ust.hk,Room 3309,,,,,2015,23,31, +810,Piotr ZYCHOWICZ,PhD in Social Science,,(852) 2358 5910,lcpiotr@ust.hk,Room 3408,,,,,0,0,0, +811,Marie BERNAL,PhD in Public Policy,"The Hong Kong University of Science and Technology, 2023",(852) 2358 6072,mbernal@ust.hk,Room 4339,,,,,0,0,0, +812,Mariah CHAN,PhD in Public Policy,,(852) 3469 2059,lcmariah@ust.hk,Room 3316,,,,,6698,36,91, +813,Roy Ka Long CHAN,PhD in Applied English Linguistics,"The Chinese University of Hong Kong, 2020",(852) 2358 6048,lcroychan@ust.hk,Room 3309,,,,,122,6,5, +814,Kam Hang CHENG,PhD in Mathematics,"The Hong Kong University of Science and Technology, 2017",(852) 3469 2018,keroc@ust.hk,Room 3486,,,,,11352,64,150, +815,Colin CHEUNG,PhD in Mathematics,,(852) 2358 5709,lccolin@ust.hk,Room 3405,,,,,4211,30,72, +816,Maisie GLOFCHESKI,PhD in Mathematics,,(852) 2358 8150,lcmaisieg@ust.hk,Room 3412,,,,,0,0,0, +817,Venus KAM,PhD in Mathematics,,(852) 2358 7849,lcvenusk@ust.hk,Room 3412,,,,,11184,59,148, +818,Chun Man Rolian LEE,PhD in Mathematics,,(852) 2358 6016,lcrolian@ust.hk,Room 3412,,,,,1849,24,40, +819,Arnold LI,PhD in Chemistry,"The Hong Kong University of Science and Technology, 2020",(852) 3469 2632,litla@ust.hk,Room CYT6004,,,,,1224,19,26, +820,Eugene LI,PhD in Chemistry,,(852) 2358 7858,lceugene@ust.hk,Room 3303,,,,,3144,26,54, +821,Nidhi PANT,PhD in Physics,"Jamia Millia Islamia, 2014",(852) 2358 7486,pantnidhi@ust.hk,Room 4451,,,,,0,0,0, +822,Chi SHEN,PhD in Physics,,(852) 2358 5910,lcshenchi@ust.hk,Room 3408,,,,,11561,50,103, +823,Frederick Fu Kit SHEONG,PhD in Chemistry,"The Hong Kong University of Science and Technology, 2016",(852) 3469 2098,chemfksheong@ust.hk,Room 4543,,,,,0,0,0, +824,Karina Hiu Yeung SUEN,PhD in Chemistry,,(852) 2358 7891,lckarina@ust.hk,Room 3309,,,,,190,7,7, +825,Jessica Ce Mun TANG,PhD in Microbiology,"University of London, 2000",(852) 2358 7314,bocemun@ust.hk,Room 5450,,,,,2316,28,77, +826,Bing TIAN,PhD in Social Science,"The Hong Kong University of Science and Technology, 2022",(852) 3469 2472,tianbing@ust.hk,Room 2382,,,,,8560,49,126, +827,Lok Yee Lorraine WONG,PhD in Social Science,,(852) 2358 6049,lclorraine@ust.hk,Room 3389,,,,,5,1,0, +828,Huiru XIAO,PhD in Computer Science and Engineering,"The Hong Kong University of Science and Technology, 2022",(852) 2358 8329,huiruxiao@ust.hk,Room 2538,,,,,25,2,1, +829,Siyang ZHOU,PhD in Education,"University of Oxford, 2022",(852) 2358 8148,lcszhou@ust.hk,Room 3316,,,,,44,2,2, +830,Ping SHENG,PhD in Physics,"Princeton University, 1971",(852) 2358 7474,sheng@ust.hk,Room IAS3008,,,,,15836,54,162, +831,Bright SHENG,PhD in Physics,,(852) 3469 2352,bsheng@ust.hk,Room IAS5014,,,,,15836,54,162, diff --git a/recommendation/result.csv b/recommendation/result.csv new file mode 100644 index 0000000..ac44314 --- /dev/null +++ b/recommendation/result.csv @@ -0,0 +1,832 @@ +ID,English Name,ranking +1,Nancy Yuk-Yu IP,0.584 +2,Yike GUO,0.612 +3,Ting Chuen PONG,0.612 +4,Tim Kwang-Ting CHENG,0.673 +5,Yang WANG,0.603 +6,Penger TONG,0.596 +7,Jimmy Chi Hung FUNG,0.603 +8,Che Ting CHAN,0.596 +9,Yung Hou WONG,0.584 +10,Hong Kam LO,0.673 +11,Kar Yan TAM,0.735 +12,Kellee Sing TSAI,0.612 +13,Huamin QU,0.612 +14,Kam Biu LUK,0.603 +15,Charles Wang Wai NG,0.673 +16,King Lau CHOW,0.624 +17,Kai Lung HUI,0.643 +18,Yuk Fai FONG,0.596 +19,Stuart GIETEL-BASTEN,0.603 +20,Allen Hao HUANG,0.92 +21,Arthur Pui Sang LAU,0.624 +22,Kam Tuen LAW,0.624 +23,Pak Wo LEUNG,0.596 +24,Yi-Min LIN,0.92 +25,Ho Yi MAK,0.603 +26,Kira MATUS,0.673 +27,Wai Ho MOW,0.673 +28,Zhi NING,0.673 +29,Stephen Lee SHIH,0.673 +30,Richard Hau Yue SO,0.673 +31,Yu-Hsing WANG,0.673 +32,Melinda Karen WHONG,0.624 +33,James Ka Lei WONG,0.92 +34,Ben Yui Bun CHAN,0.673 +35,Leung Yuk Frank LAM,0.673 +36,Yongshun CAI,0.612 +37,Jianping GAN,0.603 +38,Yaping GONG,0.735 +39,Jiewen HONG,0.673 +40,Ming Yi HUNG,0.735 +41,Alexis Kai Hon LAU,0.612 +42,Steven B. MILES,0.624 +43,Andrew Wing On POON,0.596 +44,Minhua SHAO,0.673 +45,Qingping SUN,0.612 +46,Jiannong WANG,0.596 +47,Kun XU,0.591 +48,Chu ZHANG,0.735 +49,Jiheng ZHANG,0.673 +50,Li Min ZHANG,0.673 +51,Xiaofang ZHOU,0.612 +52,David Edward COOK,0.596 +53,Robert Kam Ming KO,0.584 +54,Wa Hung LEUNG,0.603 +55,Naubahar SHARIF,0.673 +56,Qian ZHANG,0.612 +57,Qing LI,0.735 +58,Jack Chin Pang CHENG,0.673 +59,Henry Hei Ning LAM,0.673 +60,Zhigang LI,0.673 +61,Tiezheng QIAN,0.603 +62,Gang WANG,0.673 +63,Raymond Chi Wing WONG,0.673 +64,Tom CHEUNG,0.587 +65,Xiaojuan MA,0.612 +66,Nora Anniesha Binte HUSSIN,0.624 +67,Khaled BEN LETAIEF,0.673 +68,Ricky Shi-wei LEE,0.673 +69,Bertram Emil SHI,0.673 +70,Steven John DEKREY,0.735 +71,Guojun BU,0.587 +72,Man Sun CHAN,0.673 +73,Ying Ju CHEN,0.735 +74,Andrew Glen COHEN,0.596 +75,Xi DAI,0.603 +76,Sam GARG,0.735 +77,Mohamed Salah GHIDAOUI,0.673 +78,Albert Yiu Cheung HA,0.92 +79,Yan JI,0.596 +80,James LEE,0.624 +81,Jiatao LI,0.735 +82,Anirban MUKHOPADHYAY,0.673 +83,Sir Christopher PISSARIDES,0.596 +84,Peiyuan QIAN,0.624 +85,Jaideep SENGUPTA,0.735 +86,Mengze SHI,0.92 +87,James Yeong Liang THONG,0.643 +88,Gunther UHLMANN,0.603 +89,Ting XIE,0.624 +90,Yuan XIE,0.673 +91,Lianke YAN,0.673 +92,Xin ZHANG,0.612 +93,Utpal BHATTACHARYA,0.735 +94,Cameron Dougall CAMPBELL,0.596 +95,Guanghao CHEN,0.596 +96,Kevin Chien-Wen CHEN,0.735 +97,Kevin Jing CHEN,0.673 +98,Lei CHEN,0.612 +99,Shing Chi CHEUNG,0.643 +100,Zhiyong FAN,0.612 +101,Pascale FUNG,0.612 +102,Furong GAO,0.673 +103,Vidhan Krishan GOYAL,0.735 +104,Charles Youyang HSU,0.735 +105,Lancelot Fitzgerald JAMES,0.603 +106,Guocheng JIA,0.603 +107,Vincent Kin Nang LAU,0.673 +108,Bo LI,0.673 +109,Weiping LI,0.603 +110,Xiaoyuan LI,0.603 +111,Yingying LI,0.603 +112,Zhenyang LIN,0.603 +113,Shiqing LING,0.603 +114,Hongbin LIU,0.591 +115,Irene Man Chi LO,0.673 +116,Ross MURCH,0.673 +117,Tai Kai NG,0.596 +118,Albert Francis PARK,0.603 +119,Randy Yat Choi POON,0.587 +120,Karl Wah Keung TSIM,0.603 +121,Fugee TSUNG,0.673 +122,Ning WANG,0.596 +123,Danyang XIE,0.596 +124,Henry He YAN,0.603 +125,Hai YANG,0.603 +126,Dit Yan YEUNG,0.612 +127,Jianzhen YU,0.603 +128,Fumin ZHANG,0.673 +129,Rachel Quan ZHANG,0.735 +130,Tianshou ZHAO,0.673 +131,Shaohui ZHENG,0.673 +132,Zexiang LI,0.673 +133,Michael Scott ALTMAN,0.596 +134,David Karl BANFIELD,0.587 +135,Jianfeng CAI,0.603 +136,Gary Shueng Han CHAN,0.673 +137,Ho Bun CHAN,0.596 +138,Simon Wan CHAN,0.603 +139,Huai-Liang CHANG,0.603 +140,Jeffrey Robert CHASNOV,0.596 +141,Ying CHAU,0.673 +142,Beifang CHEN,0.603 +143,Fei CHEN,0.612 +144,Kai CHEN,0.612 +145,Kani CHEN,0.603 +146,Tai-Yuan CHEN,0.735 +147,Siu Wing CHENG,0.612 +148,Edmund Yik Man CHIANG,0.603 +149,Albert Chi Shing CHUNG,0.603 +150,Cunsheng DING,0.612 +151,Ping GAO,0.673 +152,Song GUO,0.612 +153,Yilong HAN,0.596 +154,Carsten Andreas HOLZ,0.596 +155,Andrew Brian HORNER,0.612 +156,I-ming HSING,0.673 +157,Jishan HU,0.603 +158,Xijun HU,0.673 +159,Baoling HUANG,0.673 +160,Pingbo HUANG,0.596 +161,Yong HUANG,0.603 +162,Gyu Boong JO,0.596 +163,Ajay JONEJA,0.673 +164,Lambros KATAFYGIOTIS,0.673 +165,Wing Hung KI,0.673 +166,James Tin Yau KWOK,0.612 +167,David Chuen Chun LAM,0.596 +168,Christopher Kin Ying LEUNG,0.673 +169,Shing Yu LEUNG,0.603 +170,Siu Fai LEUNG,0.596 +171,Jensen Tsan Hang LI,0.596 +172,Mo LI,0.612 +173,Ning LI,0.624 +174,Fangzhen LIN,0.612 +175,Nian LIN,0.596 +176,Jianmei LIU,0.673 +177,Qian LIU,0.612 +178,Rolf Walter LORTZ,0.612 +179,Qiong LUO,0.612 +180,Zhengtang LUO,0.612 +181,Howard Cam LUONG,0.673 +182,Guowu MENG,0.603 +183,Yongli MI,0.673 +184,Mo MU,0.603 +185,Abhiroop MUKHERJEE,0.596 +186,Eric S NELSON,0.624 +187,Kristiaan NEYTS,0.624 +188,Daniel P. PALOMAR,0.624 +189,Dimitris PAPADIAS,0.673 +190,Robert Zhong QI,0.624 +191,Xiangtong QI,0.735 +192,Ye QI,0.612 +193,Li QIU,0.673 +194,Jianan QU,0.603 +195,Long QUAN,0.612 +196,Pedro SANDER,0.612 +197,Chii SHANG,0.673 +198,Ling SHI,0.673 +199,James Edward Barbour SIMPSON,0.624 +200,Mike Ka Pui SO,0.603 +201,Iam Keong SOU,0.596 +202,Hui SU,0.612 +203,Jianwei SUN,0.603 +204,Chiew Lan TAI,0.603 +205,Ping TAN,0.612 +206,Chi Keung TANG,0.612 +207,Kai TANG,0.587 +208,Rongbiao TONG,0.603 +209,Dan Chiu Wa TSANG,0.673 +210,Kam Tim TSE,0.673 +211,Chi Ying TSUI,0.673 +212,Ophelia K C TSUI,0.596 +213,Ralf VAN DER LANS,0.673 +214,Xiangrong WANG,0.596 +215,Ian Duncan WILLIAMS,0.603 +216,Ellick Kin Fai WONG,0.603 +217,Joseph Tin Yum WONG,0.624 +218,Kam Sing WONG,0.612 +219,Man WONG,0.673 +220,Dekai WU,0.612 +221,Hongkai WU,0.603 +222,Lixin WU,0.603 +223,Shengqing WU,0.624 +224,Xun WU,0.673 +225,Zhenguo WU,0.587 +226,Yang XIANG,0.603 +227,Jiang XU,0.673 +228,Yan XU,0.596 +229,Min YAN,0.603 +230,Jinglei YANG,0.603 +231,Zhi Yu YANG,0.596 +232,Shuhuai YAO,0.673 +233,Yuan YAO,0.603 +234,Wenjing YE,0.612 +235,King Lun YEUNG,0.673 +236,Ke YI,0.612 +237,Michelle YIK,0.603 +238,Levent YOBAS,0.673 +239,Haifeng YOU,0.735 +240,Man YU,0.735 +241,Weichuan YU,0.612 +242,Chik Patrick YUE,0.673 +243,Bei ZENG,0.596 +244,Charles Chuan ZHANG,0.673 +245,Hongtao ZHANG,0.673 +246,Nevin Lianwen ZHANG,0.612 +247,Wei ZHANG,0.673 +248,Xiangru ZHANG,0.673 +249,Xueqing ZHANG,0.735 +250,Jidong ZHAO,0.673 +251,Xinghua ZHENG,0.603 +252,Songfa ZHONG,0.596 +253,Guang ZHU,0.603 +254,Yongchang ZHU,0.603 +255,Kai LIU,0.584 +256,Jiguang WANG,0.584 +257,Can YANG,0.673 +258,Sunil ARYA,0.612 +259,Pak Hung AU,0.596 +260,Zhigang BAO,0.603 +261,Brahim BENSAOU,0.612 +262,Charles Wing Hoi CHAN,0.624 +263,David Cheng CHANG,0.624 +264,Melody Man Chi CHAO,0.603 +265,Peter Fusheng CHEN,0.735 +266,Qing CHEN,0.673 +267,Sherry CHEN,0.612 +268,Zhanhui CHEN,0.735 +269,Zhihong CHEN,0.735 +270,Ki Ling CHEUNG,0.673 +271,Siu Woo CHEUNG,0.603 +272,Kenny K CHUNG,0.584 +273,Amy Nicole DALTON,0.673 +274,Joshua DERMAN,0.624 +275,Ilias DIMITRAKOPOULOS,0.673 +276,Daisy Yan DU,0.624 +277,Tsz Ho Frederick FONG,0.603 +278,Bradley Alan FOREMAN,0.673 +279,Li-tsui FU,0.643 +280,Yongsheng GAO,0.673 +281,Yusong GUO,0.612 +282,Zhihong GUO,0.603 +283,Li HAN,0.596 +284,Alex Jingwei HE,0.673 +285,Wenkai HE,0.612 +286,Kristiaan HELSEN,0.673 +287,David James HENDRY,0.612 +288,Virgil Kit Yiu HO,0.612 +289,Weiyin HONG,0.643 +290,Yue HOU,0.612 +291,Xinyu HUA,0.603 +292,Eun Soon IM,0.612 +293,Ivan Chi Ho IP,0.603 +294,Toyotaka ISHIBASHI,0.603 +295,Tianling JIN,0.603 +296,Hyuncheol Bryant KIM,0.596 +297,Sung Hun KIM,0.612 +298,Tat Koon KOH,0.92 +299,Shuk Mei Agnes KU,0.596 +300,Richard LAKERVELD,0.673 +301,Stanley Chun Kwan LAU,0.624 +302,Dongwon LEE,0.643 +303,Yi-Kuen LEE,0.673 +304,Yonghoon LEE,0.673 +305,Anthony Kwan LEUNG,0.673 +306,Danny Chi Yeu LEUNG,0.612 +307,Kin Yin LI,0.603 +308,Larry LI,0.673 +309,Yao Amber LI,0.596 +310,Chun LIANG,0.624 +311,Rhea Patricia LIEM,0.673 +312,Woo Young LIM,0.596 +313,Song LIN,0.673 +314,Jia LIU,0.673 +315,Junwei LIU,0.596 +316,Tao LIU,0.596 +317,Mengqian LU,0.673 +318,Yang LU,0.596 +319,Jianxiong MA,0.612 +320,John Zhongdong MA,0.591 +321,Peter MACKAY,0.735 +322,Brian Kan Wing MAK,0.612 +323,Eric Paul MARBERG,0.603 +324,Wilfred Siu Hung NG,0.612 +325,Tuan Anh NGUYEN,0.587 +326,Ding PAN,0.587 +327,George Kamenov PANAYOTOV,0.735 +328,Dimitris PAPADOPOULOS,0.612 +329,Hyo Keun PARK,0.603 +330,Sangyoon PARK,0.596 +331,Baryon Tensor POSADAS,0.624 +332,Kirill PROKOFIEV,0.624 +333,Jin QI,0.612 +334,Shaojie SHEN,0.673 +335,Yajing SHEN,0.673 +336,Yangqiu SONG,0.673 +337,Abhishek Kumar SRIVASTAVA,0.596 +338,Haibin SU,0.673 +339,Bilian Ni SULLIVAN,0.92 +340,Fei SUN,0.603 +341,Kevin Kim-Pong TAM,0.603 +342,Sujata VISARIA,0.596 +343,Xuhu WAN,0.603 +344,Jin WANG,0.596 +345,Jing WANG,0.643 +346,Peng WANG,0.596 +347,Shiheng WANG,0.735 +348,Wei WANG,0.673 +349,Wenbo WANG,0.673 +350,Xuan WANG,0.735 +351,Yi WANG,0.603 +352,Yiwen WANG,0.673 +353,Zhe WANG,0.673 +354,Man Hoi WONG,0.673 +355,Simon Man Ho WONG,0.624 +356,Angela Ruohao WU,0.603 +357,Maosheng XIONG,0.603 +358,Hong XU,0.624 +359,Juanyi XU,0.596 +360,Yan YAN,0.624 +361,Sen YANG,0.596 +362,Yi YANG,0.612 +363,Zhengbao YANG,0.603 +364,Masaru YARIME,0.624 +365,Sai Kit YEUNG,0.673 +366,Yuk Man Carine YIU,0.643 +367,Hongyu YU,0.673 +368,Jialin YU,0.596 +369,George Jie YUAN,0.673 +370,Alminas ZALDOKAS,0.735 +371,Amy Yunzhi ZANG,0.735 +372,Qinglu ZENG,0.612 +373,Chengxing ZHAI,0.18 +374,Hai ZHANG,0.603 +375,Jun ZHANG,0.603 +376,Lok Cheung Lawrence ZHANG,0.624 +377,Min ZHANG,0.624 +378,Xiaojun ZHANG,0.643 +379,Xiaowei ZHANG,0.735 +380,Ying ZHAO,0.673 +381,Pavel Ivanov ZHELYAZKOV,0.673 +382,Rong ZHENG,0.643 +383,Yanfeng ZHENG,0.92 +384,Rongrong ZHOU,0.673 +385,Yuanyuan ZHOU,0.673 +386,Pengyu ZHU,0.596 +387,Tao ZHU,0.596 +388,Adrian Hoi Chun PO,0.624 +389,Jun AOYAGI,0.596 +390,Emilio BISETTI,0.603 +391,Thomas Bradford BITTERLY,0.673 +392,Tristan Camille BRAUD,0.612 +393,Zachariah BROWN,0.673 +394,Xuanyu CAO,0.673 +395,Keith CHAN,0.596 +396,Liz Pui Yee CHEE,0.624 +397,Hao CHEN,0.673 +398,Long CHEN,0.673 +399,Qifeng CHEN,0.612 +400,Qihui CHEN,0.92 +401,Siyin CHEN,0.735 +402,Tengteng CHEN,0.603 +403,Wilbur CHEN,0.92 +404,Yangyang CHEN,0.673 +405,Yanzhen CHEN,0.643 +406,Yi CHEN,0.673 +407,Chen CHENG,0.603 +408,Ja Ee CHO,0.735 +409,Tony CHO,0.92 +410,Jaeho CHOI,0.735 +411,Tae-Ung CHOI,0.735 +412,Carsten Hao Ye CHONG,0.735 +413,Shangyu DANG,0.735 +414,Julien DE TROULLIOUD DE LANVERSIN,0.673 +415,Laurence Laurencio DELINA,0.735 +416,Shuoqing DENG,0.603 +417,Qingkai DONG,0.735 +418,Marc DORDAL CARRERAS,0.596 +419,Molong DUAN,0.673 +420,Sophie Linying FAN,0.673 +421,Junlong FENG,0.596 +422,Carlos Manuel FERNÁNDEZ-LORÍA,0.643 +423,Lin FU,0.643 +424,Hanyu GAO,0.673 +425,Robin Kaiji GONG,0.596 +426,Dasa GU,0.612 +427,Xinzhou GUO,0.603 +428,David HAGMANN,0.624 +429,Jonathan Eugene HALPERT,0.603 +430,Ding HE,0.603 +431,Junxian HE,0.673 +432,Yukinori HIRANO,0.673 +433,Quoc HO,0.603 +434,Yu HU,0.603 +435,Jinqing HUANG,0.603 +436,Yangguang HUANG,0.596 +437,Jenny HUNG,0.624 +438,Berthold JÄCK,0.624 +439,Martha JEONG,0.673 +440,Sisi JIAN,0.735 +441,Jiashuo JIANG,0.735 +442,Qingyuan JIANG,0.603 +443,Wei JIANG,0.735 +444,Huan JIN,0.624 +445,Amir KAFSHDAR GOHARSHADY,0.612 +446,Kohei KAWAGUCHI,0.596 +447,Hwa Young KIM,0.735 +448,Yoonseob KIM,0.673 +449,Magdalena KLEMUN,0.673 +450,Becki Yi KUANG,0.603 +451,Ohchan KWON,0.603 +452,Yong LAI,0.587 +453,Byoungchan LEE,0.596 +454,Shiming LEI,0.673 +455,Jiying LI,0.591 +456,Mitch Guijun LI,0.673 +457,Sen LI,0.673 +458,Xiaomeng LI,0.673 +459,Xuan LI,0.596 +460,Yi LIAO,0.603 +461,Yatang LIN,0.596 +462,Yen Hung LIN,0.612 +463,Zhen LIU,0.612 +464,Haipeng LU,0.603 +465,Lijian LU,0.612 +466,Yanglong LU,0.673 +467,Zhongming LU,0.673 +468,Guodong LYU,0.735 +469,Jingjing MA,0.603 +470,Xiaolu MA,0.673 +471,Julian MAK,0.603 +472,Zili MENG,0.603 +473,Quentin MOREAU,0.735 +474,Arthur Kent MORRIS,0.92 +475,Stefan NAGL,0.603 +476,Hugh NAKAMURA,0.612 +477,John Gerard Francis NASH,0.735 +478,Maximilian Alexander NITZSCHNER,0.735 +479,Don NOH,0.596 +480,Hnin Yin Yin NYEIN,0.673 +481,Jun OH,0.735 +482,Deniz OKAT,0.735 +483,Ling PAN,0.673 +484,Yuxin PAN,0.673 +485,Eunyoung PARK,0.92 +486,Sang Kyu PARK,0.673 +487,Lionel PARREAUX,0.673 +488,Zhichao PENG,0.603 +489,Shuaijie QIAN,0.603 +490,Quentin Zhen QIN,0.624 +491,Jishen QIU,0.673 +492,Yangjian QUAN,0.603 +493,Deyu RAO,0.603 +494,Stephane REDONNET,0.603 +495,Sayan SARKAR,0.603 +496,Rob SCHARFF,0.673 +497,Julie SEMMELHACK,0.624 +498,Yafeng SHAN,0.624 +499,Qiming SHAO,0.673 +500,Dongdong SHE,0.612 +501,Jiasi SHEN,0.673 +502,Yifan SHEN,0.596 +503,Yiwen SHEN,0.735 +504,Fan SHI,0.673 +505,June Zijun SHI,0.92 +506,Xiaoming SHI,0.612 +507,Dongwook SHIN,0.612 +508,Shenghui SONG,0.673 +509,Benjamin STEUER,0.624 +510,Wei SU,0.624 +511,Chao TANG,0.735 +512,Rong TANG,0.603 +513,Rui TANG,0.596 +514,Di TIAN,0.596 +515,Fengbin TU,0.596 +516,Masayuki USHIO,0.596 +517,Kenward VONG,0.603 +518,Danqing WANG,0.735 +519,Emily Jing WANG,0.735 +520,Ke WANG,0.603 +521,Lan WANG,0.603 +522,Shuai WANG,0.673 +523,Walter Zhe WANG,0.735 +524,Wen WANG,0.596 +525,Xiaoliang WANG,0.596 +526,Xin WANG,0.735 +527,Yan WANG,0.603 +528,Terence Tsz Wai WONG,0.673 +529,Allen Chenguang WU,0.735 +530,Longjun WU,0.624 +531,Qinggong WU,0.596 +532,Alex WYATT,0.603 +533,Dong XIA,0.673 +534,Lucy XIA,0.673 +535,Changying XIANG,0.673 +536,Zhiyao XIE,0.673 +537,Yan XIONG,0.735 +538,Dan XU,0.673 +539,Qin XU,0.596 +540,Tianju XUE,0.673 +541,Wei XUE,0.673 +542,Daniel G YANG,0.735 +543,Jiachuan YANG,0.603 +544,Yansong YANG,0.673 +545,Eyub YEGEN,0.735 +546,Zhitao YIN,0.643 +547,Wei YOU,0.673 +548,Yantao YU,0.735 +549,Binhang YUAN,0.612 +550,Charmaine YUNG,0.624 +551,Tobias Benedikt ZÜRN,0.624 +552,Ruohan ZHAN,0.673 +553,Dong ZHANG,0.612 +554,Han ZHANG,0.596 +555,Jingdi ZHANG,0.596 +556,Jize ZHANG,0.673 +557,Lisheng ZHANG,0.603 +558,Qiong ZHANG,0.612 +559,Rui ZHANG,0.596 +560,Shenghan ZHANG,0.596 +561,Tianlong ZHANG,0.673 +562,Yihan ZHANG,0.673 +563,Xiaofan ZHAO,0.92 +564,Qiye ZHENG,0.673 +565,Wenjuan ZHENG,0.596 +566,Yue ZHENG,0.92 +567,Yanguang ZHOU,0.673 +568,Zoey Yiyuan ZHOU,0.735 +569,Bonnie Danqing ZHU,0.603 +570,Yicheng ZHU,0.735 +571,Amy Kit Yu FU,0.624 +572,Kei May LAU,0.673 +573,Frankie CHIU,0.673 +574,Wei HAN,0.603 +575,Wing Yip LAM,0.603 +576,Moez LOUATI,0.673 +577,Syed Mohsin ABBAS,0.673 +578,Mirza Muhammad Faran Ashraf BAIG,0.603 +579,Lanlan CAI,0.612 +580,Shuai CHEN,0.624 +581,Xiangke CHEN,0.612 +582,Yi CHEN,0.612 +583,Jun Kang CHOW,0.673 +584,Lun DAI,0.673 +585,Yangfan DENG,0.673 +586,Shimin DI,0.673 +587,Amartansh DUBEY,0.673 +588,Pip FREESTONE,0.624 +589,Liuqing GAO,0.673 +590,Dengyang GUO,0.673 +591,Huayan GUO,0.673 +592,Jiarui HAN,0.673 +593,Hengtao HE,0.673 +594,Jian HE,0.673 +595,Peng HUA,0.673 +596,Jingyang HUANG,0.612 +597,Linus Ta-Lun HUANG,0.624 +598,Hongwei JIA,0.624 +599,Arash KAZEMIAN,0.673 +600,Ryan Tsz Kin KWOK,0.673 +601,Yi LAN,0.624 +602,Shuohui LI,0.603 +603,Zhenning LI,0.603 +604,Kezheng LIAO,0.603 +605,Jacky LIE,0.596 +606,Changqing LIN,0.673 +607,Chongjia LIN,0.673 +608,Zehong LIN,0.673 +609,Changdong LIU,0.603 +610,Deyun LIU,0.673 +611,Wenzhe LIU,0.596 +612,Yang LIU,0.624 +613,Ziyi LIU,0.612 +614,Xiaoxuan MENG,0.735 +615,Quanhua MU,0.603 +616,Gleb PAPYSHEV,0.673 +617,Jun QIAN,0.673 +618,Shuang QIU,0.673 +619,Tongming QU,0.603 +620,Pui San SO,0.673 +621,Weizhi SONG,0.603 +622,Honglei TIAN,0.587 +623,Man Chun TSENG,0.673 +624,Renjun TU,0.587 +625,Maolin WANG,0.673 +626,Xiaoyu WANG,0.673 +627,Victor Junqiu WEI,0.673 +628,Chi Ho WONG,0.596 +629,Hiu Yi WONG,0.584 +630,Buchen WU,0.673 +631,Mengxi WU,0.596 +632,Huijuan XIAO,0.673 +633,Dongfang XU,0.673 +634,Ting XU,0.624 +635,Xian XU,0.612 +636,Ying XUE,0.673 +637,Liangliang YANG,0.603 +638,Xiong YANG,0.673 +639,Fangxin Francine YI,0.643 +640,Huan YIN,0.673 +641,Xu YU,0.612 +642,Qinbai YUN,0.673 +643,Zhixiong ZENG,0.18 +644,Bingchao ZHANG,0.673 +645,Daquan ZHANG,0.673 +646,Dong ZHANG,0.673 +647,Junxue ZHANG,0.673 +648,Qianpeng ZHANG,0.673 +649,Ruoyang ZHANG,0.596 +650,Shuaizhong ZHANG,0.18 +651,Qinglan ZHAO,0.673 +652,Shiwei ZHAO,0.673 +653,Peng ZHOU,0.673 +654,Lilong CAI,0.591 +655,Hoi Sing KWOK,0.603 +656,Kung Wai Christine LOH,0.603 +657,Barry Victor SAUTMAN,0.612 +658,Roger KING,0.735 +659,Qian PENG,0.735 +660,Paul KITNEY,0.596 +661,Donald LOW,0.596 +662,Stephen William NASON,0.92 +663,Joseph SALVACRUZ,0.603 +664,Tian Wen CHEN,0.596 +665,Garvin Percy DIAS,0.612 +666,Julian Mcallister GROVES,0.596 +667,Thomas Wei Chung HU,0.673 +668,Jeevan JAISINGH,0.735 +669,Ice Wai Ping KO,0.591 +670,James Sai Ho KWOK,0.673 +671,Veronique J A LAFON-VINAIS,0.673 +672,Ronald LAU,0.735 +673,Winnie Suk Wai LEUNG,0.673 +674,Xin LIANG,0.673 +675,Betty LIN,0.673 +676,Marshal Yuanshuai LIU,0.673 +677,Robin Lok Wang MA,0.673 +678,Kelvin P MAK,0.735 +679,Emily M NASON,0.735 +680,Baoqian PAN,0.735 +681,Lynn PI,0.735 +682,David Paul ROSSITER,0.612 +683,Ekkachai SAENYASIRI,0.92 +684,Tony SHIEH,0.735 +685,Kam Wing SIU,0.596 +686,Jean Jiying WANG,0.612 +687,Kam Tim WOO,0.673 +688,Chui Han Anita AU,0.673 +689,Marco CABOARA,0.624 +690,Sarah CARMICHAEL,0.624 +691,Man Fung CHEUNG,0.596 +692,Isaac David DROSCHA,0.596 +693,Mercedes M. DUJUNCO,0.673 +694,Danyal Jonathan FREEMAN,0.624 +695,Delian Dawn GASKELL,0.624 +696,Jason Man Wai HO,0.735 +697,Aditi JHAVERI,0.18 +698,Jia JIA,0.643 +699,Ilari Julius KAILA,0.673 +700,Anna Yee Ngan KWONG,0.643 +701,Chak Yan Jessie Teresa LAM,0.643 +702,Cindy Ka Sin LAM,0.612 +703,Gibson LAM,0.673 +704,Chi Man LEUNG,0.603 +705,Wai Ting LEUNG,0.673 +706,Edward Siu Leung LI,0.673 +707,Po Lung LI,0.673 +708,Xin LI,0.612 +709,Melissa Jane MEGAN,0.612 +710,Luisa Sze Man MOK,0.612 +711,Sai Lok NAM,0.643 +712,Eric Chi Yung NG,0.596 +713,Ping PAN,0.643 +714,Xuan QIU,0.673 +715,Tao REN,0.673 +716,Hong TAO,0.673 +717,Emily Ming Wai TSANG,0.603 +718,Shuk Ching Elza TSANG,0.673 +719,Yau Chat TSOI,0.612 +720,Kai Sun Albert WONG,0.673 +721,Sin Ting Cynthia YAU,0.624 +722,Liza Sook Yee YEW,0.624 +723,Chi Wai YU,0.603 +724,Crystal CHAN,0.603 +725,Ki Cecia CHAN,0.735 +726,Sandy Wai Ching CHAN,0.735 +727,Thomas Anthony Chun Hun CHAN,0.735 +728,Jasmine CHEN,0.735 +729,Wai Yi Rosita CHENG,0.735 +730,Anisa CHEUNG,0.735 +731,Steven Kwok Yip CHEUNG,0.735 +732,Doreen Ka Ki CHONG,0.735 +733,Birdy Shun CHU,0.735 +734,Daniel CHUN,0.735 +735,John COOMBES,0.643 +736,Krista Yingzi DU,0.643 +737,Martin Antony EASTWOOD,0.643 +738,Graham James Fisher ENGLAND,0.643 +739,Rebecca FARMER,0.643 +740,Eddy Hon Fai FUNG,0.643 +741,John FUNG,0.643 +742,Qiuzi GUO,0.643 +743,Masayuki HIRATA,0.624 +744,Fiona Sze Han HO,0.624 +745,Hon Ming HO,0.603 +746,Mark HOPKINS,0.603 +747,Siu Chun HUNG,0.603 +748,Monica Mei Hang JIM,0.603 +749,Yılmaz KÖYLÜ,0.624 +750,Yin Bon KU,0.603 +751,Alex LAM,0.673 +752,Levi LAM,0.673 +753,Tsz Kin LAM,0.603 +754,Yeung LAM,0.603 +755,Brian Hui Wang LAU,0.603 +756,Wai Ling LAW,0.624 +757,Ping Chung Eric LEE,0.624 +758,Pui LEE,0.624 +759,William LEE,0.624 +760,Chi Sun Benjamin LEUNG,0.673 +761,Jac Ka Lok LEUNG,0.673 +762,Shui Yee LEUNG,0.587 +763,Angie Eugenia LI,0.587 +764,May Yu Chun LIAO,0.587 +765,Martin MA,0.587 +766,Wai Leung Bruce MA,0.587 +767,Linda Yeung Oi MAK,0.587 +768,Shawn MC RAE,0.587 +769,Mark Anthony MELICAN,0.587 +770,Gary MUDDEMAN,0.587 +771,Yee Fai NG,0.603 +772,Min NUO,0.603 +773,Timothy Markham PAGE,0.673 +774,Yu Jing RAO,0.624 +775,Thomas Jay REWHORN,0.624 +776,Dinesh Arjan SADHWANI,0.603 +777,Nicholas Alistair SAMPSON,0.603 +778,Khawar SARFRAZ,0.673 +779,Meike SAUERWEIN,0.612 +780,Koji SHIOMI,0.612 +781,Tse Mei Annie SHU,0.603 +782,Kathy Mun Yee SIN,0.603 +783,Nicolson Yat Fan SIU,0.603 +784,Suzan STAMPER,0.603 +785,Jing TAN,0.643 +786,Eunice TANG,0.643 +787,Kin Hun TANG,0.643 +788,Michael TYRALA,0.624 +789,Bernadette Wan-Lan WO,0.624 +790,Chun Ho WONG,0.624 +791,Elaine Suk Yi WONG,0.624 +792,Jerry Kai Hung WONG,0.624 +793,Kasina Ka Sin WONG,0.624 +794,Lee Long Shaun WONG,0.624 +795,Ngam Susan WONG,0.624 +796,Nick WONG,0.624 +797,Wilson WOON,0.673 +798,Kam Yin WU,0.673 +799,Xiufen XU,0.612 +800,Jing YAO,0.643 +801,Guibo YE,0.603 +802,Anna Po Shan YU,0.603 +803,Wai Ying YU,0.603 +804,Su YUAN,0.673 +805,Ka Ming YUEN,0.673 +806,Rong ZHANG,0.673 +807,Yin ZHONG,0.673 +808,Titi ZHOU,0.612 +809,Tong ZHOU,0.612 +810,Piotr ZYCHOWICZ,0.612 +811,Marie BERNAL,0.673 +812,Mariah CHAN,0.673 +813,Roy Ka Long CHAN,0.643 +814,Kam Hang CHENG,0.603 +815,Colin CHEUNG,0.603 +816,Maisie GLOFCHESKI,0.603 +817,Venus KAM,0.603 +818,Chun Man Rolian LEE,0.603 +819,Arnold LI,0.603 +820,Eugene LI,0.603 +821,Nidhi PANT,0.596 +822,Chi SHEN,0.596 +823,Frederick Fu Kit SHEONG,0.603 +824,Karina Hiu Yeung SUEN,0.603 +825,Jessica Ce Mun TANG,0.587 +826,Bing TIAN,0.612 +827,Lok Yee Lorraine WONG,0.612 +828,Huiru XIAO,0.673 +829,Siyang ZHOU,0.673 +830,Ping SHENG,0.596 +831,Bright SHENG,0.596 diff --git a/recommendation/resultSored.csv b/recommendation/resultSored.csv new file mode 100644 index 0000000..4e591b5 --- /dev/null +++ b/recommendation/resultSored.csv @@ -0,0 +1,31 @@ +ID,English Name,ranking +20,Allen Hao HUANG,0.92 +24,Yi-Min LIN,0.92 +33,James Ka Lei WONG,0.92 +78,Albert Yiu Cheung HA,0.92 +86,Mengze SHI,0.92 +298,Tat Koon KOH,0.92 +339,Bilian Ni SULLIVAN,0.92 +383,Yanfeng ZHENG,0.92 +400,Qihui CHEN,0.92 +403,Wilbur CHEN,0.92 +409,Tony CHO,0.92 +474,Arthur Kent MORRIS,0.92 +485,Eunyoung PARK,0.92 +505,June Zijun SHI,0.92 +563,Xiaofan ZHAO,0.92 +566,Yue ZHENG,0.92 +662,Stephen William NASON,0.92 +683,Ekkachai SAENYASIRI,0.92 +11,Kar Yan TAM,0.735 +38,Yaping GONG,0.735 +40,Ming Yi HUNG,0.735 +48,Chu ZHANG,0.735 +57,Qing LI,0.735 +70,Steven John DEKREY,0.735 +73,Ying Ju CHEN,0.735 +76,Sam GARG,0.735 +81,Jiatao LI,0.735 +85,Jaideep SENGUPTA,0.735 +93,Utpal BHATTACHARYA,0.735 +96,Kevin Chien-Wen CHEN,0.735