Hoang-Thang Ta

Results 12 comments of Hoang-Thang Ta

> I see you only evaluate the test set in each epoch, can we add a validation set, with early stopping criteria based on the results/loss on this validation set?...

Did you have any solution for this?

I have the same with a low accuracy. It seems using "|" for the problems will have better results than "&". `problem = 'c2_cls|c3_cls|c4_cls|c5_cls|c6_cls'`

> It is slightly better only. Btw, thank for your hard works but it seems there is a problem with the accuracy. When using your code for my case (offensive...

Can you try this? > sentences = [sent.text.strip() for sent in doc.sents]

Test your lr with different values, 5e-5, 5e-7, etc.

The problem from NLTK or its sub-components may make METEOR stuck and take hours to process. Maybe your computer can not download one of these packages: [nltk_data] Downloading package wordnet...

So far, I know that the number of hidden neurons can affect performance. In the MNIST example, I tried with the size 128, 256, and 512 instead of 64. However,...

We may know that KAN uses math equations (instead of variables) to fit the data points. However, what type of math equation (abs, sin, cos, etc) does this package use?...

You can use: `torch.save(model, your_model_path)` Then load it to do inference: `model = torch.load(model_path) model.eval()` For more information: https://pytorch.org/tutorials/beginner/saving_loading_models.html