Publish to my blog (weekly)

  • tags: scala object function parameter synthetic sugar

      • def action = Action { request : Request[AnyContent] => ...}*** 위의 문법을 이해하기 위한 예제scala> object Action { | def apply(request: (String) => Unit) { | request("I am an Action") | } | }defined object Actionscala> def action = Action {request: String => println(request + " then is called by outside")}action: Unitscala> actionI am an Action then is called by outside
    • Kotlin enables us to set a context for lambda expressions (context and receiver mean same thing here). Context is just an object. The context type is defined together with the lambda expression type. Such a lambda acquires the properties of a non-static method in the context class, but it only has access to the public methods of this class.
    • It is a type of supervised learning algorithm that is mostly used for classification problems
    • This is a classification method
    • This is a classification technique based on Bayes’ theorem with an assumption of independence between predictors
    • This can be used for both classification and regression problems
    • This is a type of unsupervised algorithm that solves clustering problems.
    • 인공지능 기술의 두뇌역할을 하는 '온톨로지'는 방대한 학습데이터(빅데이터)가 필요
    • 온톨로지는 존재의 개념에 대한 뜻과 각 개념 사이의 관계를 설명한 명세서다.

Posted from Diigo. The rest of my favorite links are here.

댓글

이 블로그의 인기 게시물

Publish to my blog (weekly)

Publish to my blog (weekly)