250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- 幼稚园杀手(유치원킬러)
- Python
- r
- 과학백과사전
- Topics
- Websocket
- spring MVC(모델2)방식
- tomoto
- 네이버뉴스
- 파이썬
- 지마켓
- 토픽추출
- RESFUL
- 이력서
- jsp 파일 설정
- 크롤링
- 게시판 만들기
- pytorch
- word2vec
- lda
- 코사인 유사도
- (깃)git bash
- db
- oracle
- 방식으로 텍스트
- mysql
- Gmarket
- 자바
- test
Archives
- Today
- Total
목록질의응답관련 (1)
무회blog
python: pytorch, 질의응답관련 , bert 사용
In [4]: ## BertForMaskedLM from transformers import BertTokenizer, BertForMaskedLM import torch tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') model = BertForMaskedLM.from_pretrained('bert-base-uncased') input_ids = tokenizer("Hello, my dog is cute", return_tensors="pt")["input_ids"] # print(input_ids) outputs = model(input_ids, labels=input_ids) loss, prediction_scores = outputs..
Python/TA
2020. 8. 13. 18:29