Giter Site home page Giter Site logo

Comments (5)

urialon avatar urialon commented on May 27, 2024 1

Hi @hsellik ,

  1. As far as I remember - no, you don't need to preprocess the data yourself, as long as the number of contexts that you wish to use is lower or equal than the number of contexts that the data was preprocessed with. The number of contexts in the data (i.e., the way the data was preprocessed) is saved in the data dictionary, and then loaded here. If I remember correctly, the data was preprocessed with 1000 contexts. Thus, you don't need to re-preprocess the data, you can just change MAX_CONTEXTS here and the reader will automatically sample MAX_CONTEXTS out of the total 1000 that were saved with the data.

  2. You don't need to re-preprocess the data here as well. The data was saved with some really large vocabulary sizes (to check the actual numbers, put a breakpoint here and check the len of the loaded dictionaries). If you reduce vocab sizes here, the code will automatically take only the most frequent values.

E.g., if the data was preprocessed with a vocabulary of 1M and you set the vocab size to 1K - then the code will load all 1M values, sort them (descendingly) by their frequency, and take only the top 1K.

If you wish to use larger values for contexts or vocabularies than the values that the data was preprocessed with -- then yes, in that case, you will have to re-preprocess the data. However, I don't think that using more than 1000 contexts or larger vocabularies will help.

I hope it helps, let me know if I was unclear or if you have any other questions.

from code2seq.

urialon avatar urialon commented on May 27, 2024 1

In code2vec -
Regarding vocabularies - yes - you can reduce the sizes.
Regarding num_contexts - I don't think that you can change that

from code2seq.

hsellik avatar hsellik commented on May 27, 2024 1

Okay, nice and clear. Thank you for the quick answers! :)

from code2seq.

hsellik avatar hsellik commented on May 27, 2024

Okay, makes perfect sense, does the same apply for code2vec project?

from code2seq.

Guardian99 avatar Guardian99 commented on May 27, 2024

On running a debugger, I get a message of "Expect 1001 fields but have 2456 in record 0".
1)How do i deal with this error in general, If i have to process codes that have approximately 2500-3000 lines.

from code2seq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.