File size: 1,585 Bytes
cf1d169
 
 
675f90d
cf1d169
 
 
ce806ca
cf1d169
 
ce806ca
cf1d169
ce806ca
cf1d169
 
 
 
3c2cff9
cf1d169
 
 
 
 
ce806ca
cf1d169
 
ce806ca
cf1d169
ce806ca
cf1d169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3c2cff9
ce806ca
 
cf1d169
 
 
 
ce806ca
cf1d169
 
 
 
 
 
ce806ca
 
cf1d169
 
 
 
 
 
ce806ca
cf1d169
 
 
 
 
ce806ca
cf1d169
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
tags:
- torch_molecule
- molecular-property-prediction
library_name: torch_molecule
---

# MoamaMolecularEncoder Model

## Model Description
- **Model Type**: MoamaMolecularEncoder
- **Framework**: torch_molecule
- **Last Updated**: 2025-08-07

## Task Summary
| Task | Version | Last Updated | Parameters | Metrics |
|------|---------|--------------|------------|----------|
| default | 0.0.10 | 2025-08-07 | 3,832,927 |  |


## Usage

```python
from torch_molecule import MoamaMolecularEncoder

# Load model for specific task
model = MoamaMolecularEncoder()
model.load(
    "local_model_dir/MoamaMolecularEncoder.pt",
    repo="Do1Yun/TorchMoleculeEncoderRepo"
)

# For predictor: Make predictions
# predictions = model.predict(smiles_list)
# For generator: Make generations
# generations = model.generate(n_samples)
# For encoder: Make encodings
# encodings = model.encode(smiles_list)
```

## Tasks Details


### default Task
- **Current Version**: 0.0.10
- **Last Updated**: 2025-08-07
- **Parameters**: 3,832,927
- **Configuration**:
```python
{
  "mask_rate": 0.15,
  "lw_rec": 0.5,
  "encoder_type": "gin-virtual",
  "readout": "sum",
  "num_layer": 5,
  "hidden_size": 300,
  "drop_ratio": 0.5,
  "norm_layer": "batch_norm",
  "batch_size": 32,
  "epochs": 10,
  "learning_rate": 0.001,
  "weight_decay": 0.0,
  "grad_clip_value": null,
  "use_lr_scheduler": false,
  "scheduler_factor": 0.5,
  "scheduler_patience": 5,
  "fitting_epoch": 9,
  "device": {
    "_type": "unknown",
    "repr": "cuda:0"
  },
  "verbose": false,
  "model_name": "MoamaMolecularEncoder"
}
```