vector_quantizer 0.0.3

Simple vector quantization utilities and functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: quality_check

RUST_LOG := RUST_LOG=info
PLOTS_DIR := plots
BENCHMARK_RESULTS := benchmark_results.png

quality_check:
	$(RUST_LOG) cargo run --release --bin quality_check
	cd $(PLOTS_DIR) && python3 main.py
	mv $(PLOTS_DIR)/$(BENCHMARK_RESULTS) ./$(BENCHMARK_RESULTS)

clean:
	rm -f $(BENCHMARK_RESULTS)
	rm -f benchmark_results.csv