-
Notifications
You must be signed in to change notification settings - Fork 286
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
Extract path-contexts iteratively #97
Comments
Hi @ceceu , Please see these issues: Best, |
Couldn't the following script
be used to extract the vector from the codes?
...
public int getPushesLowerbound() {\n\t\tretu...
public void setPushesLowerbound(int pushesLo...
public void play() {\n\t\t\t\n\t\t\t// If ...
public int getInfluenceValue(int boxNo1, int...
public void setPositions(int[] positions){\n...
... |
Hmmm, not exactly, the |
If we want to build C/C++ vector using code2vec, then what should we use? -
|
Hi @faysalhossain2007 , You'll need to build your own extractor. Fortunately, there are some existing extractors for C/C++, see: If you have any further questions, feel free to open a new issue, as these issues are unrelated. Best, |
@urialon, |
I am working with a Java dataset composed of pairs
(code, comment)
, as shown below:then, is there an approach to extract the path context of each Java method creating new pairs
(path_context, comment)
?The text was updated successfully, but these errors were encountered: