Publish to my blog (weekly)

Modelling Data in Neo4j: Labels vs. Indexed Properties A flagged indexed property   A dedicated label Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Chapter 2. Tutorial - Neo4j-OGM - An Object Graph Mapping Library for Neo4j v3.1 Our college will contain departments , each of which offer various subjects taught by a teacher .  Students enroll for courses or classes that teach a subject . Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Data Modeling Concepts and Techniques | Neo4j A label is a named graph construct that is used to group nodes into sets. All nodes labeled with the same label belongs to the same set. Many database queries can work with these sets instead of the whole graph, making queries easier to write and more efficient. A node may be labeled with any number of labels, including none, making labels an optional addition to the graph. Since a relationship always has a start and end node, you cannot delete a node without also deleting its associated relationships. relationships nouns nodes and labels ...

Publish to my blog (weekly)

What is Inheritance in Ruby? - RubyGuides This says that your subclasses must be able to be used in place of your base class. Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

nthought :: 자기강화와 GAN: 부족한 정답세트를 극복하는 방법 Semi-supervised 중에 하나인 active learning (다른 의미로 사용되는 경우도 있음)도 일종의 앙상블 방법인데, 두개의 다른 learner가 서로 다른 결과를 예측하면 어느 예측이 맞는지 사람에게 확인받아서 모호한 케이스에 대해서 정답세트를 추가하는 방식이다. [IT열쇳말] GAN(생성적 적대 신경망) GAN은 주로 이미지 생성에 활용된다. 실제 이미지를 학습해 거짓 이미지를 만들어낸다. Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

시계열 데이터 | Microsoft Docs 센서 데이터 시계열 데이터는 시간별로 구성된 값 집합 응용 프로그램 원격 분석 데이터 클릭 스트림 데이터 주가 기록 추세 실시간 경고 예측 모델링 시간이 데이터를 보거나 분석하기 위한 가장 의미 있는 축 데이터베이스에 대한 업데이트보다는 삽입으로 처리 시계열 데이터는 분산형 또는 꺾은선형 차트로 보면 가장 잘 표시 ...

Publish to my blog (weekly)

Structs and Interfaces — An Introduction to Programming in Go | Go Resources (c *Circle) “receiver” Person Person anonymous fields Person a.Person.Talk() a.Talk() The is-a relationship In our case both Rectangle and Circle have area methods which return float64 s so both types implement the Shape interface. ...