Skip to content

Commit

Permalink
Fix: change seq-0 to scene-0 in training code apc.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzeng committed Mar 22, 2018
1 parent bd18e6d commit 0148f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convnet-training/apc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class APCDataLayer : public DataLayer {

// Select a random sequence from object directory
std::vector<std::string> sequence_list;
GetFilesInDirectory(curr_obj_directory, sequence_list, "seq-0");
GetFilesInDirectory(curr_obj_directory, sequence_list, "scene-0");
std::sort(sequence_list.begin(), sequence_list.end());
int rand_sequence_idx = (int)floor(GetRandomFloat(0, (float)sequence_list.size()));
std::string curr_sequence_name = sequence_list[rand_sequence_idx];
Expand Down

0 comments on commit 0148f01

Please sign in to comment.