New basic signs model

This commit is contained in:
Jerome Coudron
2023-05-07 21:00:52 +00:00
committed by Jelle De Geest
parent 06aa9206ac
commit 43887af670
111 changed files with 952 additions and 329 deletions

View File

@@ -26,7 +26,7 @@ public class Learnable
/// <summary>
/// Addaptive threshold
/// </summary>
public float thresholdPercentage = 0.90f;
public float thresholdDistance = 2f;
/// <summary>
/// Example video clip

View File

@@ -26,6 +26,11 @@ public class ModelList : ScriptableObject
/// The model itself
/// </summary>
public MLModelData modelMAC;
/// <summary>
/// json file
/// </summary>
public TextAsset embeddingsFile;
}
@@ -79,4 +84,9 @@ public class ModelList : ScriptableObject
{
return models[currentModelIndex].index;
}
public TextAsset GetEmbeddings()
{
return models[currentModelIndex].embeddingsFile;
}
}