2025/03/08 5

Listening (Healthcare Multi-Millionaires Best Advice His Father Gave Before Passing Away)

final thing my old man died when I was 26 years old 마지막으로, 내 아버지는 내가 26살 때 돌아가셨다.he said a couple things to me which I'll share them all 그분이 나에게 몇 가지 말씀해 주셨는데, 그것들을 모두 공유하려 한다.the number one thing was he said 첫 번째로, 아버지가 이렇게 말씀하셨다.I don't care if you sell paper clips or locomotives for a living 나는 네가 종이클립을 팔든, 기관차를 팔든 상관없다.people buy from people they like 사람들은 자신이 좋아하는 사람에게서 물건을 산다.this world ha..

youtube english 2025.03.08

Naïve Bayes (나이브 배이스) Classifier - 실전 2

import numpy as npimport pandas as pddata_path = 'https://github.com/vandit15/Movielens-Data/blob/master/ml-1m/ratings.dat?raw=true'df = pd.read_csv(data_path, header=None, sep='::', engine='python')df.columns = ['user_id', 'movie_id', 'rating', 'timestamp'] n_users = df['user_id'].nunique()n_movies = df['movie_id'].nunique()def load_user_rating_data(df, n_users, n_movies):    data = np.zeros([n..

http JSON

struct 을 JSON string 으로 변환type Book struct {     Title string `json:"title"`     Author string `json:"author"` } // an instance of our Book struct book := Book{Title: "Learning Concurreny in Python", Author: "Elliot Forbes"}byteArray, err := json.Marshal(book) if err != nil {     fmt.Println(err) } fmt.Println(string(byteArray)) struct 과 struct 속의 struct 을 JSON string 으로 변환type Book struct {    ..

backend (Go) 개발 2025.03.08