XuperX / TheCollector

https://xuperx.github.io/TheCollector/
MIT License
0 stars 0 forks source link

How to be a good reviewer for conferences #27

Open XuperX opened 1 year ago

XuperX commented 1 year ago

Rule of Thumb

If I were the author, would I find the review helpful

My template

- Summary (2 sentences) 
- relevance to the conference

# Major 
- Novelty and impact (1 sentence)
- Methods
   - strength: 1) 2) 3)
   - weakness: 1) 2) 3)
- Results 
   - strength: 1) 2) 3)
   - weakness: 1) 2) 3)

# Minor
- figure/table/formatting 
- language

From sharky6000

XuperX commented 1 year ago

This paper presents a language model framework for code and comment inconsistency evaluation and correction. It utilized cutting-edge NLP technologies and provided working implementations for code improvements, which is a good fit for the EMNLP system demonstration track.

Major

I am still concerned about whether the model resolution is sufficient to explain code-comment mismatch generated during different iterations. For instance, when I tested it on functions related to JSON file validation, the results largely depended on whether the word “validation” was there or not. But when the basic structure of the code doesn’t change much between versions, can the model handle such differences?

About the methods:

Minor

I tested its performance in python. If comments are marked with # and span multiple lines, the model only recognizes the first line as a valid comment. Seems to be a small bug.