You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As an example, suppose the following is in a paper:
\begin{equation}
a = b + c\end{equation}
where $c$ is the number of cows and $b$ is the number of bats.
For this paper,
c is the number of cows
b is the number of bats
The relevance of picking these variable definitions out is to then find other papers with that same variable, even if the symbol being used is different. (In another paper where w is the number of cows.)
Success here is
identify the meaning of a given symbol
identify uses of the same meaning in different papers
The text was updated successfully, but these errors were encountered:
in the src directory I added
pip install -r requirements.txt
python decompress_model.py
python nltk_downloads.py
python get_symbol_defs.py
I am confident that on average you should get at least 10% of the variable definitions with the get_symbol_defs.py file.
The concordance dict can be used for additional processing as it extracts every sentence where a variable is used.
As an example, suppose the following is in a paper:
For this paper,
c
is the number of cowsb
is the number of batsThe relevance of picking these variable definitions out is to then find other papers with that same variable, even if the symbol being used is different. (In another paper where
w
is the number of cows.)Success here is
The text was updated successfully, but these errors were encountered: