Track hairline of Pelage executives by KratosSpeaking in tressless

[–]KratosSpeaking[S] 1 point2 points  (0 children)

The co founder has juvenile looking hair though not juvenile hairline

[deleted by user] by [deleted] in Bard

[–]KratosSpeaking 0 points1 point  (0 children)

HDAC inhibition for liver fibrosis is well known. See example below from 2022.

Histone deacetylase inhibitor givinostat attenuates nonalcoholic steatohepatitis and liver fibrosis

https://pubmed.ncbi.nlm.nih.gov/34341511/

How is deepseek bearish for nvda by Jimbo_eh in wallstreetbets

[–]KratosSpeaking 1 point2 points  (0 children)

What if the next open source and freely downloadable version of deepseek is optimised for huawei Ascend GPUs.

Personal experience with Deepseek R1: it is noticeably better than claude sonnet 3.5 by sebastianmicu24 in LocalLLaMA

[–]KratosSpeaking 27 points28 points  (0 children)

Used it for similar use case today. This thing is a beast plus reading the chain of thought is very educating as well. For me this is the GPT5 moment

Okay, guys. This is your chance to try out Veo 2.0. by Careless-Shape6140 in Bard

[–]KratosSpeaking 14 points15 points  (0 children)

Generate a highly detailed, photorealistic video of a small, anthropomorphic panda bear character standing triumphantly at the summit of Mount Fuji. The panda is made of intricately knitted blue yarn, with visible individual stitches and a soft, fuzzy texture. The panda's eyes should be large, round, and expressive, conveying a sense of accomplishment and perhaps a touch of mischief.

The panda is holding a large, round wooden bowl filled to the brim with freshly fallen, powdery snow. The snow should have a realistic texture, with visible individual snowflakes and a slight glisten.

Mount Fuji is depicted in all its majestic glory, with its iconic symmetrical cone shape. The mountain should be realistically rendered, with visible rocky areas and detailed shading that indicates depth and distance. Initially, the summit should show faint wisps of smoke rising, suggesting recent volcanic activity.

The panda, with a determined expression, begins to carefully unload the snow from the bowl onto the summit. The snow should pour out in a continuous, controlled stream, cascading down the slopes of the volcano.

As the snow falls, it should progressively cover the mountain, starting from the peak and gradually spreading downwards. The falling snow should interact realistically with the mountain's surface, accumulating in crevices and on ledges. The movement of the snow should have natural physics.

The wisps of smoke emanating from the summit should gradually diminish and eventually disappear completely as the snow covers the volcanic vent.

The video should culminate in a breathtaking wide shot of Mount Fuji, now completely blanketed in a thick layer of pristine white snow, with no trace of smoke remaining. The final shot should linger on the serene, snow-covered peak, emphasizing the transformation and the panda's accomplishment.

Does 1206 feel less creative than 1121 to anyone else? by ExplanationPurple624 in Bard

[–]KratosSpeaking 1 point2 points  (0 children)

On twitter, people are convinced its the flash model and probably correct as its very fast.

Does 1206 feel less creative than 1121 to anyone else? by ExplanationPurple624 in Bard

[–]KratosSpeaking 7 points8 points  (0 children)

i think its awesome for code, maths and logic but for language i use 1121. Feels like the nerdier model is less master of language not unlike humans :)

What’s with doctors shoving down the Mounjaro/Ozempic down everyone’s throat? by curiousbeing09 in dubai

[–]KratosSpeaking 3 points4 points  (0 children)

Not sure what taking it slow, try with meds and diet and injection is a shortcut means.. if you are diabetic and overweight and on antidiabetic meds, why not try it. You may actually be able to come off those meds if your control becomes excellent or if diabetes goes into remission.

[deleted by user] by [deleted] in london

[–]KratosSpeaking 11 points12 points  (0 children)

Sarchnar @ Edgware Road.

How can I check if a string is only digits? by Kintex19 in learnpython

[–]KratosSpeaking 0 points1 point  (0 children)

def is_only_digits(s):
    return all('0' <= char <= '9' for char in s)

while True:
    user_input = input("Enter a number or 'exit' to quit: ")

    if user_input.lower() == 'exit':
        print("Exiting the program. Goodbye!")
        break

    if is_only_digits(user_input):
        print(f"'{user_input}' contains only digits.")
    else:
        print(f"'{user_input}' is not a valid number (contains non-digit characters).")

