Skip to content

Commit 120e394

Browse files
committed
Merge branch 'main' into main-public
2 parents 9327a9f + ef4944a commit 120e394

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

workflows/disease_prediction/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# SPDX-License-Identifier: Apache-2.0
1717
#
1818

19-
ARG IMAGE_NAME=amr-registry.caas.intel.com/aiops/transfer-learning
20-
ARG IMAGE_TAG=prod
19+
ARG IMAGE_NAME=intel/ai-workflows
20+
ARG IMAGE_TAG=transfer-learning-0.4.0
2121
FROM ${IMAGE_NAME}:${IMAGE_TAG}
2222

2323
COPY . /workspace
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
intel-tensorflow==2.11.0
2-
pyyaml
2+
neural-compressor==2.0
3+
numpy==1.22.0
34
pillow
5+
pyyaml
46
tensorflow-hub==0.12.0
5-
numpy==1.22.0
6-
neural-compressor==2.0

workflows/vision_anomaly_detection/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# SPDX-License-Identifier: Apache-2.0
1717
#
1818

19-
ARG IMAGE_NAME=amr-registry.caas.intel.com/aiops/transfer-learning
20-
ARG IMAGE_TAG=prod
19+
ARG IMAGE_NAME=intel/ai-workflows
20+
ARG IMAGE_TAG=transfer-learning-0.4.0
2121
FROM ${IMAGE_NAME}:${IMAGE_TAG}
2222

2323
COPY . /workspace/

workflows/vision_anomaly_detection/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Deep-learning based visual anomaly detection workload. The inputs are images of
55
3) Convert PCA components to the original feature space using PCA kernel learned in step 2.
66
4) Compute the information loss between original image and rgenerated image through PCA. If the loss is below a thresold, the input image is a 'good' image otherwise an anomaly.
77

8-
This workflow demonstrates Anomaly Detection workflows/pipelines using tlt toolkit to be run along with Intel optimized software represented using toolkits, domainkits, packages, frameworks and other libraries for effective use of Intel hardware leveraging Intel's AI instructions for fast processing and increased performance.The workflows can be easily used by applications or reference kits showcasing usage.
8+
This workflow demonstrates Anomaly Detection workflows/pipelines using Intel® Transfer Learning Tool to be run along with Intel optimized software represented using toolkits, domainkits, packages, frameworks and other libraries for effective use of Intel hardware leveraging Intel's AI instructions for fast processing and increased performance.The workflows can be easily used by applications or reference kits showcasing usage.
99

1010
The workflow supports:
1111
- Fine-tuning and inference on custom dataset
@@ -43,7 +43,7 @@ docker build \
4343
--build-arg https_proxy=${https_proxy} \
4444
../../ \
4545
-f ./Dockerfile \
46-
-t intel:tlt-anomaly
46+
-t intel/ai-workflows:beta-tlt-anomaly-detection
4747
```
4848

4949
## Run Container
@@ -56,6 +56,6 @@ docker run --rm \
5656
-v /path/to/simsiam/checkpoint_0099.pth.tar:/workspace/workflows/vision_anomaly_detection/simsiam/checkpoint_0099.pth.tar \
5757
-v $PWD/output:/workspace/workflows/vision_anomaly_detection/output \
5858
--shm-size=8GB \
59-
intel:tlt-anomaly \
59+
intel/ai-workflows:beta-tlt-anomaly-detection \
6060
python ./src/vision_anomaly_wrapper.py --config_file ./config/config.yaml
6161
```
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
numpy
2-
Pillow
3-
prettytable
4-
scikit-learn-intelex
5-
intel_extension_for_pytorch
6-
torch --index-url https://download.pytorch.org/whl/cpu
7-
torchvision --index-url https://download.pytorch.org/whl/cpu
8-
tqdm
9-
pyyaml
1+
Pillow
102
dill
3+
intel-extension-for-pytorch==1.13.0
4+
numpy
5+
prettytable
6+
pyyaml
7+
scikit-learn-intelex
8+
torch==1.13.1+cpu --index-url https://download.pytorch.org/whl/cpu
9+
torchvision==0.14.1+cpu --index-url https://download.pytorch.org/whl/cpu
10+
tqdm

0 commit comments

Comments
 (0)