Added a comment
authorXyem <Xyem@web>
Thu, 23 Mar 2023 17:05:24 +0000 (17:05 +0000)
committeradmin <admin@branchable.com>
Thu, 23 Mar 2023 17:05:24 +0000 (17:05 +0000)
doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment [new file with mode: 0644]

diff --git a/doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment b/doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment
new file mode 100644 (file)
index 0000000..4eb0f26
--- /dev/null
@@ -0,0 +1,26 @@
+[[!comment format=mdwn
+ username="Xyem"
+ avatar="http://cdn.libravatar.org/avatar/dea2d98057721c21166c3721f6d55c06"
+ subject="comment 5"
+ date="2023-03-23T17:05:24Z"
+ content="""
+Has the format been changed since this previously asked? I am currently trying to leverage git-annex and its metadata views with AI tooling, but the format seems to be filename_%path%, resulting in the extension being in the middle of the path. I have set `annex.maxextensionlength` to `12` so the extensions are present on the files in the backend.
+
+    $ git annex view type=model model/=*
+    $ ls -lr
+    .:
+    sd
+    
+    ./sd:
+    v1.4.safetensors_%model%sd%  v1.5.safetensors_%model%sd%
+
+whereas I would expect (or rather, I am trying to achieve):
+
+    $ ls -lr
+    .:
+    sd
+    
+    ./sd:
+    v1.4.safetensors  v1.5.safetensors
+
+"""]]