New basic signs model
This commit is contained in:
committed by
Jelle De Geest
parent
06aa9206ac
commit
43887af670
@@ -26,7 +26,7 @@ public class Learnable
|
||||
/// <summary>
|
||||
/// Addaptive threshold
|
||||
/// </summary>
|
||||
public float thresholdPercentage = 0.90f;
|
||||
public float thresholdDistance = 2f;
|
||||
|
||||
/// <summary>
|
||||
/// Example video clip
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user