We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9071f2f commit 1392be1Copy full SHA for 1392be1
README.md
@@ -154,13 +154,13 @@ for parser in iter_parser:
154
155
# Simpleアノテーションzip内の1個のJSONファイルを読み込み
156
with zipfile.ZipFile('simple-annotation.zip', 'r') as zip_file:
157
- parser = SimpleAnnotationZipParser(zip_file, "task_id/input_data_name.json")
+ parser = SimpleAnnotationZipParser(zip_file, "task01/12345678-abcd-1234-abcd-1234abcd5678.json")
158
simple_annotation = parser.parse()
159
print(simple_annotation)
160
161
# Simpleアノテーションzip内を展開したディレクトリ内の1個のJSONファイルを読み込み
162
-parser = SimpleAnnotationDirParser(Path("task_id/input_data_name.json"))
163
-simple_annotation = p.parse()
+parser = SimpleAnnotationDirParser(Path("task01/12345678-abcd-1234-abcd-1234abcd5678.json"))
+simple_annotation = parser.parse()
164
165
166
```
0 commit comments