Update README.md
Browse files
README.md
CHANGED
@@ -69,4 +69,16 @@ train_dataset = DataReader(
|
|
69 |
database_dir=train_path, label_paths=train_gt_path,
|
70 |
transform=trans_tr, target_index=target_index
|
71 |
)
|
72 |
-
````
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
database_dir=train_path, label_paths=train_gt_path,
|
70 |
transform=trans_tr, target_index=target_index
|
71 |
)
|
72 |
+
````
|
73 |
+
|
74 |
+
## Acknowledgment
|
75 |
+
|
76 |
+
This model is based on the Vision Transformer architecture developed by Google Research, as detailed in their repository [Vision Transformer](https://github.com/google-research/vision_transformer). The original models were trained on the ImageNet and ImageNet-21k datasets and are licensed under the Apache License, Version 2.0.
|
77 |
+
|
78 |
+
We would like to express our gratitude to the authors and contributors of the Vision Transformer project for their valuable work, which has significantly influenced my model's development. For more information on the license and usage, please refer to the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).
|
79 |
+
|
80 |
+
Feel free to modify this note to better fit your style or specific contributions.
|
81 |
+
|
82 |
+
**Citations:**
|
83 |
+
1. [Acknowledgment Note](https://github.com/google-research/vision_transformer?tab=Apache-2.0-1-ov-file#readme)
|
84 |
+
2. [Vision Transformer GitHub Repository](https://github.com/google-research/vision_transformer)
|