Commit 54d7150a authored by Davis King's avatar Davis King

Added clarifying comments.

parent a2b6ed16
...@@ -77,8 +77,8 @@ def print_segment(sentence, names): ...@@ -77,8 +77,8 @@ def print_segment(sentence, names):
# Now lets make some training data. Each example is a sentence as well as a set of ranges # Now lets make some training data. Each example is a sentence as well as a set of ranges
# which indicate the locations of any names. # which indicate the locations of any names.
names = dlib.ranges() names = dlib.ranges() # make an array of dlib.range objects.
segments = dlib.rangess() segments = dlib.rangess() # make an array of arrays of dlib.range objects.
sentences = [] sentences = []
...@@ -126,10 +126,12 @@ names.clear() ...@@ -126,10 +126,12 @@ names.clear()
# representation depending on our needs. In this example, we show how to do it both ways. # representation depending on our needs. In this example, we show how to do it both ways.
use_sparse_vects = False use_sparse_vects = False
if use_sparse_vects: if use_sparse_vects:
# Make an array of arrays of dlib.sparse_vector objects.
training_sequences = dlib.sparse_vectorss() training_sequences = dlib.sparse_vectorss()
for s in sentences: for s in sentences:
training_sequences.append(sentence_to_sparse_vectors(s)) training_sequences.append(sentence_to_sparse_vectors(s))
else: else:
# Make an array of arrays of dlib.vector objects.
training_sequences = dlib.vectorss() training_sequences = dlib.vectorss()
for s in sentences: for s in sentences:
training_sequences.append(sentence_to_vectors(s)) training_sequences.append(sentence_to_vectors(s))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment