Added test-code and moved scripts to correct folders

This commit is contained in:
CoudronJerome
2023-03-27 10:57:30 +02:00
parent 78f4d961f7
commit be7457236c
12 changed files with 94 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
using System;
using UnityEngine;
using Unity.Barracuda;
/// <summary>
/// Small class to link a model to a courseIndex irrespective of its position in a list
/// </summary>
[Serializable]
public class ModelTuple
{
/// <summary>
/// ModelIndex to which the model corresponds
/// </summary>
public ModelIndex index;
/// <summary>
/// The model itself
/// </summary>
public NNModel model;
}