embeddings visualization

This commit is contained in:
Dylan Knutson
2024-12-28 01:59:11 +00:00
parent 61b9728fd8
commit e21541af46
4 changed files with 1672 additions and 64 deletions

View File

@@ -4,17 +4,18 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.35", features = ["full"] }
tokio-postgres = "0.7"
clap = { version = "4.4", features = ["derive"] }
log = "0.4"
pretty_env_logger = "0.5"
libmf = "0.3"
anyhow = "1.0"
futures = "0.3"
clap = { version = "4.4", features = ["derive"] }
ctrlc = "3.4"
deadpool-postgres = "0.11"
tokio-util = "0.7"
dotenv = "0.15"
rand = { version = "0.8", features = ["std_rng"] }
libmf = "0.3"
log = "0.4"
ndarray = { version = "0.15", features = ["blas"] }
ndarray-linalg = { version = "0.16", features = ["openblas-system"] }
plotly = { version = "0.8", features = ["kaleido"] }
pretty_env_logger = "0.5"
rand = "0.8"
rand_distr = "0.4"
tokio = { version = "1.35", features = ["full"] }
tokio-postgres = "0.7"