List of commits:
Subject Hash Author Date (UTC)
travis e6368ec3102e01f1bdc71a80a78f0db3617d7e08 Thai Thien 2020-07-12 12:33:21
flatten_collate 1e460396875c205c42de27449f56e73cd4ec10e0 Thai Thien 2020-07-12 12:23:40
train val split test ratio to 0.1 5091da3f0b45d875a38c2829e4fec5e61116e869 Thai Thien 2020-07-11 03:14:26
f 1defee5dc452c2da5fb540ff1050f6e01fe1878b Thai Thien 2020-07-10 17:04:58
fix log db4d655a313b8f3951baf225a4b197fce4bcdd4b Thai Thien 2020-07-10 16:50:03
typo, trunc 3.0 not 4.0 ee29c49efd0a5087f11662997b8992d25671a33a Thai Thien 2020-07-10 16:44:55
let try with trunc 3.0 f8eac179b1fa79d6451f19a9e6a35b82b94646a4 Thai Thien 2020-07-10 16:43:41
train script 7e6984a9eaa6609182ad6c786f6742dd29f1d017 Thai Thien 2020-06-14 10:23:05
fix H3 71d41ac82f273857f7643d8e63e502c701888a5b Thai Thien 2020-06-14 10:10:39
typo bc78059e62b17a5a617e3e0294f5c72dd4bd347e Thai Thien 2020-06-14 10:06:35
H3_t1_sha H3_t2_sha H3_t2_shb_fixed ccnn_adam_t7_shb ccnn_adam_t7_sha ca7e1ccab41314f8a30e48609421db3a2c41bbe0 Thai Thien 2020-06-14 09:59:17
train script da9ad066d6d835f38eb9e9c2b771ff412124552a Thai Thien 2020-06-13 18:06:22
train script ccnnv9 8ab76b70dad11b1458f8c1bfc2f1765c6ece984d Thai Thien 2020-06-13 17:57:02
train script 7ab6cf827c811af9a0c9168de2fde4dbd0fb3e61 Thai Thien 2020-06-13 11:54:21
fix typo also 3d32c83c822a66ac24ebb6d8cfe4d023d167d441 Thai Thien 2020-06-13 04:45:27
typo in training script 07c6055e3bdacaca34c0aaacd49d5c87a07f4320 Thai Thien 2020-06-13 04:44:20
ccnnv9 leaky relu 5fd462122ef62498a51dd83db2c89507254d7a96 Thai Thien 2020-06-13 04:40:41
CompactCNNv9 leaky relu 03e5f342cc6eb3ba4fd0b98061398acedde6ab54 Thai Thien 2020-06-13 04:36:43
train script ad55dbff34ffab8cffd068536c4d2f2b57a487ee Thai Thien 2020-06-13 04:17:21
add L1Mean, add experiment tag on cometml 125f03f6f136bde9fa11b00a749b8a0c3de51534 Thai Thien 2020-06-13 04:15:30
Commit e6368ec3102e01f1bdc71a80a78f0db3617d7e08 - travis
Author: Thai Thien
Author date (UTC): 2020-07-12 12:33
Committer name: Thai Thien
Committer date (UTC): 2020-07-12 12:33
Parent(s): 1e460396875c205c42de27449f56e73cd4ec10e0
Signing key:
Tree: 47e840bd708e945e93383a7a25aa2ae67bb5bbac
File Lines added Lines deleted
.travis.yml 39 0
File .travis.yml added (mode: 100644) (index 0000000..87f55c2)
1 language: python
2 python:
3 - "3.6" # current default Python on Travis CI
4 - "3.7"
5 - "3.8"
6 - "nightly" # nightly build
7 # command to install dependencies
8 install:
9 - sudo apt update
10 # We do this conditionally because it saves us some downloading if the
11 # version is the same.
12 - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
13 wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
14 else
15 wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
16 fi
17 - bash miniconda.sh -b -p $HOME/miniconda
18 - source "$HOME/miniconda/etc/profile.d/conda.sh"
19 - hash -r
20 - conda config --set always_yes yes --set changeps1 no
21 - conda update -q conda
22 # Useful for debugging any issues with conda
23 - conda info -a
24
25 # Replace dep1 dep2 ... with your dependencies
26 - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION anaconda
27 - conda activate test-environment
28 - conda install pytorch torchvision cudatoolkit=10.2 -c pytorch
29 - conda install -c conda-forge opencv
30 - conda install ignite -c pytorch
31 - conda install -c conda-forge h5py
32 - conda install scikit-learn
33 - conda install -c anaconda pillow
34 - conda install -c anaconda numpy
35 - conda install -c anaconda matplotlib
36 - pip install comet_ml
37 # command to run tests
38 script:
39 - pytest data_util
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