PUE value #3
-
First of all, I would like to thank you for your work! It is an amazing project that I think can contribute to a more sustainable and responsible use of AI. Thank you very much in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Dear @vanessam12 , thank for feedback on our library. We hope it can help in developing sustainable AI. import eco2ai tracker = eco2ai.Tracker( Please take into account that this is changing default parameter saved in library settings folder (plese look in readme -> use examples) and it will be used by default for next experiments until changed explicitly. Further documentation you can get via help(eco2ai.Tracker) function or freely ask us in discussion. |
Beta Was this translation helpful? Give feedback.
Dear @vanessam12 , thank for feedback on our library. We hope it can help in developing sustainable AI.
By default pue is set to 1.0. In order to set optional pue value you can configure in Tracking initialization:
import eco2ai
tracker = eco2ai.Tracker(
project_name="YourProjectName",
experiment_description="training model",
file_name="emission.csv”,
pue =
)
Please take into account that this is changing default parameter saved in library settings folder (plese look in readme -> use examples) and it will be used by default for next experiments until changed explicitly.
Further documentation you can get via help(eco2ai.Tracker) function or freely ask us in discussion.
Good luck in your f…