List of commits:
Subject Hash Author Date (UTC)
file name strage stuff caeb9f9608e91cf6a1323d9ae9f4fb215c4dd6ea Thai Thien 2020-08-23 08:44:54
TypeError: can only concatenate str (not "list") to str e8aebcfb782966c11c3ca116b5a9cc254021a73d Thai Thien 2020-08-23 08:41:02
key error 5732100d6aca8e3fea6a4d25270edefbc8148a2a Thai Thien 2020-08-23 08:39:09
fix target fdbda2c6923dd164560448a445cd64ff413fc804 Thai Thien 2020-08-23 08:37:48
test path 06d268f873e6ceea93a8e8741d819a03b324cedb Thai Thien 2020-08-23 08:27:38
a 1d73d926894edbc600db678316b9b24a583c4cb8 Thai Thien 2020-08-23 08:25:58
test set bb1e40fc7806c8bef5e94fbaa54ac9af3b599041 Thai Thien 2020-08-23 08:23:30
remove epoch stuff 2cc6434aa298b6da90b4577ce529f971119b86c7 Thai Thien 2020-08-23 07:53:36
evaluation_shb_CompactCNNV7i_t1 28cf202a306b775967c6e466120b019ae1eb6a4d Thai Thien 2020-08-23 07:49:51
evaluation shb 44f3dfdc9e3ad2787cc5286a64f1b28363796b19 Thai Thien 2020-08-23 07:32:50
performance_shb_CompactCNNV7i_t1 2698927959f377bb8308e54aebf029d8a18abf39 Thai Thien 2020-08-14 16:47:58
t7 test size 1 again 06fd0b91bf3c4c7d7713972f91c75ad33e0f25e7 Thai Thien 2020-08-14 16:38:33
t6 pin mem c573feae8f739502b53497c3482dae7a5c55aff7 Thai Thien 2020-08-14 16:35:19
testsize 20 77b4d29cbc8305943c2ec025d60b3937e1686d33 Thai Thien 2020-08-14 16:31:53
t4 increase core 80bcac87ccb6b10ce6e438fcce2f52e52fe1600a Thai Thien 2020-08-14 16:30:02
t3 eb03a48f24f38a078e8a77ba7a25fc647ecb642d Thai Thien 2020-08-14 16:27:21
eval and no grad c6d1e1fdeb6c7ebcc5318139ef22abb53b14e34e Thai Thien 2020-08-14 16:25:11
add .eval 39eb204dad16326327bca58f30c53097166a26b4 Thai Thien 2020-08-14 16:22:20
performance_shb_BigTail13i_t1 d2722882bde6cb81dfd4d2b00731a7f5caab4355 Thai Thien 2020-08-14 16:15:48
perfomance_test_on_shb cb1dcb51045d508f7c473b7b8435bb4f37243807 Thai Thien 2020-08-14 16:11:05
Commit caeb9f9608e91cf6a1323d9ae9f4fb215c4dd6ea - file name strage stuff
Author: Thai Thien
Author date (UTC): 2020-08-23 08:44
Committer name: Thai Thien
Committer date (UTC): 2020-08-23 08:44
Parent(s): e8aebcfb782966c11c3ca116b5a9cc254021a73d
Signer:
Signing key:
Signing status: N
Tree: 75e724deed8d4eb804d7a0da5bc4f06118dc9214
File Lines added Lines deleted
debug/evaluate_shb.py 4 3
File debug/evaluate_shb.py changed (mode: 100644) (index 3119a10..5a731e0)
... ... def visualize_evaluation_shanghaitech_keepfull(model, args):
61 61 img, gt_density, debug_info = item img, gt_density, debug_info = item
62 62 gt_count = debug_info["p_count"] gt_count = debug_info["p_count"]
63 63 file_name = debug_info["name"] file_name = debug_info["name"]
64 print(file_name)
65 save_path = os.path.join(saved_folder, "label_" + file_name +".png")
66 save_pred_path = os.path.join(saved_folder, "pred_" + file_name +".png")
64 print(file_name[0].split["."][0])
65 file_name_only = file_name[0].split["."][0]
66 save_path = os.path.join(saved_folder, "label_" + file_name_only +".png")
67 save_pred_path = os.path.join(saved_folder, "pred_" + file_name_only +".png")
67 68 save_density_map(gt_density.numpy()[0][0], save_path) save_density_map(gt_density.numpy()[0][0], save_path)
68 69 pred = model(img.cuda()) pred = model(img.cuda())
69 70 predicted_density_map = pred.detach().cpu().clone().numpy() predicted_density_map = pred.detach().cpu().clone().numpy()
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/hahattpro/crowd_counting_framework

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/hahattpro/crowd_counting_framework

Clone this repository using git:
git clone git://git.rocketgit.com/user/hahattpro/crowd_counting_framework

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main