Various questions
See original GitHub issueFirst off, thanks very much for all your work on this - a really clean and understandable implementation of YOLO 😄 I have a few questions (probably very basic) about getting started with training and inference with tensornets - in specific to the YOLOv2 model:
- I am wanting to train YOLOv2 on the Open Images dataset. How can the tensornets implementation of YOLOv2 be used with a custom number of classes (545 in my case)?
- After training, how would one save the weights to a file and load them back in later for inference?
- Can layers be frozen during training (i.e. only train the last 4 layers) similar to what one can do in darknet with
stopbackward=1
? - Is there support for training the YOLOv2 model with a TPU? If not, is there a somewhat straightforward path to adding that functionality?
- Can YOLOv2 be trained and used for inference with FP16 precision to speed things up - and can the existing pretrained weights be converted to FP16 so as to not necessitate training from scratch?
Thanks very much!
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
The 8 essential questioning techniques you need to know
The 8 essential questioning techniques you need to know · Closed questions (aka the 'Polar' question) · Open questions · Probing questions ·...
Read more >Types of Questions: Sample Question Types with Examples
1. The Dichotomous Question · 2. Multiple Choice Questions · 3. Rank Order Scaling Question · 4. Text Slider Question · 5. Likert...
Read more >Types of Question - Effective Questioning | SkillsYouNeed
There are lots of different types of open question; some are more closed than others! Leading or 'Loaded' Questions. A leading question, usually...
Read more >The 4 Main Types of Questions in English + Examples - Preply
In English, there are four types of questions: general or yes/no questions, special questions using wh-words, choice questions, ...
Read more >8.4 Different Types of Questions
Open-ended questions; Specific questions; Motivation questions; Unconventional questions. Lastly, we'll review illegal questions ...
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
@taehoonlee Awesome, thanks so much! Right now I’m swamped with work so I don’t see myself getting time to tinker around with it - but if a break comes up I’ll certainly give it a shot.
You are right @abagshaw,
(# classes + 5) * # anchors = (545 + 5) * 5 = 2750
. Thank you so much!