Pretrained models not showing up checkpoint list
See original GitHub issueHi, I’m trying to use the pre-trained model. I’ve downloaded the google drive folder and placed it in pretrained_models. When I run tabulo checkpoint list I do not see the local checkpoint.
Any idea what is going on?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
How to restore pretrained checkpoint for current model in ...
1 Answer 1 ... You can use tf.get_collection(tf.GraphKeys.GLOBAL_VARIABLES) to get a list of all variable names in current graph. You also can ...
Read more >"Some weights of the model checkpoint at bert-base-uncased ...
Some weights of BertForMaskedLM were not initialized from the model checkpoint at bert-large-uncased-whole-word-masking and are newly initialized: ['cls.
Read more >Models - Hugging Face
The warning Weights from XXX not initialized from pretrained model means that the weights of XXX do not come pretrained with the rest...
Read more >Training checkpoints | TensorFlow Core
Checkpoints capture the exact value of all parameters ( tf.Variable objects) used by a model. Checkpoints do not contain any description of the...
Read more >Checkpoints — NVIDIA NeMo
There are two main ways to load pretrained checkpoints in NeMo: Using the restore_from() method ... The tables below list the ASR models...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Figured it out, I think: From:
https://github.com/interviewBubble/Tabulo/blob/master/docs/tutorial/06-creating-own-checkpoints.rstI put together the following:tabulo checkpoint create 6aac7a1e8a8e/config.yml -e alias="tables" -e name="Tabulo Pretrained"using the config.yml file inside the downloaded directory:luminoth/utils/pretrained_models/luminoth/checkpoints/When I execute
tabulo checkpoint list… I gotNo checkpoints available. ¿Is for the same reason?