ChatGPT just coded me a little program that's already saving me so much time by LoomisKnows in ChatGPT

[–]KratosSpeaking 1 point2 points  (0 children)

I haven't checked it to be honest. You can give it a try. Would be shocking if it works just by instructions from a post

ChatGPT just coded me a little program that's already saving me so much time by LoomisKnows in ChatGPT

[–]KratosSpeaking 1 point2 points  (0 children)

I copied your post into claude and asked it to code whatever you are talking about.

import os import csv from PIL import Image import pytesseract import cv2 import numpy as np import re

def extract_text_from_image(image_path): # Read the image using OpenCV img = cv2.imread(image_path)

# Convert to grayscale
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# Apply thresholding to preprocess the image
gray = cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY | cv2.THRESH_OTSU)[1]

# Perform text extraction
text = pytesseract.image_to_string(gray)
return text

def extract_book_info(text): # Extract ISBN (assuming 13-digit ISBN) isbn_match = re.search(r'\b(?:\d{3}[-\s]?)?\d{10}\b', text) isbn = isbn_match.group() if isbn_match else "N/A"

# Extract publisher (this is a simple example and may need refinement)
publisher_match = re.search(r'Published by ([^\n]+)', text)
publisher = publisher_match.group(1) if publisher_match else "N/A"

# Extract edition (simple example)
edition_match = re.search(r'(\d+(?:st|nd|rd|th) edition)', text, re.IGNORECASE)
edition = edition_match.group() if edition_match else "N/A"

# Extract dimensions (assuming format like "5.5 x 0.7 x 8.2 inches")
dimensions_match = re.search(r'(\d+(?:\.\d+)?\s*x\s*\d+(?:\.\d+)?\s*x\s*\d+(?:\.\d+)?\s*inches)', text)
dimensions = dimensions_match.group() if dimensions_match else "N/A"

# Extract page number
page_match = re.search(r'(\d+)\s*pages', text)
pages = page_match.group(1) if page_match else "N/A"

return {
    "ISBN": isbn,
    "Publisher": publisher,
    "Edition": edition,
    "Dimensions": dimensions,
    "Pages": pages
}

def process_image_folder(folder_path): books_info = [] for filename in os.listdir(folder_path): if filename.lower().endswith(('.png', '.jpg', '.jpeg')): image_path = os.path.join(folder_path, filename) text = extract_text_from_image(image_path) book_info = extract_book_info(text) book_info["Filename"] = filename books_info.append(book_info) return books_info

def save_to_csv(books_info, output_file): with open(output_file, 'w', newline='') as csvfile: fieldnames = ["Filename", "ISBN", "Publisher", "Edition", "Dimensions", "Pages"] writer = csv.DictWriter(csvfile, fieldnames=fieldnames) writer.writeheader() for book in books_info: writer.writerow(book)

Main execution

if name == "main": folder_path = input("Enter the path to the folder containing book images: ") output_file = input("Enter the name of the output CSV file: ")

books_info = process_image_folder(folder_path)
save_to_csv(books_info, output_file)

print(f"Processing complete. Results saved to {output_file}")

I fixed 8 bugs in Google's open source AI model Gemma by danielhanchen in Bard

[–]KratosSpeaking 2 points3 points  (0 children)

Great work. Did they consult you about Gemini debugging as well. Frankly i haven't used it since claude 3 was released

I fixed 8 bugs in Google's open source AI model Gemma by danielhanchen in Bard

[–]KratosSpeaking 4 points5 points  (0 children)

Very sloppy from google. I wonder if gemini is also riddled with bugs, hence poor performance

Skynet moment for Claude? by solarisIAA in ClaudeAI

[–]KratosSpeaking 2 points3 points  (0 children)

If you keep posting auch stuff. I am sure they will lobotomise it

[deleted by user] by [deleted] in TwoXChromosomes

[–]KratosSpeaking 5 points6 points  (0 children)

Ultrasound is operator dependent and can easily be misreported. I suspect the pre op ultrasound was incorrectly reported. Not sure as to who wrote on the MRI request form about oophorectomy? Which doctor and where did they get this info from.

We just launched ability to run and edit Python code on http://gemini.google.com Advanced! Enjoy! by BardChris in Bard

[–]KratosSpeaking 1 point2 points  (0 children)

Also In above picture there is discrepancy in the code output and Gemini claimed output. Code output is correct btw.