Reproducing results from the text mining paper
The paper we are talking about is
Data science for building energy efficiency: A comprehensive text-mining driven review of scientific literature
Work done in the original paper
Work done by GQC
- Captured various keywords related to water-networks from the ArcGIS website
- Categorizing the keywords in the categories of:
datadata-sciencephasewater-networks
- Split compound words with a space (or split them individually)
- Use the pretrained GloVe embeddings trained on the Common Crawl Dataset
- Reproduce plots from the original paper using the method described in the paper.
Improving the work done by GQC
- In the first iteration of the project, GQC used pre-trained GloVe embeddings which were trained on the Common Crawl dataset
- In the second iteration, we wish to train our custom word embeddings by scraping the papers from the Elsevier API and creating a model.
- The steps would be as follows
- Identify and curate a list of keywords obtained from the ArcGIS website
- Scrape papers using Elsevier API with those keywords (this will be done by Vannary)
- Have a text cleaning pipeline to clean and process the text
- Create a model to train the word embeddings (ideally
GloVe, butword2vec, orfastTextshould work as well) - and then re-create the results (plots) from the paper