Alex Nguyen

Results 6 comments of Alex Nguyen

> It relates to #296 . The extension is kind off a wall for the adoption of the software. tks you 👍

@khayliang thank you, khayliang Could you tell me how I can get the data for another object like 'Car' with 751 classes to train for 'Car' objects.

> Thank you very much, I solved the problem. But when I try to add another str_schema with another Object instead of user_str_schema and User in example code. I found...

secondly. I try another way to define user_to_dict function: ```python def user_to_dict(user, ctx): return dict(id=user.id, age=user.age) def user_to_dict(user, ctx): return user.__dict__ ``` But I got an error: ` raise ValueSerializationError(se)...

in file `webvirtmgr/webvirtmgr/utils/secret_key.py` in line 60: Change ```python if oct(os.stat(key_file).st_mode & 0o777) != '0600': ``` to ```python if oct(os.stat(key_file).st_mode & 0o777) != '0o600': ``` and use: ```console $ sudo chmod...

@zyc-ai a comprehension list is faster than a loop