-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[3.1] AI: Add inferenceEnergyConsumption and totalEnergyConsumption #676
Comments
Another way to record the energy consumption is to record the compute, which can be either in
The approach is to not recording/estimating the energy consumption directly but instead record the number of compute. "The unit of energy is normalized in terms of the energy for a multiply-and-accumulate (MAC) operation (i.e., 10^2 = energy of 100 MACs)." [1] The actual energy consumption can be calculated from that normalized unit and is varied by the actual hardware using for the computation - which can be more energy efficient overtime. Because of this, this record the compute approach may be less relevant for the On the other hand, this approach will be very useful for See:
|
Update: will be in 3.0, per AI team meeting 2024-04-03 See these PRs: |
Was included in #648 to avoid breaking change in future. |
From 2024-04-10 meeting: Hugging Face model card has a carbon footprint information: This could compliment the energy consumption. For 3.1? |
Per discussion in #671 (comment) with @bennetkl, also related to #677 and #682, the next version of
energyConsumption
may also include the energy consumption at the inference time.It is also possible to include the estimation of the energy consumption for the entire life cycle of an AI system.
This issue will be use to collect
Proposed properties and descriptions
A free-form text that captures the amount of energy needed to train and operate the AI model.
trainingEnergyConsumption
for energy consumption during the training of an AI modelenergyConsumption
[3.0] AI: Rename: energyConsumption to trainingEnergyConsumption #677inferenceEnergyConsumption
for energy consumption per one inferencetotalEnergyConsumption
for energy consumption during the entire life cycle of the systemThe text was updated successfully, but these errors were encountered: