mirror of
https://github.com/twitter/the-algorithm.git
synced 2025-07-09 15:05:39 +02:00

Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
7 lines
128 B
Scala
7 lines
128 B
Scala
package com.twitter.ann.dataflow.offline
|
|
|
|
trait BaseEmbeddingData {
|
|
val entityId: Option[Long]
|
|
val embedding: Seq[Double]
|
|
}
|