Skip to content

hyeokjunejeon/furiosa-artifacts

Repository files navigation

Furiosa Artifacts

This repository provides deep learning models provided by FuriosaAI. Available models are described in artifacts.py which is a descriptor file in the form defined by furiosa-registry

Installation

Load models via furiosa-models.

pip install furiosa-models

Example

from furiosa.registry import Model
from furiosa.models.vision import MLCommonsResNet50


model: Model = MLCommonsResNet50()
...

Testing

Before contributing, we recommend you to write end-to-end testing codes under ./scripts/ directory. And please run the tests using the following script:

pytest ./scripts

License

Copyright (c) 2021 FuriosaAI Inc. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.