Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 931 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 931 Bytes

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.