List of commits:
Subject Hash Author Date (UTC)
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
a 795e477efa0aad9119cb7a4651847f470229b902 Thai Thien 2020-08-14 16:07:10
model path f5446c7af5c8e6836bc562c17c3e02d04ff80804 Thai Thien 2020-08-14 16:05:55
per 07b1f5784cb8aeb98bb1192bb73b5247b549b9d1 Thai Thien 2020-08-14 16:04:59
perfomance test 50d9652b43d660d108d697ad730e547aabf32e46 Thai Thien 2020-08-14 15:46:25
change name dd91bf5002f1505d1dd214c13ea416dbb610e2e3 Thai Thien 2020-08-09 14:20:40
msemean ede02b8197895eb82e24388a9bf59721736356a3 Thai Thien 2020-08-09 14:18:34
l2_adamw2_bigtail11i_t2_c3_sha.sh ca44a2ea3f6cabb49738144fc3a918d3891280dc Thai Thien 2020-08-09 14:09:38
l2_adamw2_bigtail11i_t2_c3_sha 3d69914ecd40cd8a9a4f9863fcaf0ed20fb293b9 Thai Thien 2020-08-09 14:03:56
l2_adamw2_bigtail11i_ 4bc0b7938d27842c76fb9dd5fc68cc4eb66d9b73 Thai Thien 2020-08-09 13:57:45
c2 f74909d7d10e35b318fd64814304805055b7c927 Thai Thien 2020-08-09 04:12:17
l2_adamw2_bigtail11i_t2_sha 8fc53b3cdb1493b457b85f98797d183e9df8c93d Thai Thien 2020-08-09 03:13:05
l2_adamw2_bigtail11i_t1_sha 5d240b5c9ea5dd91e149b1b7652e1077d1158e39 Thai Thien 2020-08-08 18:02:30
shanghaitech_keepfull_r50 l2_adamw2_bigtail13i_t6_sha 2253ce7c06882f44ed577a2df25a0b9325c476b4 Thai Thien 2020-08-08 17:57:24
l2_adamw2_bigtail13i_t5_sha 7df89278208a7d3d2117940c34c6528d38508708 Thai Thien 2020-08-08 17:42:11
lr scheduler 8de1b255ab35d2c7696fca89ea6208f6a80233da Thai Thien 2020-08-08 16:02:42
add lr_scheduler 05704fd6f3f04bf0e41983142b3c48fec3a502ab Thai Thien 2020-08-08 15:59:13
wd -5 768042c4ef103a94437bedca96979dce02a12c79 Thai Thien 2020-08-08 15:37:12
Commit 39eb204dad16326327bca58f30c53097166a26b4 - add .eval
Author: Thai Thien
Author date (UTC): 2020-08-14 16:22
Committer name: Thai Thien
Committer date (UTC): 2020-08-14 16:22
Parent(s): d2722882bde6cb81dfd4d2b00731a7f5caab4355
Signer:
Signing key:
Signing status: N
Tree: a851688724efc0f04233a0761b48e0dcda60a42c
File Lines added Lines deleted
debug/perfomance_test_on_shb.py 4 3
train_script/debug/performance.sh 1 1
File debug/perfomance_test_on_shb.py changed (mode: 100644) (index 08b11ea..9e4bb78)
... ... import os
21 21 from model_util import get_lr, BestMetrics from model_util import get_lr, BestMetrics
22 22 from ignite.contrib.handlers import PiecewiseLinear from ignite.contrib.handlers import PiecewiseLinear
23 23 import time import time
24
25
24 import sys
26 25
27 26 if __name__ == "__main__": if __name__ == "__main__":
28 27 torch.set_num_threads(2) # 4 thread torch.set_num_threads(2) # 4 thread
 
... ... if __name__ == "__main__":
128 127 model = model.to(device) model = model.to(device)
129 128 checkpoint = torch.load(args.load_model) checkpoint = torch.load(args.load_model)
130 129 model.load_state_dict(checkpoint["model"]) model.load_state_dict(checkpoint["model"])
130 model.eval()
131 131
132 132 for test_time in range(10): for test_time in range(10):
133 133 print("test " + str(test_time)) print("test " + str(test_time))
 
... ... if __name__ == "__main__":
138 138 s2 = time.perf_counter() s2 = time.perf_counter()
139 139 time1 = s2 - s1 time1 = s2 - s1
140 140 print("time " + str(s1 - s2)) print("time " + str(s1 - s2))
141
141 sys.stdout.flush()
142 print("done all")
142 143
File train_script/debug/performance.sh changed (mode: 100644) (index 6343c05..2fec66f)
1 task="performance_shb_BigTail13i_t1"
1 task="performance_shb_BigTail13i_t2"
2 2 CUDA_VISIBLE_DEVICES=2 OMP_NUM_THREADS=2 PYTHONWARNINGS="ignore" HTTPS_PROXY="http://10.60.28.99:86" nohup python debug/perfomance_test_on_shb.py \ CUDA_VISIBLE_DEVICES=2 OMP_NUM_THREADS=2 PYTHONWARNINGS="ignore" HTTPS_PROXY="http://10.60.28.99:86" nohup python debug/perfomance_test_on_shb.py \
3 3 --task_id $task \ --task_id $task \
4 4 --model "BigTail13i" \ --model "BigTail13i" \
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