More information can be found at - https://www.barracuda.com/products/loadbalancer
Questions tagged [barracuda]
18 questions
4
votes
1 answer
Can't find Barracuda package in Unity Registry
Following the instructions here in the "Unity Package Manager" section, I'm unable to find the Barracuda package in the Unity Registry. Could someone shed some light on how Barracuda package is meant to be installed? Thanks!
I do have Preview…

A__
- 1,616
- 2
- 19
- 33
3
votes
0 answers
TensorFlow Lite VS Barracuda Object Detection In Unity's Augmented Reality
https://github.com/asus4/tf-lite-unity-sample
I want to use this as a template to better understand this whole process as I am quite new to this area. Is there some kind of step-by-step guide on how to use TensorFlow Lite models in Unity for object…

Kanyade
- 31
- 3
1
vote
0 answers
Using Yolo in Unity's Virtual Environment or Using any OR model in Unity
I cannot find any material or resource related to connecting Yolo Models to Unity, I know that unity has Barracuda package which allows the using of Tiny yolov2, does anyone know how can I use it, or whether if I can use yolov4/v5 within unity.
My…

Seif Borhan
- 11
- 1
1
vote
0 answers
Can't use trained model on older version of ML-agents from Unity
I'm training with my old Unity project but I've encountered several problems:
I'm able to do the training and generate .nn file, but whenever I put the file into the brain, it shows error message that says argumentexception off-axis dimensions must…

How Lemon
- 11
- 2
1
vote
1 answer
Unity Object Detection: Barracuda, MobileNET and Webcam
I am trying to run the following ONNX model in Unity, using Barracuda and the following pre-trained model:
https://github.com/onnx/models/tree/master/vision/classification/mobilenet
with my webcam as the camera, and using the following script to…

AKRA
- 300
- 2
- 12
1
vote
1 answer
Unexpected model output running Onnx model in Unity using Barracuda
Context
I am trying to use a pre-trained model in ONNX format to do inference on image data in Unity. The model is linked to the executing component in Unity as an asset called modelAsset. I am using Barracuda version 1.0.0 for this and executing…

Rens van der Veldt
- 39
- 10
1
vote
0 answers
Asp.Net SignalR not working when Hosted in IIS behind a Load Balancer (Barracuda)
In an ASP.NET Web Form application, we are using Microsoft.AspNet.SignalR to update the progress of some long-running Task, its all working fine with local IIS server but it's not working when hosted in IIS behind load balancer (Barracuda)
Here is…

Nithya
- 582
- 8
- 19
0
votes
0 answers
Barracuda E-Mail Gateway API returns - XML Invalid Tag Sequence
I'm using Postman to add a user to the blocklist over the built in API of the barracuda e-mail gateway but the return value is a faultcode "Error Code" 0 and the faultString is
at…

Kektuto
- 142
- 12
0
votes
0 answers
converting YOLO7 model from pytorch python to onnx unity
I am trying to use this yolo7 model inside unity with Barracuda, to detect objects (the client at work requested this model specifically).
When running the examples under python, for each frame or image, it exports a line (when passing --save-txt…

Serilena
- 66
- 8
0
votes
0 answers
Keras to ONNX model export for Barracuda in Unity3D
this is my neural network model:
The input is an example of 10000 features. Each feature is a number (0 or 1).
The output is a number between 0 and 1.
from tensorflow.keras.datasets import imdb
(train_data, train_labels), (test_data, test_labels) =…

ilBarra
- 796
- 1
- 8
- 25
0
votes
0 answers
MariaDB - Switching Antelope to Barracuda - there are any risks with existent databases?
While trying to install latest moodle version, I've got blocking message regarding the need to use Barracuda Format for InnoDB.
I've already the ITOP (https://www.combodo.com/itop-193) application installed, then I would like to know if there is any…

fman
- 175
- 2
- 4
0
votes
1 answer
Error when configuring database settings when setting up moodle 3.2.8+
I was installing moodle on an ubuntu server. I tried following the steps given in their documentation https://docs.moodle.org/310/en/Step-by-step_Installation_Guide_for_Ubuntu
but, after I set the innodb file format to Barracuda in the mysqld.cnf…

Tharusha Lekamge
- 1
- 1
0
votes
1 answer
Is there a way to have one DB set to Antelope and another DB set to Barracuda on the same shared hosting server?
Now my MySQL (5.6) uses Antelope as the file format. for another system I need the DB to be set to Barracuda file format.
Is there a way to have one DB set to Antelope and another DB set to Barracuda on the same shared hosting server?
The same…

Ram
- 11
- 6
0
votes
0 answers
c# loading ML.NET model with modelLoader: How not to instantiate modelLoader and Worker repeatedly during runtime?
I'm importing and doing inference with an object recognition model in my c# script.
It's being done multiple times in the script like this:
var model = ModelLoader.Load(modelSource);
var worker =…

SumakuTension
- 542
- 1
- 9
- 26
0
votes
2 answers
The type or namespace 'NModel' could not be found
I'm trying to embed a model that I trained in my c# unity script.
By doing something like this
using UnityEngine;
using UnityEngine.UI;
using MLAgents;
public class loadImage : MonoBehaviour {
public NNModel modelSource;
var model =…

SumakuTension
- 542
- 1
- 9
- 26