Post

Replies

Boosts

Views

Activity

Reply to mpsgraphtool doesn't work
Merhaba Size Yazacağım Kodu Kullanız Lütfen import MPSGraph // Metal cihazını oluştur guard let device = MTLCreateSystemDefaultDevice() else { fatalError fatalError("Metal desteklenmiyor.") } // MPSGraph bağlamını oluştur let graph = MPSGraph(device: device) // Giriş matrisini tanımla let inputShape = MPSGraphTensorShape(batchSize: 1, width: 3, height: 3, featureChannels: 1) let inputTensor = graph.placeHolderTensor(shape: inputShape) // Matris transpozunu almak için düğüm oluştur let transposeNode = graph.transpose(withPrimaryTensor: inputTensor, permutation: [0, 2, 1, 3]) // Çıkış düğümünden sonucu al guard let resultTensor = transposeNode.result else { fatalError("Sonuç elde edilemedi.") } // Hesaplamaları başlat let options = MPSGraphExecutionOptions() options.executionTarget = .metal try graph.executeAsync(with: resultTensor, device: device, options: options) { (result, error) in if let error = error { print print("Hata: \(error)") } } else { let resultData = result.data print print("Transpoze Sonuç Verileri: \(resultData)") } } } } `` } BuMPSGraph kullanMPSGraph düğümlerMPSGraph kullanım Saygılarımla Apple Türkiye Siber Güvenlik Uzmanı Fırat Averbek
Aug ’23
Reply to I need the Python code for connecting to my Apple appstore sales reports
DEĞERLİ: tommygod size vereceğim kodu kullanabilirsiniz if response.status_code == 200: try: # Yanıtın içeriğini gziple çözme buffer = io.BytesIO(response.content) with gzip.GzipFile(fileobj=buffer) as f: content = f.read().decode('utf-8') # İçeriği DataFrame'e dönüştürme data = [line.split('\t') for line in content.split('\n') if line] df = pd.DataFrame(data[1:], columns=data[0]) return df except Exception as e: return pd.DataFrame(columns=['Error'], data=[f'İşlem başarısız oldu. Hata: {e}']) else: return pd.DataFrame(columns=['Error'], data=[f'Beklenmeyen durum kodu alındı {response.status_code}: {response.text}']) apple turkiye gelişdirici fırat averbek saygılarımla
Aug ’23