marcocaggioni
marcocaggioni
Hi, I saw in this issue how you can define a chemical that is not present in the database. By defining with the syntax hematite = {'CASRN': '1309-37-1', 'name': 'hematite',...
My apologies, the error is related to the python version. It works with python 3.11.9 and not with 3.12.3
to convert the json label to the yolo txt labels I use: ```python import json from pathlib import Path def create_yolo_label(file, class_dict): with open(file, "r") as json_file: data = json.load(json_file)...