what does this errors meaning in pycharm?

-2

when i run this function in pycharm, The result value during the function is not given and the corresponding error is output before it is terminated. The error is that Process finished with exit code -1073740791 (0xC0000409). i did googling already, but i can't find enough solution. please teach me how to solve this problem.

def determineBiddingPrice(t, n, bid_t, w, h, k):

    encode = LabelEncoder()
    rank = determineRank(t, n, bid_t, w, h, k)

    if rank < n:
        while rank < n:
            rank = determineRank(t, n, bid_t, w, h, k)
            bid_t -= 10
            print(bid_t)
            print(rank)
    elif rank > n:
        while rank > n:
            bid_t += 10
            rank = determineRank(t, n, bid_t, w, h, k)
            print(bid_t)
            print(rank)
    else:
        return bid_t
python
tensorflow
keras
pycharm
asked on Stack Overflow Nov 27, 2019 by Ailla

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0