Attribute Error
See original GitHub issueIt’s throwing the following error when I tried in Colab.
AttributeError Traceback (most recent call last)
<ipython-input-34-d4e8df5c5807> in <module>()
6 epochs=100,
7 n_workers=8,
----> 8 steps_per_epoch=200,
9 )
8 frames
/usr/local/lib/python3.6/dist-packages/tensorflow/python/keras/callbacks.py in _get_file_path(self, epoch, logs)
1333 'Reason: {}'.format(self.filepath, e))
1334 self._write_filepath = distributed_file_utils.write_filepath(
-> 1335 file_path, self.model.distribute_strategy)
1336 return self._write_filepath
1337
AttributeError: 'DeepLabCut' object has no attribute 'distribute_strategy'
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (1 by maintainers)
Top Results From Across the Web
How to Fix AttributeError in Python - Rollbar
The Python AttributeError is an exception that occurs when an attribute reference or assignment fails. This can occur when an attempt is ...
Read more >Python AttributeError: A How-To Guide - Career Karma
A Python AttributeError is raised when you try to call an attribute of an object whose type does not support that method. For...
Read more >Error Encyclopedia | Attribute Error
Attribute errors in Python are generally raised when you try to access or call an attribute that a particular object type doesn't possess....
Read more >Attribute Error Python - STechies
Attribute error occurs in python when we try to assign an attribute value to a python objects or class instance in which that...
Read more >The Python AttributeError - Linux Hint
The errors prevent the program from running. One of the most common faults in Python is “Attribute Error”. The AttributeError is defined as...
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

Can be fixed when adding :
I am also having this same error - using only the provided example notebook (step3_train_model.ipynb) and data (/deepposekit-data/datasets/fly/).