jsup.GEN - working on image-to-image generation with AI

Image
by joviansummer original STEEMIT post: https://steemit.com/blog/@joviansummer/jsup-gen-working-on-image-to-image-generation-with-ai Hello, this is @joviansummer(witness: @jswit). I'd like to share what I'm working on regarding my experintal jsup.GEN project, which tries to connect image generation AI with Steemit. Currently, jsup.GEN provide function to generate image from test prompt(txt2img). This function is interesting, but it's not easy to generate exactly what you want because you need to explain the image in detail with multiple keywords in English. Thus, I think it's more useful to have a function to generate image from existing reference image. I'm working on this image-to-image function, and thinking about two methods to implement it. The first method is to provide 2 commands as follows: !gen_t : This command focuses more on text prompt than reference image. The result may be quite different from reference because text prompt will have much more in...

파이썬에서 소수점 특정 자리수의 반올림, 올림, 내림

by joviansummer
original STEEMIT post: https://steemit.com/blog/@joviansummer/86b984


우선 정수 기준의 반올림, 올림, 내림은 이전에 포스팅했습니다. 아래의 링크입니다.

파이썬에서 수자 반올림, 올림, 내림

파이썬에서 정수가 아니라 소수점 자리에서 반올림, 올림, 내림을 하는 방법입니다.

예를 들어 소수점 세째자리까지 유효 수자로 간주하고 네째자리의 값을 반올림, 올림, 내림하는 경우를 보겠습니다. 반올림은 round() 함수를 아래와 같이 사용할 수 있습니다.

x = 1.3463
y = 1.3469
print(round(x,3))
print(round(y,3))

1.346
1.347

올림과 내림에 사용하는 math.ceil(), math.floor() 함수는 정수 기준이기 때문에 소수점을 기준으로 하려면 아래와 같이 할 수 있겠습니다.

import math

x = 1.3463
x_ceil = math.ceil(x*1000) / 1000
print(x_ceil)

1.347

소수점 세째자리까지 취하고 싶기 때문에 우선 1000을 곱해서 해당 부분까지 정수가 되도록한 후 math.ceil() 함수로 올림을 수행하고, 다시 1000으로 나누어서 결과를 얻었습니다.

내림도 동일한 요령으로 하면 되겠습니다.

import math

y = 1.3469
y_floor = math.floor(y*1000) / 1000
print(y_floor)

1.346


@joviansummer의 스팀 프로젝트

스팀 증인노드를 운영중입니다. @jswit에 증인투표해 주시면 감사하겠습니다.
(https://steemitwallet.com/~witnesses)

jswit 증인 노드 프로젝트를 시작합니다.

jsup 업보팅(upvoting) 서비스 소개

jsup 수혜자 지정 기능 추가

jsup 서비스에 큐레이션 보상 분배 기능이 추가되었습니다.

jSTEEM 프로젝트 - 텔레그램 챗봇으로 구현하는 스팀 블럭체인 탐색기

STEEM.NFT - 디지털 아트 보존 프로젝트

Posted through the AVLE Dapp (https://avle.io)

Comments

Popular posts from this blog

스티미언의 영향력 지수 계산

jsup/avle code update - you don't have to write post everyday

jsup/avle 보팅 코드 갱신 - 1일1포스팅 강박에서 벗어나기