deskull commited on
Commit
39e7ecb
·
verified ·
1 Parent(s): b454b9e

Add model card

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - pytorch
5
+ - bert
6
+ - molecule-compound
7
+ pipeline_tag: fill-mask
8
+ ---
9
+
10
+ # molcrawl-compounds-bert-medium
11
+
12
+ ## Model Description
13
+
14
+ This model was trained using the RIKEN Foundation Model training pipeline.
15
+
16
+ - **Model Type**: bert
17
+ - **Data Type**: Molecule/Compound
18
+ - **Training Date**: 2026-04-22
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ from transformers import AutoModel, AutoTokenizer
24
+
25
+ # Load model and tokenizer
26
+ model = AutoModel.from_pretrained("kojima-lab/molcrawl-compounds-bert-medium")
27
+ tokenizer = AutoTokenizer.from_pretrained("kojima-lab/molcrawl-compounds-bert-medium")
28
+
29
+ # Example usage
30
+ inputs = tokenizer("your input sequence", return_tensors="pt")
31
+ outputs = model(**inputs)
32
+ ```
33
+
34
+ ## Training
35
+
36
+ This model was trained with the RIKEN Foundation Model pipeline.
37
+ For more details, please refer to the training configuration files included in this repository.
38
+
39
+ ## License
40
+
41
+ This model is released under the APACHE-2.0 license.
42
+
43
+ ## Citation
44
+
45
+ If you use this model, please cite:
46
+
47
+ ```bibtex
48
+ @misc{molcrawl_compounds_bert_medium,
49
+ title={molcrawl-compounds-bert-medium},
50
+ author={{RIKEN}},
51
+ year={2026},
52
+ publisher={{Hugging Face}},
53
+ url={{https://huggingface.co/kojima-lab/molcrawl-compounds-bert-medium}}
54
+ }
55
+ ```