from google.colab import auth auth.authenticate_user() from google.colab import drive drive.mount('/content/gdrive') root_dir = "/content/gdrive/My Drive/" import pandas as pd df = pd.read_csv(root_dir+'example_air_passengers.csv') 1 2 3 # Colab 서버 스펙 확인 from tensorflow.python.client import device_lib device_lib.list_local_devices() cs 1 2 import platform platform.platform() cs 'Linux-4.19.104+-..
1 2 3 4 import tensorflow.compat.v1 as tf tf.disable_v2_behavior() from tensorflow import keras import matplotlib.pyplot as plt cs 1 (X_train, y_train),(X_test, y_test) = keras.datasets.cifar10.load_data() cs 1 2 class_names = ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck'] Colored by Color Scripter cs 1 2 3 4 X_train = X_train / 255.0 X_test = X_test /..
1 2 3 4 5 6 7 8 9 10 # CPU 처리 import tensorflow.compat.v1 as tf tf.disable_v2_behavior() from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Dense, Conv2D, Flatten, Dropout, MaxPooling2D from tensorflow.keras.preprocessing.image import ImageDataGenerator import os import matplotlib.pyplot as plt from tensorflow.python.keras import datasets from tensorflow import ke..
아래와 같은 에러가 발생하는 것은 마리아디비(mysql) 의 캐릭터세트가 UTF-8 이 아니기 때문입니다. 결국 Database 의 캐릭터 셋이 UTF-8 이 아니라서 나는 에러메시지 입니다. 일단 cmd 에서 캐릭터 셋을 변경할 수 있습니다. 다음과 같이 루트 계정으로 들어갑니다. show variables like 'c%'; [다른 방식] 위의 방식대로 해도 처리되지 않으며, 하드웨어 자체 설정파일을 수정해야 합니다. 아래 경로대로 진입합니다. my.ini 파일을 메모장으로 엽니다. 열면 아래와 같은 파일 내용이 기본으로 보입니다. 위 내용을 아래 내용을 덧 씌웁니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [mysqld] datadir=C:/Program F..
user.js 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 import axios from 'axios' import router from '@/router' const state = { context : 'http://localhost:8080/', ..
@NotNull 에서 그냥 import 를 하면 아래와 같은 라이브러리가 기본으로 import 됩니다. 그러면 당장은 에러가 사라져도 계속 다른 에러를 파생시킵니다. 이것은 import 된 것이 올바른 라이브러리가 아니기 때문이며 다음과 같이 합니다. 하이라이트 된 compile group: 'org.hibernate.validator', name: 'hibernate-validator', version: '6.1.5.Final' 를 넣지 않으면, @NotNull 에서 오류가 발생합니다. 아래와 같이 넣고 그래들을 다시 빌드하면 import 가 가능해 집니다. 이렇게 사용해야 에러가 발생하지 않습니다.
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 import lombok.*; import javax.persistence.*; import javax.validation.constraints.NotNull; @Data @NoArgsConstructor(access = AccessLevel.PROTECTED) @Entity(name="schedule") public class Schedule { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long scheNo; @NotNull @Column(length = 10) private Str..
(2020-05-27) Company.java 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 32 33 34 35 36 package texas.sbv.kcar.company; import lombok.*; import texas.sbv.kcar.employee.Employee; import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Component; import javax.persistence.*; import javax.validation.constraints.NotNull; import ja..
- Total
- Today
- Yesterday
- React
- database
- ERD
- mariadb
- docker
- Python
- springMVC
- COLAB
- Algorithm
- Django
- terms
- Eclipse
- nodejs
- FLASK
- vscode
- SpringBoot
- JPA
- KAFKA
- tensorflow
- Git
- JUnit
- AWS
- Oracle
- maven
- Java
- jQuery
- intellij
- Mongo
- Mlearn
- SQLAlchemy
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |