일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Elasticsearch
- aggs
- zip 파일 암호화
- API
- Kafka
- sort
- analyzer test
- zip 암호화
- token filter test
- 차트
- matplotlib
- License
- docker
- springboot
- flask
- Python
- high level client
- Mac
- query
- ELASTIC
- Java
- license delete
- licence delete curl
- 900gle
- TensorFlow
- Test
- aggregation
- plugin
- 파이썬
- MySQL
- Today
- Total
목록분류 전체보기 (475)
개발잡부
개발환경 Mac OS java 1.8 maven (plugin) elastic stack 7.12.1 (es, kibana)- docker compose 애널라이저 구조가 이렇단 말이지.. 애널라이저를 만들고 토크나이저에 edge_ngram 넣고 커스텀 플러그인 kr-danalyzer (korean doo analyzer) aka. KDA 를 설치해서 토큰 필터 적용, 필드에 맵핑시켜본다. Analyzer repository https://github.com/900gle/kr-danalyzer GitHub - 900gle/kr-danalyzer: doo analyzer for korean doo analyzer for korean. Contribute to 900gle/kr-danalyzer develo..
GET doo/_search { "query": { "bool": { "should": [ { "fuzzy": { "name.keyword": { "value": "나이키 조단", "fuzziness": 1 } } }, { "prefix": { "name.keyword": { "value": "나이키 조단" } } } ] } } } GET doo/_search { "query": { "match_phrase_prefix": { "name": "나이키 집업" } } }
https://github.com/900gle/image-vector.git GitHub - 900gle/image-vector Contribute to 900gle/image-vector development by creating an account on GitHub. github.com 가상환경 #가상환경 목록확인 conda info --envs #가상환경 생성 conda create --name "image" python="3.7" #가상환경 실행 conda activate image #모듈 설치 pip install -r require.txt #실행 python src/ImageVector.py
선으로 된것들 총집합 관련글 15번 까지 반영 https://wikidocs.net/92094 15. Matplotlib 수평선/수직선 표시하기 ![](https://wikidocs.net/images/page/92094/set_lines_00.png) 그래프의 특정 위치에 수직선/수평선을 표시하기 위해서 ** ... wikidocs.net 코드 1 import matplotlib.pyplot as plt import numpy as np x = np.arange(0, 4, 0.5) plt.plot(x, x + 1, 'bo' ,label='x1') plt.plot(x, x**2 - 4, 'g--', label='x2') plt.plot(x, -2*x + 3, 'r:', label='x3') plt.xla..
축범위 지정하기 코드 1 import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4], [2, 3, 5, 10]) plt.xlabel('X-Axis') plt.ylabel('Y-Axis') plt.xlim([0, 5]) # X축의 범위: [xmin, xmax] plt.ylim([0, 20]) # Y축의 범위: [ymin, ymax] plt.show() # X축의 범위: [xmin, xmax] # Y축의 범위: [ymin, ymax] plt.xlim([0, 5]) plt.ylim([0, 15]) # X, Y축의 범위: [xmin, xmax, ymin, ymax] plt.axis([0, 5, 0, 20]) https://wikidocs.net/92083
코드 1 import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4]) plt.show() 결과 #실행 python src/Chart.py 기본 그래프 음.. 음.. 스타일지정 코드 2 import matplotlib.pyplot as plt #그리고 plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') plt.axis([0, 6, 0, 20]) #보여준다 plt.show() 포맷 문자열 ‘ro’는 빨간색 (‘red’)의 원형 (‘o’) ‘b-‘는 파란색 (‘blue’)의 실선 (‘-‘) 정리가 필요하군.. matplotlib.pyplot 모듈의 axis() 함수를 이용해서 축의 범위 [xmin, xmax, ymin, ymax]를 지정 여러 개..
require.txt 파일 matplotlib 생성완료 설치하기 pip install -r require.txt
GET shop/_search { "from": 0, "size": 10, "timeout": "200ms", "query": { "function_score": { "query": { "bool": { "must": [ { "multi_match": { "query": "루이 비통", "fields": [ "name^0.0", "category", "category1", "category2", "category3", "category4", "category5" ], "type": "best_fields", "operator": "or" } } ] } }, "functions": [ { "script_score": { "script": { "source": "1 + doc['weight'].value +..
universal-sentence-encoder/2 버전이 아주 무쓸모라.. https://tfhub.dev/google/universal-sentence-encoder/4 를 테스트 해보려고 했더니만 tensorflow 버전이 2에서 해야 한다네 버전확인 pip -V pip3 -V pip 20.3b1 from /Library/Python/2.7/site-packages/pip-20.3b1-py2.7.egg/pip (python 2.7) pip 20.2.4 from /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pip (python 3.7) 흠.. 아나콘다 설치하고 해야겠다 https://ldh-6019.tist..