Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
VoxCPM
Log In
Sign Up
U4R
/
InternAgent
like
3
Follow
Alpha-Innovator Lab
54
TensorBoard
qwen2_vl
arxiv:
2505.16938
Model card
Files
Files and versions
xet
Metrics
Training metrics
Community
main
InternAgent
/
examples
/
AutoMolecule3D_MD17
/
Baseline
/
metrics.py
yxc97
Upload folder using huggingface_hub
62a2f1c
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
118 Bytes
import
numpy
as
np
def
calculate_mae
(
y_true, y_pred
):
mae = np.
abs
(y_true - y_pred).mean()
return
mae