Skip to content

Commit

Permalink
Prepare for hex release
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jodlos committed May 28, 2024
1 parent 58e940a commit da2bf09
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/ex_vision/classification/mobilenet_v3_small.ex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule ExVision.Classification.MobileNetV3Small do
"""
use ExVision.Model.Definition.Ortex,
model: "mobilenetv3small-classifier.onnx",
categories: "assets/categories/imagenet_v2_categories.json"
categories: "priv/categories/imagenet_v2_categories.json"

require Bunch.Typespec
alias ExVision.Utils
Expand Down
2 changes: 1 addition & 1 deletion lib/ex_vision/detection/fasterrcnn_resnet50_fpn.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule ExVision.Detection.FasterRCNN_ResNet50_FPN do
"""
use ExVision.Model.Definition.Ortex,
model: "fasterrcnn_resnet50_fpn_detector.onnx",
categories: "assets/categories/coco_categories.json"
categories: "priv/categories/coco_categories.json"

use ExVision.Detection.GenericDetector

Expand Down
2 changes: 1 addition & 1 deletion lib/ex_vision/detection/ssdlite320_mobilenetv3.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule ExVision.Detection.Ssdlite320_MobileNetv3 do
"""
use ExVision.Model.Definition.Ortex,
model: "ssdlite320_mobilenetv3_detector.onnx",
categories: "assets/categories/coco_categories.json"
categories: "priv/categories/coco_categories.json"

use ExVision.Detection.GenericDetector

Expand Down
2 changes: 1 addition & 1 deletion lib/ex_vision/segmentation/deep_lab_v3_mobilenet_v3.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule ExVision.Segmentation.DeepLabV3_MobileNetV3 do
"""
use ExVision.Model.Definition.Ortex,
model: "deeplab_v3_mobilenetv3_segmentation.onnx",
categories: "assets/categories/coco_with_voc_labels_categories.json"
categories: "priv/categories/coco_with_voc_labels_categories.json"

@type output_t() :: %{category_t() => Nx.Tensor.t()}

Expand Down
6 changes: 2 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
defmodule ExVision.Mixfile do
use Mix.Project

# TODO: make sure that the links here are correct

@version "0.1.0"
@github_url "https://github.com/software-mansion-labs/ex_vision"
@version "0.1.0-rc1"
@github_url "https://github.com/membraneframework-labs/ex_vision/"

def project do
[
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit da2bf09

Please sign in to comment.