mkshing commited on
Commit
f093721
1 Parent(s): 062b689

update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -1,7 +1,9 @@
1
  ---
2
  language: ja
3
  thumbnail: https://github.com/rinnakk/japanese-pretrained-models/blob/master/rinna.png
 
4
  tags:
 
5
  - ja
6
  - japanese
7
  - clip
@@ -56,3 +58,13 @@ with torch.no_grad():
56
  print("Label probs:", text_probs) # prints: [[1.0, 0.0, 0.0]]
57
  ```
58
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  language: ja
3
  thumbnail: https://github.com/rinnakk/japanese-pretrained-models/blob/master/rinna.png
4
+ license: apache-2.0
5
  tags:
6
+ - feature-extraction
7
  - ja
8
  - japanese
9
  - clip
 
58
  print("Label probs:", text_probs) # prints: [[1.0, 0.0, 0.0]]
59
  ```
60
 
61
+ # Model architecture
62
+ The model was trained a ViT-B/16 Transformer architecture as an image encoder and uses a 12-layer RoBERTa as a text encoder. The text encoder was trained upon the pre-trained Japanese RoBERTa model [rinna/japanese-roberta-base](https://huggingface.co/rinna/japanese-roberta-base) with the same sentencepiece tokenizer.
63
+
64
+ # Training
65
+ The model was trained on [CC12M](https://github.com/google-research-datasets/conceptual-12m) translated the captions to Japanese.
66
+
67
+
68
+ # License
69
+
70
+ [Apache-2.0 license](https://www.apache.org/licenses/LICENSE-2.0)