Scenario
A polymer scientist wants to predict the glass transition temperature (Tg) for various polymer structures using SMILES notation. The PolyNC model on BRAIN platform provides ML-based property predictions for polymers.
Interactive Dialog
Learning Outcomes
OK
Mount ML model service on BRAIN
Successfully started PolyNC_API.exe on port 5001
OK
Get model examples and input format
Retrieved SMILES-based input format with property_type parameter
OK
Predict Tg for simple polymer
Polyethylene Tg: -82.15°C (matches literature)
OK
Predict Tg for complex aromatic polymer
BPA-type polymer Tg: 167.85°C (reasonable for high-Tg engineering plastic)
OK
Compare across polymer families
Model correctly captures structure-property relationships
Key Concepts
Glass Transition Temperature (Tg)
The temperature at which an amorphous polymer transitions from a hard, glassy state to a soft, rubbery state. Critical for determining a polymer's application temperature range.
SMILES Notation
Simplified Molecular Input Line Entry System - a text representation of molecular structure. Examples: CC (ethane), c1ccccc1 (benzene), C(=O)O (carboxylic acid).
PolyNC Model
A neural network model trained on polymer property data that predicts Tg, heat resistance, atomization energy, and bandgap from SMILES input.
Structure-Property Relationships
How molecular structure affects physical properties. Rigid backbones, bulky side groups, and aromatic rings generally increase Tg by restricting chain mobility.
BRAIN Platform
Paramus's ML service platform that hosts and manages model executables, providing a unified API for predictions across different models.
Tools Used
- OK brain_mount_service Started PolyNC_API.exe service
- OK brain_list_services Listed running services on port 5001
- OK brain_get_examples Retrieved input format and sample SMILES
- OK brain_predict Made Tg predictions for multiple polymers
- OK brain_system_status Monitored resource usage during predictions
Input Format
{
"input_type": "text",
"data": {
"text": "CC", // SMILES string
"property_type": "Tg" // Tg, heat_resistance, atomization_energy, bandgap
}
}