Daniel you told that we should first do some small experiments and then do bigger experiments... #22
-
Daniel, you told that we should first do some small experiments and then do bigger experiments,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey Ranuga, That's correct, you can do experiments by lowering the amount of data you use. For example, if you have 100,000 rows, you might try to get something working on 1,000 rows (1% of the data) and then scale up to the full 100,000 when you find it works. You can remove or sample data from a pandas DataFrame using indexing or the
|
Beta Was this translation helpful? Give feedback.
Hey Ranuga,
That's correct, you can do experiments by lowering the amount of data you use.
For example, if you have 100,000 rows, you might try to get something working on 1,000 rows (1% of the data) and then scale up to the full 100,000 when you find it works.
You can remove or sample data from a pandas DataFrame using indexing or the
sample()
method.