GithubHelp home page GithubHelp logo

Comments (4)

D-X-Y avatar D-X-Y commented on August 19, 2024 1

Thanks, @KelvinYang0320, for help answer the question!

from nats-bench.

D-X-Y avatar D-X-Y commented on August 19, 2024

Thanks for your questions, print(api.arch(12)) can tell you the architecture info, see more details in the updated README (https://github.com/D-X-Y/NATS-Bench#usage).

For the second question, you can see item-3 in (https://github.com/D-X-Y/NATS-Bench#usage), while a prerequisite is to download the pre-trained checkpoints, which is very large..

from nats-bench.

NLGithubWP avatar NLGithubWP commented on August 19, 2024

Thank you for the answering,

print(api.arch(12)) could give us the cell structure.

The architecture/model is composed by stacking cell multiple times.

I want to get the accuracy and loss of the 12 model for example (get_more_info already give us that ), and also get the full model itself. And then I want to retrain the model with my own datasets. I want to check if the model with high accuracy has also good performance on my datasets.

But i'm still a little bit confuse with generating network related APIs.

import xautodl
from xautodl.models import get_cell_based_tiny_net
config = api.get_net_config(15620, 'cifar10')
info = api.get_more_info(15620, 'cifar10')
network = get_cell_based_tiny_net(config)

In this code, it uses 'get_cell_based_tiny_net' to get the network. And use get_more_info to get the loss and accuracy of the model.

Is the network returned by get_cell_based_tiny_net can give me the full model ? It is quite small and accuracy is low.

In xautod/models package, I also see there are get_cifar_models apis, which can return us basic, resnet, and densenet model.

How to use them ?

Thank you

from nats-bench.

KelvinYang0320 avatar KelvinYang0320 commented on August 19, 2024

@NLGithubWP You can get this trained network by the following code:

import xautodl
from xautodl.models import get_cell_based_tiny_net
config = api.get_net_config(15620, 'cifar10')
network = get_cell_based_tiny_net(config)

# Load the pre-trained weights: params is a dict, where the key is the seed and value is the weights.
params = api.get_net_param(15620, 'cifar10', None)
network.load_state_dict(params[777])

get_cell_based_tiny_net can give you the neural architecture, but you must get and load the trained weights by the get_net_param and load_state_dict.

As for the test accuracy, you can get it by the following code:

info = api.get_more_info(15620, 'cifar10', is_random = 777)
print(info['test-accuracy'])

After running this trained network on the whole test dataset, you will get the exact same test accuracy.

from nats-bench.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.