|
3 | 3 | # 🔥 PyTorch C++ Samples 🔥 |
4 | 4 |
|
5 | 5 | []() |
6 | | -[]() |
| 6 | +[]() |
7 | 7 | []() |
8 | 8 | []() |
9 | 9 |  |
@@ -60,20 +60,23 @@ $ sh scripts/test.sh |
60 | 60 |
|
61 | 61 | ## 🔄 Updates (MM/DD/YYYY) |
62 | 62 |
|
| 63 | +01/22/2026: Release of `v2.10.0` <br> |
| 64 | +12/22/2025: Implementation of `AdaIN` <br> |
| 65 | +12/20/2025: Implementation of `NST` <br> |
63 | 66 | 12/06/2025: Release of `v2.9.1.4` <br> |
64 | 67 | 12/01/2025: Release of `v2.9.1.3` <br> |
65 | 68 | 12/01/2025: Implementation of `PatchCore` <br> |
66 | 69 | 11/29/2025: Release of `v2.9.1.2` <br> |
67 | 70 | 11/29/2025: Implementation of `PaDiM` <br> |
68 | 71 | 11/27/2025: Implementation of `WideResNet` <br> |
69 | 72 | 11/27/2025: Release of `v2.9.1.1` <br> |
70 | | -11/24/2025: Implementation of `ESRGAN` <br> |
71 | | -11/21/2025: Implementation of `SRGAN` <br> |
72 | | -11/19/2025: Implementation of `DiT` <br> |
73 | 73 |
|
74 | 74 | <details> |
75 | 75 | <summary>See more...</summary> |
76 | 76 |
|
| 77 | +11/24/2025: Implementation of `ESRGAN` <br> |
| 78 | +11/21/2025: Implementation of `SRGAN` <br> |
| 79 | +11/19/2025: Implementation of `DiT` <br> |
77 | 80 | 11/14/2025: Release of `v2.9.1` <br> |
78 | 81 | 11/01/2025: Implementation of `NeRF` and `3DGS` <br> |
79 | 82 | 10/16/2025: Release of `v2.9.0` <br> |
@@ -419,6 +422,29 @@ $ sh scripts/test.sh |
419 | 422 | </tr> |
420 | 423 | </table> |
421 | 424 |
|
| 425 | +### 🖌️ Style Transfer |
| 426 | + |
| 427 | +<table> |
| 428 | + <tr> |
| 429 | + <th>Model</th> |
| 430 | + <th>Paper</th> |
| 431 | + <th>Conference/Journal</th> |
| 432 | + <th>Code</th> |
| 433 | + </tr> |
| 434 | + <tr> |
| 435 | + <td>Neural Style Transfer</td> |
| 436 | + <td><a href="https://openaccess.thecvf.com/content_cvpr_2016/html/Gatys_Image_Style_Transfer_CVPR_2016_paper.html">L. A. Gatys et al.</a></td> |
| 437 | + <td>CVPR 2016</td> |
| 438 | + <td><a href="Style_Transfer/NST">NST</a></td> |
| 439 | + </tr> |
| 440 | + <tr> |
| 441 | + <td>Adaptive Instance Normalization</td> |
| 442 | + <td><a href="https://openaccess.thecvf.com/content_iccv_2017/html/Huang_Arbitrary_Style_Transfer_ICCV_2017_paper.html">X. Huang et al.</a></td> |
| 443 | + <td>ICCV 2017</td> |
| 444 | + <td><a href="Style_Transfer/AdaIN">AdaIN</a></td> |
| 445 | + </tr> |
| 446 | +</table> |
| 447 | + |
422 | 448 | ### 🧩 Semantic Segmentation |
423 | 449 |
|
424 | 450 | <table> |
@@ -592,15 +618,15 @@ $ sh scripts/test.sh |
592 | 618 | Please select the environment to use as follows on PyTorch official. <br> |
593 | 619 | PyTorch official : https://pytorch.org/ <br> |
594 | 620 | *** |
595 | | -PyTorch Build : Stable (2.9.1) <br> |
| 621 | +PyTorch Build : Stable (2.10.0) <br> |
596 | 622 | Your OS : Linux <br> |
597 | 623 | Package : LibTorch <br> |
598 | 624 | Language : C++ / Java <br> |
599 | 625 | Run this Command : Download here (cxx11 ABI) <br> |
600 | | -CUDA 12.6 : https://download.pytorch.org/libtorch/cu126/libtorch-shared-with-deps-2.9.1%2Bcu126.zip <br> |
601 | | -CUDA 12.8 : https://download.pytorch.org/libtorch/cu128/libtorch-shared-with-deps-2.9.1%2Bcu128.zip <br> |
602 | | -CUDA 13.0 : https://download.pytorch.org/libtorch/cu130/libtorch-shared-with-deps-2.9.1%2Bcu130.zip <br> |
603 | | -CPU : https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.9.1%2Bcpu.zip <br> |
| 626 | +CUDA 12.6 : https://download.pytorch.org/libtorch/cu126/libtorch-shared-with-deps-2.10.0%2Bcu126.zip <br> |
| 627 | +CUDA 12.8 : https://download.pytorch.org/libtorch/cu128/libtorch-shared-with-deps-2.10.0%2Bcu128.zip <br> |
| 628 | +CUDA 13.0 : https://download.pytorch.org/libtorch/cu130/libtorch-shared-with-deps-2.10.0%2Bcu130.zip <br> |
| 629 | +CPU : https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.10.0%2Bcpu.zip <br> |
604 | 630 | *** |
605 | 631 |
|
606 | 632 | ### 2. OpenCV |
|
0 commit comments