#๐Ÿ”’ Trying to adjust PCA to transform noisy data

20 messages ยท Page 1 of 1 (latest)

tawdry hollowBOT
#

@nimble umbra

Python help channel opened

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.

ember swift
#

huh

nimble umbra
#

pithink finally learned .zip are not allowed, weird I couldn't find it anywhere
So it just deleted

ember swift
nimble umbra
#

10+ .py files, some csv files, and extra pkl and PCA models

ember swift
#

ye like i said in other thread

#

github

nimble umbra
#

thx, but would that allow me to then post a link from github here to ask for help?

tawdry hollowBOT
#

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;
}```
ember swift
#

as u can see

#

but ye if u need help on such amounts of code please use github

nimble umbra
#

I'll see about posting the code to github and asking the question again, thanks Dagger!

ember swift
#

ya welcome

tawdry hollowBOT
#
Python help channel closed for inactivity

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.