2023의 게시물 표시

Publish to my blog (weekly)

Python Types Intro - FastAPI user = User ( ** external_data ) 나이브 베이즈 분류기 (Naive Bayes Classifier) P(Y,X) = P(X,Y) 라는 사실에서 시작 발생한 사건(X)이 특정 확률분포(Y)에서 나왔을 확률 관측된 특징(X)이 특정 클래스(Y)에서 나왔을 확률 특정 확률분포 or 클래스(Y)에서 특정 사건 or 특징(X)이 발생할 확률 Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

유튜브에 베이즈 정리가 적용된다고? # Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Classification: Check Your Understanding (Accuracy, Precision, Recall)  |  Machine Learning  |  Google for Developers Accuracy 정확도 판단의 대상이 얼마나 고가치이냐에 따라 Accuracy가 제대로 작동할 것이다. 즉, 인간의 건강 에 영향을 미치는 질병 예측, 특정 고가치 자산의 파손 여부 등. Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

(1278) techsith - YouTube techsith (1263) Google Cloud Tech - YouTube Google Cloud Tech Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Auto-GPT vs Langchain - What's The Difference? - Be on the Right Side of Change As a language model integration framework Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Top 16 Dart Tips and Tricks Every Flutter Developer Should Know returned as an Iterable returns a Stream Control your Flutter app on the fly with Firebase Remote Config | kazlauskas.dev eventRepository eventRepositoryProvider Flutter Shopping App prototype: Lessons learned | kazlauskas.dev When implementing BLoCs for the prototype, I started adding tests BEFORE the actual map-event-t...

Publish to my blog (weekly)

Flutter Design Patterns: Observer | kazlauskas.dev you define a publish-subscribe mechanism to notify multiple objects about any events that happen to the object they're subscribed to - it is Observer. Observer , also known as Dependents or Publish-Subscribe , belongs to the category of behavioural design patterns. Publisher (Subject)   (Optional) Concrete Publishers Subscriber (Observer)   Concrete Subscribers Client   ...

Publish to my blog (weekly)

Flutter Design Patterns: Flyweight | kazlauskas.dev a creational design pattern that divides the construction of a complex object into several separate steps - Builder. Flutter Design Patterns: Builder | kazlauskas.dev Builder is a creational design pattern To understand it better, let's say we are building a house. To build a house (object), the construction steps (build logic) are pretty much the same - you need the foundation, floor, some walls, doors, windows, a roof, etc. Even though the construction process of the house is the same, each of these steps could be adjusted, hence the final result would look comple...