Skip to content

ESMFold

基于蛋白质语言模型的端到端结构预测方法,使用大规模预训练的 ESM-2 模型直接从单条序列预测结构。 该方法无需多序列比对输入,推理速度比 AlphaFold 快一个数量级,适合大规模结构预测。

PropertyValue
Purpose基于语言模型的快速蛋白质结构预测
Time ComplexityO(n^2)
Space ComplexityO(n^2)
Year2023
CategoryProtein Structure Prediction

Complexity Analysis

  • Time Complexity: O(n^2)
  • Space Complexity: O(n^2)

Performance Insight: The time complexity of this algorithm is quadratic (O(n²)), suitable for moderate data sizes; consider approximation algorithms for large inputs. High space complexity; consider Hirschberg-style space-optimized variants for very long sequences.

Note: Complexity analysis is based on theoretical models. Actual runtime is affected by input scale, hardware, and implementation optimizations. Benchmark for your specific workload.

Literature & Implementation

AlphaFold · OmegaFold · RoseTTAFold

Tags

language-model single-sequence fast deep-learning

Released under the MIT License.