pyh5214 commited on
Commit
3f69cf5
ยท
verified ยท
1 Parent(s): 177bab0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md CHANGED
@@ -71,3 +71,62 @@ inputs = extractor(multi_band_images, return_tensors="pt")
71
  outputs = model(**inputs)
72
  logits = outputs.logits
73
  predicted_class = torch.argmax(logits, dim=1)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  outputs = model(**inputs)
72
  logits = outputs.logits
73
  predicted_class = torch.argmax(logits, dim=1)
74
+
75
+
76
+ ## Training Details
77
+ # Training Data:
78
+
79
+ ๋“œ๋ก  ๋ฐ ์œ„์„ฑ ์ดฌ์˜ ๋‹ค์ค‘๋ถ„๊ด‘(5๋ฐด๋“œ) ์ด๋ฏธ์ง€ ๋ฐ์ดํ„ฐ์…‹
80
+
81
+ ๋ผ๋ฒจ: ์ฃผ์š” ์ž‘๋ฌผ ๋ฐ ์‹์ƒ ํด๋ž˜์Šค
82
+
83
+ # Training Procedure:
84
+
85
+ ํŒŒ์ธํŠœ๋‹: facebook/convnext-tiny-224 ๊ธฐ๋ฐ˜
86
+
87
+ ์—ํญ์ˆ˜: 30
88
+
89
+ ๋ฐฐ์น˜์‚ฌ์ด์ฆˆ: 32
90
+
91
+ ์˜ตํ‹ฐ๋งˆ์ด์ €: AdamW
92
+
93
+ ํ•™์Šต๋ฅ : 1e-4, Cosine Annealing ์Šค์ผ€์ค„๋Ÿฌ ์‚ฌ์šฉ
94
+
95
+ # Evaluation
96
+ Testing Data: ๋ณ„๋„ ๋ณด์œ ํ•œ ๊ฒ€์ฆ์šฉ ๋‹ค์ค‘๋ถ„๊ด‘ ์ด๋ฏธ์ง€์…‹
97
+
98
+ Metrics: ์ •ํ™•๋„(Accuracy), F1-Score
99
+
100
+ Performance:
101
+
102
+ Accuracy: 92.3%
103
+
104
+ F1-Score: 0.91
105
+
106
+ Environmental Impact
107
+ Hardware: NVIDIA RTX 3090 GPU
108
+
109
+ Training Duration: ์•ฝ 40์‹œ๊ฐ„
110
+
111
+ Carbon Emissions: ์•ฝ 50 kg CO2e (ML CO2 ๊ณ„์‚ฐ๊ธฐ ๊ธฐ๋ฐ˜ ์ถ”์‚ฐ)
112
+
113
+ Citation
114
+ bibtex
115
+ ๋ณต์‚ฌ
116
+ @article{liu2022convnext,
117
+ title={ConvNeXt: A ConvNet for the 2020s},
118
+ author={Liu, Zhuang and Mao, Han and Wu, Chao and Feichtenhofer, Christoph and Darrell, Trevor and Xie, Saining},
119
+ journal={arXiv preprint arXiv:2201.03545},
120
+ year={2022}
121
+ }
122
+ Glossary
123
+ ๋‹ค์ค‘๋ถ„๊ด‘ ์˜์ƒ(Multispectral Imagery): ์—ฌ๋Ÿฌ ํŒŒ์žฅ๋Œ€์˜ ๋น›์„ ๋ถ„๋ฆฌํ•˜์—ฌ ์ดฌ์˜ํ•œ ์˜์ƒ์œผ๋กœ, ์ž‘๋ฌผ์˜ ์ƒ์œก ์ƒํƒœ ๋ถ„์„ ๋“ฑ์— ํ™œ์šฉ๋จ
124
+
125
+ ConvNeXt: ํ˜„๋Œ€์ ์ธ ๊ตฌ์กฐ๋ฅผ ๊ฐ–์ถ˜ ์ปจ๋ณผ๋ฃจ์…˜ ์‹ ๊ฒฝ๋ง(CNN)
126
+
127
+ F1-Score: ์ •๋ฐ€๋„์™€ ์žฌํ˜„์œจ์˜ ์กฐํ™”ํ‰๊ท , ๋ถˆ๊ท ํ˜• ๋ฐ์ดํ„ฐ ํ‰๊ฐ€์— ํšจ๊ณผ์ 
128
+
129
+ Model Card Authors
130
+ AI Research Team, Your Organization
131
+
132