Conversation
If the user drops a file it will take parent directory
There was a problem hiding this comment.
license-eye has checked 525 files.
| Valid | Invalid | Ignored | Fixed |
|---|---|---|---|
| 251 | 1 | 273 | 0 |
Click to see the invalid file list
- lib/importers/model_directory_importer.dart
Use this command to fix any missing license headers
```bash
docker run -it --rm -v $(pwd):/github/workspace apache/skywalking-eyes header fix
</details>
| @@ -0,0 +1,60 @@ | |||
| import 'dart:convert'; | |||
There was a problem hiding this comment.
Suggested change
| import 'dart:convert'; | |
| // Copyright (c) 2024 Intel Corporation | |
| // | |
| // SPDX-License-Identifier: Apache-2.0 | |
| import 'dart:convert'; |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #117 +/- ##
==========================================
- Coverage 32.00% 31.33% -0.67%
==========================================
Files 140 143 +3
Lines 5706 5882 +176
==========================================
+ Hits 1826 1843 +17
- Misses 3880 4039 +159
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds ability to import models that were exported or downloaded (or converted yourself).
After you select select a folder, if it contains a project.json, meaning it was probably exported from openvino test drive, it will just import it.
If it does not contain a valid project.json. it will show a short form to fill in name and task.
Implementation details:
Models are stored by folder path in the config.json. When you remove a model that is stored that way it will simply remove the reference and leave the files be.