From d0087f05f6578b74c7cb875be98a97ae65a34141 Mon Sep 17 00:00:00 2001 From: LukasHedegaard Date: Wed, 12 Jan 2022 12:00:53 +0000 Subject: [PATCH] Update README --- README.md | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index bae6221..33d7200 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ pip install --upgrade git+https://github.com/LukasHedegaard/continual-transforme When you have downloaded and placed the THUMOS featues under `~/data`, you can select the features by appending the following to your python command: - ActivityNet (default): - - `--features Anet2016_feature_v2` + - `--feature Anet2016_feature_v2` - Kinetics: - - `--features V3` + - `--feature V3` # Experiments @@ -60,22 +60,23 @@ Each conducted experiment has its own branch. An overview of the ablated feature ## THUMOS | Model | branch | command | | ------- | ------- | ------- | -| OadTR | [original](https://github.com/LukasHedegaard/OadTR/tree/original) | `python main.py --num_layers 3 --decoder_layers 5 --enc_layers 64 --features ` | -| OadTR-b2 | [no-decoder-no-cls-token](https://github.com/LukasHedegaard/OadTR/tree/no-decoder-no-cls-token) | `python main.py --num_layers 2 --enc_layers 64 --features ` | -| OadTR-b2 | [no-decoder-no-cls-token](https://github.com/LukasHedegaard/OadTR/tree/no-decoder-no-cls-token) | `python main.py --num_layers 1 --enc_layers 64 --features ` | -| CoOadTR-b2 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --num_layers 2 --enc_layers 64 --features ` | -| CoOadTR-b1 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --num_layers 2 --enc_layers 64 --features ` | +| OadTR | [original](https://github.com/LukasHedegaard/OadTR/tree/original) | `python main.py --num_layers 3 --decoder_layers 5 --enc_layers 64 --feature ` | +| OadTR-b2 | [no-decoder-no-cls-token](https://github.com/LukasHedegaard/OadTR/tree/no-decoder-no-cls-token) | `python main.py --num_layers 2 --enc_layers 64 --feature ` | +| OadTR-b2 | [no-decoder-no-cls-token](https://github.com/LukasHedegaard/OadTR/tree/no-decoder-no-cls-token) | `python main.py --num_layers 1 --enc_layers 64 --feature ` | +| CoOadTR-b2 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --num_layers 2 --enc_layers 64 --feature ` | +| CoOadTR-b1 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --num_layers 1 --enc_layers 64 --feature ` | -Where `` is either `"Anet2016_feature_v2"` or `"V3"` for ActivityNet and Kinetics pretrained features, respectively. +Where `` is either `"anet"` or `"kin"` for ActivityNet and Kinetics pretrained features, respectively. +`--dim_feature` should be `3072` for `"anet"` , and `4096` for `"kin"`. ## TVSeries | Model | branch | command | | ------- | ------- | ------- | -| OadTR | [original-tvseries](https://github.com/LukasHedegaard/CoOadTR/tree/original-tvseries) | `python main.py --num_layers 3 --decoder_layers 5 --enc_layers 64 --features ` | -| OadTR-b2 | [no-decoder-no-cls-token-tvseries](https://github.com/LukasHedegaard/CoOadTR/tree/no-decoder-no-cls-token-tvseries) | `python main.py --num_layers 2 --enc_layers 64 --features ` | -| OadTR-b2 | [no-decoder-no-cls-token-tvseries](https://github.com/LukasHedegaard/CoOadTR/tree/no-decoder-no-cls-token-tvseries) | `python main.py --num_layers 1 --enc_layers 64 --features ` | -| CoOadTR-b2 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --dataset tvseries --num_layers 2 --enc_layers 64 --features ` | -| CoOadTR-b1 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --dataset tvseries --num_layers 2 --enc_layers 64 --features ` | +| OadTR | [original-tvseries](https://github.com/LukasHedegaard/CoOadTR/tree/original-tvseries) | `python main.py --num_layers 3 --decoder_layers 5 --enc_layers 64 --feature ` | +| OadTR-b2 | [no-decoder-no-cls-token-tvseries](https://github.com/LukasHedegaard/CoOadTR/tree/no-decoder-no-cls-token-tvseries) | `python main.py --num_layers 2 --enc_layers 64 --feature ` | +| OadTR-b2 | [no-decoder-no-cls-token-tvseries](https://github.com/LukasHedegaard/CoOadTR/tree/no-decoder-no-cls-token-tvseries) | `python main.py --num_layers 1 --enc_layers 64 --feature ` | +| CoOadTR-b2 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --dataset tvseries --num_layers 2 --enc_layers 64 --feature ` | +| CoOadTR-b1 | [main](https://github.com/LukasHedegaard/CoOadTR/tree/main) | `python main.py --dataset tvseries --num_layers 1 --enc_layers 64 --feature ` | -Where `` is the name of your `.pickle` file of extracted features (either A.Net or Kin. features), placed in the `~/data` folder. \ No newline at end of file +Where `` is the name of your `.pickle` file of extracted features (either A.Net or Kin. features), placed in the `~/data` folder. \ No newline at end of file