/external/tensorflow/tensorflow/python/keras/layers/preprocessing/ |
D | categorical.py | 61 vocabulary=None, argument 66 if vocabulary is None: 70 self.vocabulary = vocabulary 81 if isinstance(self.vocabulary, (tuple, list, np.ndarray)): 83 vocabulary_list=self.vocabulary, 87 elif self.vocabulary: 89 vocabulary_file=self.vocabulary,
|
D | categorical_test.py | 40 vocabulary=vocabulary_list, num_oov_tokens=0) 47 layer = categorical.CategoryLookup(vocabulary=vocabulary_list) 55 vocabulary=vocabulary_list, num_oov_tokens=0) 65 vocabulary=vocabulary_list, num_oov_tokens=0) 73 vocabulary=vocabulary_list, num_oov_tokens=0) 100 vocabulary=self._wire_vocabulary_file_name, num_oov_tokens=0) 107 vocabulary=self._wire_vocabulary_file_name) 114 vocabulary=self._wire_vocabulary_file_name, num_oov_tokens=0) 123 vocabulary=self._wire_vocabulary_file_name, num_oov_tokens=0) 130 vocabulary=self._wire_vocabulary_file_name, num_oov_tokens=0)
|
/external/tensorflow/tensorflow/examples/saved_model/integration_tests/ |
D | export_simple_text_embedding.py | 34 def write_vocabulary_file(vocabulary): argument 39 for entry in vocabulary: 51 def __init__(self, vocabulary, emb_dim, oov_buckets): argument 54 self._total_size = len(vocabulary) + oov_buckets 58 write_vocabulary_file(vocabulary), tf.string, 98 vocabulary = ["cat", "is", "on", "the", "mat"] 99 module = TextEmbeddingModel(vocabulary=vocabulary, emb_dim=10, oov_buckets=10)
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_GenerateVocabRemapping.pbtxt | 20 new ID that is not found in the old vocabulary. 45 use the entire old vocabulary. 48 summary: "Given a path to new and old vocabulary files, returns a remapping Tensor of" 51 vocabulary that corresponds to row `i` in the new vocabulary (starting at line 53 in the new vocabulary is not in the old vocabulary. The old vocabulary is 60 with each line containing a single entity within the vocabulary. 67 The op also returns a count of how many entries in the new vocabulary 68 were present in the old vocabulary, which is used to calculate the number of
|
D | api_def_NegTrain.pbtxt | 30 Count of words in the vocabulary.
|
D | api_def_Skipgram.pbtxt | 67 vocabulary.
|
D | api_def_InitializeTableFromTextFileV2.pbtxt | 15 Filename of a vocabulary text file.
|
D | api_def_InitializeTableFromTextFile.pbtxt | 13 Filename of a vocabulary text file.
|
D | api_def_FixedUnigramCandidateSampler.pbtxt | 134 The vocabulary file should be in CSV-like format, with the last field
|
/external/antlr/tool/src/test/java/org/antlr/test/ |
D | TestIntervalSet.java | 99 IntervalSet vocabulary = IntervalSet.of(1,1000); in testNotSingleElement() local 100 vocabulary.add(2000,3000); in testNotSingleElement() 103 String result = (s.complement(vocabulary)).toString(); in testNotSingleElement() 108 IntervalSet vocabulary = IntervalSet.of(1,1000); in testNotSet() local 113 String result = (s.complement(vocabulary)).toString(); in testNotSet() 118 IntervalSet vocabulary = IntervalSet.of(1,1000); in testNotEqualSet() local 121 String result = (s.complement(vocabulary)).toString(); in testNotEqualSet() 126 IntervalSet vocabulary = IntervalSet.of(1,2); in testNotSetEdgeElement() local 129 String result = (s.complement(vocabulary)).toString(); in testNotSetEdgeElement() 134 IntervalSet vocabulary = IntervalSet.of(1,255); in testNotSetFragmentedVocabulary() local [all …]
|
/external/antlr/antlr3-maven-plugin/src/site/apt/examples/ |
D | libraries.apt | 5 …caused some confusion in regard to the fact that generated vocabulary files (<<<*.tokens>>>) can a… 10 directive and also require the use of a vocabulary file then you will need to locate 13 location of your imported grammars and ANTLR will not find any vocabulary files in
|
/external/antlr/tool/src/main/java/org/antlr/misc/ |
D | IntervalSet.java | 221 public IntervalSet complement(IntSet vocabulary) { in complement() argument 222 if ( vocabulary==null ) { in complement() 225 if ( !(vocabulary instanceof IntervalSet ) ) { in complement() 227 vocabulary.getClass().getName()+")"); in complement() 229 IntervalSet vocabularyIS = ((IntervalSet)vocabulary); in complement()
|
D | BitSet.java | 514 public String toString(String separator, List<String> vocabulary) { in toString() argument 515 if (vocabulary == null) { in toString() 524 if (i >= vocabulary.size()) { in toString() 527 else if (vocabulary.get(i) == null) { in toString() 531 str += vocabulary.get(i); in toString()
|
/external/tensorflow/tensorflow/examples/tutorials/word2vec/ |
D | word2vec_basic.py | 92 vocabulary = read_data(filename) 93 print('Data size', len(vocabulary)) 121 vocabulary, vocabulary_size) 122 del vocabulary # Hint to reduce memory.
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | BitSet.js | 685 toString2: function(separator, vocabulary) { argument 693 if (i >= vocabulary.size()) { 696 else if (!org.antlr.lang.isValue(vocabulary.get(i))) { 700 str += vocabulary.get(i);
|
/external/antlr/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/ |
D | TParser.g | 20 // Use the vocabulary generated by the accompanying
|
/external/tensorflow/tensorflow/lite/g3doc/models/text_classification/ |
D | overview.md | 36 predefined vocabulary.
|
/external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ |
D | AssignTokenTypesWalker.g | 46 * a) Import token vocabulary if available. Set token types for any new tokens 236 // check for grammar-level option to import vocabulary
|
/external/tensorflow/tensorflow/core/protobuf/tpu/ |
D | tpu_embedding_configuration.proto | 13 // Size of the vocabulary (i.e., number of rows) in the table.
|
/external/antlr/tool/src/main/resources/org/antlr/tool/templates/messages/languages/ |
D | en.stg | 45 problem reading token vocabulary file <arg>: <exception> 63 "problems parsing token vocabulary file <arg> on line <arg2>"
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | Lexer.as | 298 /** Lexers can normally match any char in it's vocabulary after matching
|
/external/antlr/runtime/ObjC/Framework/ |
D | Lexer.m | 413 /** Lexers can normally match any char in it's vocabulary after matching
|
/external/libtextclassifier/native/annotator/ |
D | model.fbs | 825 // out-of-vocabulary.
|
/external/tensorflow/ |
D | RELEASE.md | 29 …kes care of text standardization, tokenization, n-gram generation, and vocabulary indexing. See th… 2672 transform string features to IDs, where the mapping is defined by a vocabulary
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 4634 詞彙 < \(list\-of\)\-vocabulary; 11797 語彙 < vocabulary; 26961 詞彙 > \(list\-of\)\-vocabulary; 29505 語彙 > vocabulary;
|