Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
OneScience-Sugon
/
AlphaFold3
like
0
Follow
OneScience
8
OneScience-Sugon/AlphaFold3_dataset
English
Chinese
OneScience
Life Sciences
Protein Structure Prediction
Biomolecular Interactions
Complex Structure Prediction
AlphaFold3
License:
cc-by-nc-sa-4.0
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
main
AlphaFold3
/
weight
/
_dep
/
eigen
/
doc
/
examples
/
Cwise_erf.cpp
wuxing0105
Add files using upload-large-folder tool
2e3030d
verified
about 20 hours ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
189 Bytes
#
include
<Eigen/Core>
#
include
<unsupported/Eigen/SpecialFunctions>
#
include
<iostream>
using
namespace
Eigen;
int
main
()
{
Array4d
v
(
-0.5
,
2
,
0
,
-7
)
;
std::cout << v.
erf
() << std::endl;
}