Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 1 | # Copyright 2019 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | # Or at https://developers.google.com/open-source/licenses/bsd |
| 5 | |
| 6 | # A list of stopwords to parse text in component predictor. |
| 7 | STOP_WORDS = ['i', 'me', 'my', 'myself', 'we', 'our', 'ours', |
| 8 | 'ourselves', 'you', 'your', 'yours', 'yourself', 'yourselves', |
| 9 | 'he', 'him', 'his', 'himself', 'she', 'her', 'hers', 'herself', |
| 10 | 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', |
| 11 | 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', |
| 12 | 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', |
| 13 | 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', |
| 14 | 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', |
| 15 | 'with', 'about', 'against', 'between', 'into', 'through', 'during', |
| 16 | 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', |
| 17 | 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', |
| 18 | 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', |
| 19 | 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', |
| 20 | 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', |
| 21 | 'can', 'will', 'just', 'don', 'should', 'now'] |