Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FiftyOne Evaluation Framework Updates #3

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
5347f61
Adding FiftyOne to Evaluation Framework.
hhuangMITRE Oct 26, 2021
b2b2f06
Parameter bugfix (caught by Megane).
hhuangMITRE Oct 27, 2021
4bf70f7
Fix: JSON results stored in respective job folders.
hhuangMITRE Oct 27, 2021
2600b8f
Update README.md
hhuangMITRE Oct 27, 2021
0abf659
Fix bounding box conversion in FiftyOne. Add docker environment suppo…
hhuangMITRE Nov 5, 2021
340a5ef
Merge branch 'feature/fiftyone-integration' of https://github.com/ope…
hhuangMITRE Nov 5, 2021
69babc3
Fix for handling Docker env params
hhuangMITRE Nov 10, 2021
b282e9a
Fix for handling Docker env params
hhuangMITRE Nov 10, 2021
844efae
Adding dummy runs for unique job parameters.
hhuangMITRE Nov 15, 2021
bc3283c
Adding FiftyOne dataset processing, progress bar, and subcommand opti…
hhuangMITRE Nov 23, 2021
3ce087c
Adding sudo option + bugfix for basic runs.
hhuangMITRE Nov 23, 2021
66a724b
Added dummy jobs option.
hhuangMITRE Nov 29, 2021
fb64ee4
Update Evaluation Framework to run in Docker. Adding Docker image bui…
hhuangMITRE Dec 23, 2021
60e8eaa
Update Docker Evaluation Framework (enable interactive session) and d…
hhuangMITRE Jan 10, 2022
a456c1d
Update build.sh
hhuangMITRE Jan 31, 2022
735ae90
Update mount paths for media and label files.
hhuangMITRE Feb 14, 2022
26b16d8
Merge branch 'feature/fiftyone-integration' of https://github.com/ope…
hhuangMITRE Feb 14, 2022
87cf9f5
Updating MPF Evaluation Framework to process audio, splitting job run…
hhuangMITRE Apr 7, 2022
97f6fe5
Adjusting text proc feature for Python3.6 compatibility.
hhuangMITRE Apr 11, 2022
ca28bc2
Updating job runner.
hhuangMITRE Apr 19, 2022
8ea67aa
Resolve bytes issue for verbose outputs.
hhuangMITRE Jun 1, 2022
0ea6f3f
Moving past eval scripts (to be refactored).
hhuangMITRE Jun 9, 2022
857d6f8
Merge branch 'feature/fiftyone-integration' of https://github.com/ope…
hhuangMITRE Jun 9, 2022
5b5de95
Adding support for ImageNet class predictions.
hhuangMITRE Jun 9, 2022
30110c5
Adding support for ImageNet class predictions.
hhuangMITRE Jun 9, 2022
4de21c5
Parameter bugfix.
hhuangMITRE Jun 9, 2022
a9a71c6
Tooltip update + ipynb sample script.
hhuangMITRE Jun 15, 2022
07f5d97
Adding seed parameter. Tooltip update.
hhuangMITRE Jun 15, 2022
22622cf
Adding new processing options for tracking media, improved output met…
hhuangMITRE Apr 15, 2023
d73177d
Merge branch 'feature/fiftyone-integration' of https://github.com/ope…
hhuangMITRE Apr 15, 2023
2ad0f3b
Include default metrics file output
hhuangMITRE Dec 8, 2023
82bb36b
Add option to disable container shutdown.
hhuangMITRE Dec 8, 2023
08fe530
Update to no longer stop when no MPF JSON is generated.
hhuangMITRE Dec 15, 2023
28482d4
Minor bugfix.
hhuangMITRE Jan 24, 2024
54b020c
Adding support for Docker param settings. Minor bugfix for restarting…
hhuangMITRE Jan 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# syntax=docker/dockerfile:1.2

#############################################################################
# NOTICE #
# #
# This software (or technical data) was produced for the U.S. Government #
# under contract, and is subject to the Rights in Data-General Clause #
# 52.227-14, Alt. IV (DEC 2007). #
# #
# Copyright 2021 The MITRE Corporation. All Rights Reserved. #
#############################################################################

#############################################################################
# Copyright 2021 The MITRE Corporation #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
#############################################################################

ARG BUILD_TAG=latest
FROM python:3.9

WORKDIR /usr/src/app

COPY setup.py /usr/src/app/setup.py
COPY evaluation_framework/ /usr/src/app/evaluation_framework

RUN pip install .


Loading