68d7d6a3cb18578616ae2f3b445b6ba87fd6baf3,dvalib/facerecognition.py,,represent,#,109
Before Change
np.save(os.path.join(output_dir, "facenet.npy"), emb_array)
with open(os.path.join(output_dir, "facenet.framelist"),"w") as fh:
for c in range(count):
fh.write("{}\n".format(path_count[c]))
return path_count,emb_array
After Change
paths_batch = paths[start_index:end_index]
for fname in paths_batch:
count += 1
fh.write("{}_{}\n".format(fname,paths_to_pk[fname]))
images = facenet.load_data(paths_batch, do_random_crop=False, do_random_flip=False,image_size=image_size, do_prewhiten=True)
feed_dict = {images_placeholder: images, phase_train_placeholder: False}
emb_array[start_index:end_index, :] = sess.run(embeddings, feed_dict=feed_dict)
time_avg_forward_pass = (time.time() - start_time) / float(nrof_images)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 2
Instances Project Name: AKSHAYUBHAT/DeepVideoAnalytics
Commit Name: 68d7d6a3cb18578616ae2f3b445b6ba87fd6baf3
Time: 2017-03-06
Author: akshayubhat@gmail.com
File Name: dvalib/facerecognition.py
Class Name:
Method Name: represent
Project Name: AKSHAYUBHAT/DeepVideoAnalytics
Commit Name: 68d7d6a3cb18578616ae2f3b445b6ba87fd6baf3
Time: 2017-03-06
Author: akshayubhat@gmail.com
File Name: dvalib/facerecognition.py
Class Name:
Method Name: represent
Project Name: Hironsan/anago
Commit Name: 8e855e7b97d0367e835bc682818d6a5f4381fd0e
Time: 2017-08-21
Author: light.tree.1.13@gmail.com
File Name: anago/server/server.py
Class Name: MainHandler
Method Name: post
Project Name: streamlit/streamlit
Commit Name: 68a92497c5dc36aebebae46b83f29902505214e7
Time: 2020-12-09
Author: ken.mcgrady@gmail.com
File Name: lib/streamlit/hello/demos.py
Class Name:
Method Name: data_frame_demo