Notice
Recent Posts
Recent Comments
Link
160x600
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 데이터 수집
- Deep Learning
- pythone
- Database
- keras
- Oracle
- 딥러닝
- 데이터베이스
- 데이터 가공
- 데이터 분석
- 회귀모델
- sklearn
- 오라클
- 파싱 오류
- pandas
- python기초
- MariaDB
- 훈련
- 데이터전처리
- DB
- sql
- 정확도
- 데이터
- 머신러닝
- tensorflow
- python
- 해석
- HeidiSQL
- 시각화
- 예측
Archives
- Today
- Total
목록jango (1)
코딩헤딩
conda install -c conda-forge PyMySQL 앱 생성 django-admin startapp mysqlapp mysql app에서 - 함수명 index() - HttpResponse("index 페이지입니다.") 출력 - mysqlapp에 urls.py 생성 url패턴 : 127.0.0.1:8080/msql/ * view.py from django.shortcuts import render from django.http import HttpResponse # Create your views here. def index(request) : return HttpResponse("index 페이지입니다.") * urls.py from django.urls import path from ...
카테고리 없음
2024. 2. 6. 13:54