-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Higher Performance of Botrgcn on Twibot22? #30
Comments
Thank you for reporting these results. I believe @leopoldwhite and @whr000001 are looking into this now. |
Hi, thank you for your interest in our work. Could you please provide more detailed information about how you train and test BotRGCN and how to preprocess the dataset? Thanks. |
` def seed_everything(seed): seed_everything(2026) class Twibot22(Dataset):
class BotRGCN(nn.Module):
def accuracy(output, labels): def init_weights(m): device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu') root = './dataset/twibot-22/' dataset = Twibot22(root=root, device=device) model = BotRGCN(cat_prop_size=3, embedding_dimension=embedding_size).to(device) def train(epoch): def test(): model.apply(init_weights) epochs = 200 test() ` |
I think your model and training codes are the same as these. Could you please provide more detailed information about your processed dataset, like how many users are in the train/val/test set, and how to split them? |
I follow the same split provided in split.csv. There are 1000000 users in total and 700000 for training, 200000 for validating and 100000 for test. |
We use your code to train with our processed data, but can not achieve your performance. This may be due to differences in preprocessing. Could you please provide your preprocess codes? I believe @leopoldwhite is looking into this now. |
Due to my limited computing resources, I split the tweets into three parts(0-2,3-5,6-8) and then merge them. I think that may be where the problem lies in.
|
And then I merge these three parts into id_tweet.json.
|
Last part is the same with yours.
|
I follow the same preprocess method on Twibot22. However, when I try BotRGCN method on it, the results are better than yours.
Can you provide me with processed Twibot22 dataset, So that I can test on it.
The text was updated successfully, but these errors were encountered: