List of commits:
Subject Hash Author Date (UTC)
remove experiment 06478164cb8e00ed5512a0d4db0dbc6edc1b5ad1 Thai Thien 2020-09-08 15:10:33
val train test 5a43d57ba16667cb96f9514dcf4b81167ff8bd5a Thai Thien 2020-09-08 15:01:51
parallel, try catch excemption 9ac6a36880a113c1820b1e6a702ed5c08ebcb03f Thai Thien 2020-09-08 14:55:08
now show the number of point in log 54a1a16adf32c866ed65808d16da5f997d27b54f Thai Thien 2020-09-07 17:19:18
gt to ground-truth 3996d1c19d68f3669b5f54e5b621635f0b87a9fc Thai Thien 2020-09-07 17:06:15
change data path 5e6605625ba130310fbeaade259e4a5b98987dad Thai Thien 2020-09-07 17:04:43
test train val e817f1d6f4743286735811fff60f64080a8e76ed Thai Thien 2020-09-07 17:02:57
add profiler fac9aa609d6de1e8cd9cb8a8a97f00063aaae310 Thai Thien 2020-09-07 16:59:36
generate dataset again 7475799e0ff4bdc51ce86ca98751535c841d49c9 Thai Thien 2020-09-07 16:52:00
try to fix cannot convert float infinity to integer b29a994c2f3e73e78ec2ca7d1ad808049f1008e9 Thai Thien 2020-09-07 16:49:44
jhu adamw1_bigtail13i_t1_jhu 77bb789fa2ffadfc07ec6f99e1bcf44bde24bfc3 Thai Thien 2020-09-07 16:38:13
train_dev_test cbfc478aaf7db3accb41a763b0818910999d25a5 Thai Thien 2020-09-06 17:29:37
seem working c44af597b7adf98ecaf3a71e565de8688f7ff6ba Thai Thien 2020-09-06 15:55:28
done single sample cee46d309e9bb91ac4185b0e1b74deddefbc8553 Thai Thien 2020-09-06 15:24:39
a ec2103c6617ad84375e5a7a0f3cde3b32ab012a0 Thai Thien 2020-08-23 15:39:51
pred_count d9168903486d7a88c0763a8e93b18d1ed89d2d40 Thai Thien 2020-08-23 15:37:02
density_map_count = gt_density.detach().sum() 015c7ab3a1734c6002065f775f90870b6c5bdbd5 Thai Thien 2020-08-23 15:35:31
no more eval, only one in function 316b330c481224bb4264ddebb3dda2e317c32ac1 Thai Thien 2020-08-23 15:34:21
None type eval 15a12c6dd1a6f828f5e852faecaf2a812dfddce8 Thai Thien 2020-08-23 15:30:17
run experiment on shb truncate 4 3faae2b49ed074fdb96fc20e916fee9eeac4f92f Thai Thien 2020-08-23 15:20:23
Commit 06478164cb8e00ed5512a0d4db0dbc6edc1b5ad1 - remove experiment
Author: Thai Thien
Author date (UTC): 2020-09-08 15:10
Committer name: Thai Thien
Committer date (UTC): 2020-09-08 15:10
Parent(s): 5a43d57ba16667cb96f9514dcf4b81167ff8bd5a
Signing key:
Tree: 879606253f2cb3e050736e40275442048af5b134
File Lines added Lines deleted
dataset_script/jhucrowd_density_map.py 5 5
File dataset_script/jhucrowd_density_map.py changed (mode: 100644) (index dc0da38..2b87023)
... ... def full_flow_jhucrowd_parallel(root_path, experiment=None):
156 156 density_name = name + ".h5" density_name = name + ".h5"
157 157 gt_name = name + ".txt" gt_name = name + ".txt"
158 158 try: try:
159 if experiment is not None:
160 experiment.log_metric("name", name)
159 # if experiment is not None:
160 # experiment.log_metric("name", name)
161 161 img_path = os.path.join(images_folder, img_name) img_path = os.path.join(images_folder, img_name)
162 162 gt_path = os.path.join(gt_path_folder, gt_name) gt_path = os.path.join(gt_path_folder, gt_name)
163 163 density_path = os.path.join(density_path_folder, density_name) density_path = os.path.join(density_path_folder, density_name)
164 164 out = generate_density_map(img_path, gt_path, density_path) out = generate_density_map(img_path, gt_path, density_path)
165 165 print(out) print(out)
166 if experiment is not None:
167 experiment.log_metric("count", 1)
166 # if experiment is not None:
167 # experiment.log_metric("count", 1)
168 168 except Exception as e: except Exception as e:
169 169 track = traceback.format_exc() track = traceback.format_exc()
170 170 print(track) print(track)
171 experiment.log_metric("exception_at", name)
171 # experiment.log_metric("exception_at", name)
172 172 print("exception at ", name) print("exception at ", name)
173 173
174 174
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