![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
python>=3.8, (windows: need c++ env, https://airesources.oss-cn-hangzhou.aliyuncs.com/jkl/%E8%BE%B9%E7%BC%98%E5%8D%A1/VisualStudioSetup.exe)
pip install pybind11 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install -e faster_coco_eval/ -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
For example:
1) multi-object(studio json) vs. multi-object(interface return label) detection:
{
"label":[{"objectLabel":["烟"], "attrLabel":[], "id":0, "prediction":"smoke"},{"objectLabel":["火"], "attrLabel":[], "id":1, "prediction":"fire"}],
"aiport": "http://192.1.2.238:8893/vql/v1/serving/process",
"rawdata": "data/yh.json",
"draw": false,
"download": false,
"raw_prediction_path": "prediction_dirs/raw_predictions_8893.json",
"save_gt_coco": "gt_dirs/coco_groundtruth.json",
"save_pred_path": "prediction_dirs/prediction_results.json",
"faster_coco_api": true
}
2) multi-object(studio json) vs. single-object(interface return label) detection:
{
"label":[{"objectLabel":["人"], "attrLabel":["躺", "趴"], "id":0, "prediction":"睡岗"}],
"aiport": "http://192.1.2.238:8324/vql/v1/serving/process",
"rawdata": "data/sleep_test_json_0621.json",
"draw": false,
"download": false,
"raw_prediction_path": "prediction_dirs/raw_predictions_8324.json",
"save_gt_coco": "gt_dirs/coco_groundtruth.json",
"save_pred_path": "prediction_dirs/prediction_results.json",
"faster_coco_api": true
}
3) single-object(studio json) vs. single-object(interface return label) detection:
{
"label":[{"objectLabel":["person"], "attrLabel":[], "id":0, "prediction":"person"}],
"aiport": "http://192.1.2.238:8312/vql/v1/serving/process",
"rawdata": "data/xingren.json",
"draw": false,
"download": false,
"raw_prediction_path": "prediction_dirs/raw_predictions_8312.json",
"save_gt_coco": "gt_dirs/coco_groundtruth.json",
"save_pred_path": "prediction_dirs/prediction_results.json",
"faster_coco_api": false
}
"label":
"objectLabel": enter the obj tags of studio json
"attrLabel": enter the attr tags of studio json (same the obj tags)
"id": default is 0.
"prediction": label of original outputs of interface
"aiport": model interface
"rawdata": studio json format data
"draw": "true" means draw GT and Pred bbox
"download": download images, if draw=True, need download=True
"raw_prediction_path": save original outputs of interface, file name "raw_predictions_{model interface id}.json"
"save_gt_coco": save studio json format to coco json format
"save_pred_path": save original outputs of interface to coco json format
"faster_coco_api": "true" means use faster coco evaluation
python od_evaluator.py --mode studio_json --config {your config files}
prepare your data (coco json format) prepare groundtruth and prediction json.
then run
python od_evaluator.py --mode coco_json --gt_json {your gt coco format json} --pred_json {your pred coco format json}
or
python od_evaluator.py --mode faster_coco_json --gt_json {your gt coco format json} --pred_json {your pred coco format json}
FAQs
lvt evaluation of image object detrction and image classification.
We found that lvt-eval demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.