Wrong loader length if overfit=True
See original GitHub issue🐛 Bug Report
runner.train( ... overfit=True )
The runner.loader_sample_len is wrong currently we will have loader length from the original loader. But we must have the first batch size * a number of batches.
How To Reproduce
Take any loader and after runner.train check the train loader length with overfit=True
Expected behavior
we must have the first batch size * a number of batches.
Environment
Not needed
Checklist
- bug description
- steps to reproduce
- expected behavior
- environment
- code sample / screenshots
FAQ
Please review the FAQ before submitting an issue:
- I have read the documentation and FAQ
- I have reviewed the minimal examples section
- I have checked the changelog for main framework updates
- I have read the contribution guide
- I have joined Catalyst slack (#__questions channel) for issue discussion
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
SQL Loader Error: "Variable length field exceeds maximum ...
Record 1: Rejected - Error on table TEST, column FILENAME. Variable length field exceeds maximum length. Here's that row.. the length of that ......
Read more >Error Field in data file exceeds maximum length - Ask TOM
SQLLOADER - Error Field in data file exceeds maximum length Hi,I am trying to load a data file into a database table using...
Read more >How NOT to break your loader while back dragging - YouTube
Over extending your local cylinders can increase the likelihood of bending them. This one simple trick can avoid a costly ...
Read more >How NOT to run a Wheel loader - mistakes, errors and red flags
How Not to run Heavy equipment- NOOB mistakes in a payloader & how to avoid them. Wheel loader basics & how to avoid...
Read more >effective model based: Topics by Science.gov
To avoid these arbitrary decisions, here we present an alternative approach to characterize the effective length of precipitation event which is based on ......
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 FreeTop 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
Top GitHub Comments
I think in the current implementation it’s not a bug - it’s a feature) Batch overfit is a functionality that allows you to check fast that the model can learn on the same data or not.
should be fixed 😉