#๐ Trying to adjust PCA to transform noisy data
20 messages ยท Page 1 of 1 (latest)
@nimble umbra
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
huh
finally learned .zip are not allowed, weird I couldn't find it anywhere
So it just deleted
u need to share a huge amount of code ?
10+ .py files, some csv files, and extra pkl and PCA models
thx, but would that allow me to then post a link from github here to ask for help?
yup
@tawdry hollow can even post snippets of code from github links
Objects/sliceobject.c lines 197 to 210
if (r->start == Py_None) {
*start = *step < 0 ? length-1 : 0;
} else {
if (!PyLong_Check(r->start)) return -1;
*start = PyLong_AsSsize_t(r->start);
if (*start < 0) *start += length;
}
if (r->stop == Py_None) {
*stop = *step < 0 ? -1 : length;
} else {
if (!PyLong_Check(r->stop)) return -1;
*stop = PyLong_AsSsize_t(r->stop);
if (*stop < 0) *stop += length;
}```
I'll see about posting the code to github and asking the question again, thanks Dagger!
ya welcome
This help channel has been closed. Feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.