Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate DVC #232

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
- **August 2023 (image compression)** - [Released PyTorch implementation of MS-ILLM](https://github.com/facebookresearch/NeuralCompression/tree/main/projects/illm)
- **April 2023 (video compression)** - [Released PyTorch implementation of VCT](https://github.com/facebookresearch/NeuralCompression/tree/main/projects/torch_vct)
- **November 2022 (image compression)** - [Released Bits-Back coding with diffusion models](https://github.com/facebookresearch/NeuralCompression/tree/main/projects/bits_back_diffusion)!
- **July 2021 (video compression)** - [Released implementation of DVC](https://github.com/facebookresearch/NeuralCompression/tree/main/projects/deep_video_compression)

## About

Expand Down Expand Up @@ -76,7 +75,7 @@ The 2-tier structure enables rapid iteration and reproduction via code in

- `projects` - recipes and code for reproducing papers
- `bits_back_diffusion` - code for bits-back coding with diffusion models
- `deep_video_compression` [DVC (Lu et al., 2019)](https://openaccess.thecvf.com/content_CVPR_2019/html/Lu_DVC_An_End-To-End_Deep_Video_Compression_Framework_CVPR_2019_paper.html), might soon be deprecated
- `deep_video_compression` [DVC (Lu et al., 2019)](https://openaccess.thecvf.com/content_CVPR_2019/html/Lu_DVC_An_End-To-End_Deep_Video_Compression_Framework_CVPR_2019_paper.html), deprecated
- `illm` [MS-ILLM (Muckley et al., 2023)](https://proceedings.mlr.press/v202/muckley23a.html)
- `jax_entropy_coders` - implementations of arithmetic coding and ANS in JAX
- `torch_vct` [VCT (Mentzer, et al.,)](https://proceedings.neurips.cc/paper_files/paper/2022/hash/54dcf25318f9de5a7a01f0a4125c541e-Abstract-Conference.html)
Expand Down
4 changes: 2 additions & 2 deletions projects/deep_video_compression/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This project trains the
[Deep Video Compression model (DVC)](https://openaccess.thecvf.com/content_CVPR_2019/html/Lu_DVC_An_End-To-End_Deep_Video_Compression_Framework_CVPR_2019_paper.html)
on the [Vimeo-90k septuplet](http://toflow.csail.mit.edu/) dataset.

**Note:** A PyTorch implementation linked by the original authors is available
[here](https://github.com/ZhihaoHu/PyTorchVideoCompression).
**Note:** This code base is deprecated! A PyTorch implementation linked by the
original authors is available [here](https://github.com/ZhihaoHu/PyTorchVideoCompression).

The project uses
[PyTorch Lightning](https://pytorch-lightning.readthedocs.io/en/latest/)
Expand Down
Loading