forked from lightly-ai/lightly-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (21 loc) · 640 Bytes
/
Makefile
File metadata and controls
26 lines (21 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.PHONY: test
test:
$(MAKE) -C lightly_studio test-ci
$(MAKE) -C lightly_studio_view test
.PHONY: lint
lint:
$(MAKE) -C lightly_studio lint
$(MAKE) -C lightly_studio_view lint
.PHONY: format
format:
$(MAKE) -C lightly_studio format
$(MAKE) -C lightly_studio_view format
.PHONY: build
build:
$(MAKE) -C lightly_studio build
.PHONY: download-example-dataset
download-example-dataset:
mkdir -p lightly_studio/datasets/coco-128
git clone --depth=1 https://github.com/lightly-ai/dataset_examples_studio.git tmp_dataset_repo
cp -r tmp_dataset_repo/coco_subset_128_images/* lightly_studio/datasets/coco-128/
rm -rf tmp_dataset_repo