Hi, I was using huggingface hub api, and would like to clarify some details on the API (I haven't found any documentation).
What is "downloads" and "likes" in the following interface?
I am not sure if "downloads" be the total number of downloads or the number of downloads in the last 30 days?
How about "likes"?
interface ModelEntry {
id: string;
name: string;
private: boolean;
gated: false | "auto" | "manual";
task?: PipelineType;
likes: number;
downloads: number;
updatedAt: Date;
}