CurryTang / Graph-LLM

Exploring the Potential of Large Language Models (LLMs) in Learning on Graphs
243 stars 25 forks source link

Question about the specific meaning of each category in citeseer. #5

Closed user-AC closed 1 year ago

user-AC commented 1 year ago

Hi, can you provide the specific meaning of each category in citeseer (we know that citeseer contains 6 categories, ML, AI, IR, DB, HCI, Agent)?

For example, number '1' in the citeseer_data.y corresponds to which? ML, AI, IR, DB, HCI, or Agent?

CurryTang commented 1 year ago

Hi, the name of each category can be accessed through the label_names attribute. After loading the pt file into a, you may access it through a.label_names, which is ['Agents', 'ML', 'IR', 'DB', 'HCI', 'AI']

user-AC commented 1 year ago

Thanks!