├── README.md ├── assets ├── overall.png └── rd.png ├── eval.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── entropy_models.cpython-38.pyc │ ├── flic.cpython-38.pyc │ └── tca.cpython-38.pyc ├── entropy_models.py ├── flic.py └── tca.py ├── train.py └── utils ├── Meter.py └── __pycache__ └── Meter.cpython-38.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/README.md -------------------------------------------------------------------------------- /assets/overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/assets/overall.png -------------------------------------------------------------------------------- /assets/rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/assets/rd.png -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/eval.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .flic import FrequencyAwareTransFormer -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/entropy_models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/__pycache__/entropy_models.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/flic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/__pycache__/flic.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/tca.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/__pycache__/tca.cpython-38.pyc -------------------------------------------------------------------------------- /models/entropy_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/entropy_models.py -------------------------------------------------------------------------------- /models/flic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/flic.py -------------------------------------------------------------------------------- /models/tca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/models/tca.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/train.py -------------------------------------------------------------------------------- /utils/Meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/utils/Meter.py -------------------------------------------------------------------------------- /utils/__pycache__/Meter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingshi9974/ICLR2024-FTIC/HEAD/utils/__pycache__/Meter.cpython-38.pyc --------------------------------------------------------------------------------