윤영준 윤영준 2023-06-22
theorizing about datasetmanagement
@9124f892ea9eaa16dbf28c6d2c635bdf6bf58055
 
data/example.yaml (added)
+++ data/example.yaml
@@ -0,0 +1,7 @@
+files:
+  abc123: # hash key
+    path: /path/to/source/files/file1.jpg
+  def456: # hash key
+    path: /path/to/source/files/file2.jpg
+  ghi789: # hash key
+    path: /path/to/source/files/with/effects/file1.jpg
 
data/example_versioning.yaml (added)
+++ data/example_versioning.yaml
@@ -0,0 +1,4 @@
+version: v1.0.0
+files:
+  - abc123
+  - def456
 
datasetmananger.py (added)
+++ datasetmananger.py
@@ -0,0 +1,15 @@
+import yaml
+import hashlib
+import os
+
+def make_index():
+
+def add_files():
+
+def delete_files():
+
+def give_info():
+
+def version_up():
+
+def link_files():(No newline at end of file)
train.py
--- train.py
+++ train.py
@@ -11,7 +11,6 @@
 ## 대충 그래서 weight export해서 inference용과 training용으로 나누는 코드
 ## 대충 그래서 inference용은 attention map까지 하는 녀석과 deraining까지 하는 녀석 두개가 나오는 코드
 ## 학습용은 그래서 풀 weight 나옴
-## GAN은 학습 시키면 Nash equilibrium 나오는데 이거 ... 이번 프로그램에서는 문제가 안될려나?
-##
+## GAN은 학습 시키면 Nash equilibrium ... 나오게 할 수 있으려나?
 ## 대충 학습은 어떻게 돌려야 되지 하는 코드
 ## generator에서 튀어 나온 애들을 따로 저장해야 하는건가
Add a comment
List