seasonjs / hf-hub

golang client for the huggingface hub aiming for minimal subset of features over `huggingface-hub` python package

Home Page:https://pkg.go.dev/github.com/seasonjs/hf-hub

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hf-hub

Go Reference

golang client for the huggingface hub aiming for minimal subset of features over huggingface-hub python package

Usage

Add the dependency

go get github.com/seasonjs/hf-hub

use this package

package main

import (
	"github.com/seasonjs/hf-hub/api"
)

func main() {
	hapi, err := api.NewApi()
	if err != nil {
		print(err.Error())
		return
	}

	modelPath, err := hapi.Model("bert-base-uncased").Get("config.json")
	if err != nil {
		print(err.Error())
		return
	}

	print(modelPath)
}

Thanks

License

Copyright (c) seasonjs. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.

About

golang client for the huggingface hub aiming for minimal subset of features over `huggingface-hub` python package

https://pkg.go.dev/github.com/seasonjs/hf-hub

License:MIT License


Languages

Language:Go 98.0%Language:Python 2.0%