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
- 자바
- 지마켓
- RESFUL
- 방식으로 텍스트
- 게시판 만들기
- word2vec
- 幼稚园杀手(유치원킬러)
- jsp 파일 설정
- Topics
- (깃)git bash
- 과학백과사전
- Websocket
- r
- java
- 토픽추출
- Python
- lda
- pytorch
- 이력서
- tomoto
- 크롤링
- oracle
- 코사인 유사도
- Gmarket
- db
- 네이버뉴스
- mysql
- spring MVC(모델2)방식
- 파이썬
- test
Archives
- Today
- Total
목록pipline 사용해보기 (1)
무회blog
python: pytorch,transformer , pipline , 提问解答사용해보기
In [6]: from __future__ import print_function import ipywidgets as widgets from transformers import pipeline print('success') success In [7]: nlp_sentence_classif = pipeline('sentiment-analysis') nlp_sentence_classif('Such a nice weather outside !') Out[7]: [{'label': 'POSITIVE', 'score': 0.9997655749320984}] In [12]: nlp_token_class = pipeline('ner') nlp_token_class('Hugging Face is a French co..
Python/TA
2020. 8. 13. 18:18