Introduction
FARM (Functional Group-Aware Molecular Representation) is a molecular representation model based on the BERT architecture. Its core innovation lies in a functional group-aware molecular tokenization algorithm that directly encodes functional group information into molecular representations. Trained on the ChEMBL and ZINC15 databases, the model combines masked language modeling with graph neural network-based contrastive learning to achieve alignment between atom-level and whole-molecule-level representations, delivering strong performance across molecular property prediction, classification, and generation tasks.
Integrated Deployment
- Out-of-the-box inference scripts with pre-configured hardware and software parameters
- Released FlagOS-Nvidia container image supporting deployment within minutes
Consistency Validation
- Rigorously evaluated through benchmark testing: Performance and results from the FlagOS software stack are compared against native stacks on multiple public.
Evaluation Results
Benchmark Result
| Metrics | farm_molecular_representation-Nvidia-Origin | farm_molecular_representation-Nvidia-FlagOS |
|---|---|---|
| BBBP | 0.9577 | 0.9625 |
User Guide
Environment Setup
| Item | Version |
|---|---|
| Docker Version | Docker version 24.0.0, build 98fdcd7 |
| Operating System | 22.04.4 LTS (Jammy Jellyfish) |
Operation Steps
Download FlagOS Image
docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-farm-nvidia-tree_none-gems_none-vllm_none-plugin_none-python_3.12.3-torch_2.12.0.nv26.4-pcp_cuda13.2-gpu_nvidia003-arc_amd64-driver_570.133.20:202605250940
Download Open-source Model Weights
pip install modelscope
modelscope download --model FlagRelease/farm_molecular_representation-nvidia-FlagOS --local_dir /data/farm_molecular_representation
Start the Container
docker run \
--init \
--detach \
--net=host \
--uts=host \
--ipc=host \
--security-opt=seccomp=unconfined \
--privileged=true \
--ulimit stack=67108864 \
--ulimit memlock=-1 \
--ulimit nofile=1048576:1048576 \
--shm-size=128G \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v /data:/data \
-v /mnt:/mnt \
--gpus all \
--name flagos \
docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-farm-nvidia-tree_none-gems_none-vllm_none-plugin_none-python_3.12.3-torch_2.12.0.nv26.4-pcp_cuda13.2-gpu_nvidia003-arc_amd64-driver_570.133.20:202605250940 \
sleep infinity
docker exec -it flagos /bin/bash
Service Invocation
Invocation Script
python /root/run_inference.py \
--model_path /data/farm_molecular_representation \
--input_file /root/test_input.txt \
--device cuda:0 \
--batch_size 32 \
--pooling mean \
--output_file /root/output_embeddings.npy
AnythingLLM Integration Guide
1. Download & Install
- Visit the official site: https://anythingllm.com/
- Choose the appropriate version for your OS (Windows/macOS/Linux)
- Follow the installation wizard to complete the setup
2. Configuration
- Launch AnythingLLM
- Open settings (bottom left, fourth tab)
- Configure core LLM parameters
- Click "Save Settings" to apply changes
3. Model Interaction
- After model loading is complete:
- Click "New Conversation"
- Enter your question (e.g., “Explain the basics of quantum computing”)
- Click the send button to get a response
Technical Overview
FlagOS is a fully open-source system software stack designed to unify the "model–system–chip" layers and foster an open, collaborative ecosystem. It enables a “develop once, run anywhere” workflow across diverse AI accelerators, unlocking hardware performance, eliminating fragmentation among vendor-specific software stacks, and substantially lowering the cost of porting and maintaining AI workloads. With core technologies such as the FlagScale, together with vllm-plugin-fl, distributed training/inference framework, FlagGems universal operator library, FlagCX communication library, and FlagTree unified compiler, the FlagRelease platform leverages the FlagOS stack to automatically produce and release various combinations of <chip + open-source model>. This enables efficient and automated model migration across diverse chips, opening a new chapter for large model deployment and application.
FlagGems
FlagGems is a high-performance, generic operator libraryimplemented in Triton language. It is built on a collection of backend-neutralkernels that aims to accelerate LLM (Large-Language Models) training and inference across diverse hardware platforms.
FlagTree
FlagTree is an open source, unified compiler for multipleAI chips project dedicated to developing a diverse ecosystem of AI chip compilers and related tooling platforms, thereby fostering and strengthening the upstream and downstream Triton ecosystem. Currently in its initial phase, the project aims to maintain compatibility with existing adaptation solutions while unifying the codebase to rapidly implement single-repository multi-backend support. Forupstream model users, it provides unified compilation capabilities across multiple backends; for downstream chip manufacturers, it offers examples of Triton ecosystem integration.
FlagScale and vllm-plugin-fl
Flagscale is a comprehensive toolkit designed to supportthe entire lifecycle of large models. It builds on the strengths of several prominent open-source projects, including Megatron-LM and vLLM, to provide a robust, end-to-end solution for managing and scaling large models. vllm-plugin-fl is a vLLM plugin built on the FlagOS unified multi-chip backend, to help flagscale support multi-chip on vllm framework.
FlagCX
FlagCX is a scalable and adaptive cross-chip communication library. It serves as a platform where developers, researchers, and AI engineers can collaborate on various projects, contribute to the development of cutting-edge AI solutions, and share their work with the global community.
FlagEval Evaluation Framework
FlagEval is a comprehensive evaluation system and open platform for large models launched in 2023. It aims to establish scientific, fair, and open benchmarks, methodologies, and tools to help researchers assess model and training algorithm performance. It features:
- Multi-dimensional Evaluation: Supports 800+ modelevaluations across NLP, CV, Audio, and Multimodal fields,covering 20+ downstream tasks including language understanding and image-text generation.
- Industry-Grade Use Cases: Has completed horizonta1 evaluations of mainstream large models, providing authoritative benchmarks for chip-model performance validation.
Contributing
We warmly welcome global developers to join us:
- Submit Issues to report problems
- Create Pull Requests to contribute code
- Improve technical documentation
- Expand hardware adaptation support
License
The model weights are derived from thaonguyen217/farm_molecular_representation and are open‑sourced under the Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt
- Downloads last month
- 24