Jump to content

jarulsamy

Member
  • Posts

    21
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jarulsamy's Achievements

  1. Hit Win+R box and type %APPDATA% The .minecraft folder contains everything related to minecraft.
  2. I want to make a Bittrex crypto coin wallet however the verification requires me to send a picture of my ID. I feel a little unsettled about it. Can anyone vouch for this company? I know coinbase follows a similar practice. However I have never made a wallet before.
  3. Is 99% safe or should I dillute it a bit before trying
  4. Don't really know. I believe it's just some dirt from the keyboard, that's why it's in such a simetric pattern. The picture makes it look a lot worse than it does in real life.
  5. I've been trying to remove these white particles from my display (Dell XPS 13). I tried warm water and a 80/20 concentrate of dish soap to no avail. Trying to be careful not to damage the panel. Any suggestions?
  6. I retrained an object detection model based on Google's Tensorflow object detection API. I exported it as a frozen inference graph. I would like to use it with CV2's DNN module: cap = cv2.VideoCapture(URL) cvNet = cv2.dnn.readNetFromTensorflow('graph.pb', 'graph.pbtxt') while True: ret, img = cap.read() rows = img.shape[0] cols = img.shape[1] cvNet.setInput(cv2.dnn.blobFromImage(img, 1.0/127.5, (300, 300), (127.5, 127.5, 127.5), swapRB=True, crop=False)) cvOut = cv2Net.forward() for detection in cv2Out[0,0,:,:]: score = float(detection[2]) if score > 0.3: left = detection[3] * cols top = detection[4] * rows right = detection[5] * cols bottom = detection[6] * rows cv2.rectangle(img, (int(left), int(top)), (int(right), int(bottom)), (23, 230, 210), thickness=2) cv2.imshow('img', img) if cv2.waitKey(1) ==27: exit(0) I get this error: Const input blob for weights not found in function getConstBlob From my research, I believe I have to optimize the inference graph. I can't find any documentation as how to do this. If anyone could point me in the right direction, it would be very much appreciated.
  7. Really depends on what you plan to do. Personally I would stick to a higher clocked quad or hex core. If you plan to primarily game, maybe something like the Ryzen 5 1600x?
  8. It does appear to be a GPU issue. If I were you I would RMA.
  9. Honestly Pixel 2 is my recommendation. The stock android beats everything for me. Plus the guaranteed 3 years of software support.
  10. No, following the PC part picker link he listed, 288 pin ram (DDR4) is the supported form factor. Maybe try getting another CPU, since the only part you are changing is the CPU and the RAM is on the supported list.
  11. Check and make sure you have no automatic voltage settings enabled. That temperature change from stock is rather drastic.
  12. Throw some Linux at that sucker and you're in business!
  13. For a 212 evo 90+ seems really high. Are you sure mounting and thermal compound are adequate? The 212 evo has a TDP of 180 watts and the stock 4770k is 84 watt TDP at stock. So even at 4.5ghz it seems unlikely that the cooler is the bottleneck.
  14. Whats the current CPU heat sink you're using? You could try lowering the voltage and see if the chip stays stable. Even for a 4770k @ 4.5 ghz 90+ is a little high.
×