You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
458 B
13 lines
458 B
12 months ago
|
namespace StabilityMatrix.Avalonia.Models.HuggingFace;
|
||
|
|
||
|
public class HuggingfaceItem
|
||
|
{
|
||
|
public required HuggingFaceModelType ModelCategory { get; set; }
|
||
|
public required string ModelName { get; set; }
|
||
|
public required string RepositoryPath { get; set; }
|
||
|
public required string[] Files { get; set; }
|
||
|
public required string LicenseType { get; set; }
|
||
|
public string? LicensePath { get; set; }
|
||
|
public string? Subfolder { get; set; }
|
||
|
}
|