投稿時間:2022-09-02 07:18:38 RSSフィード2022-09-02 07:00 分まとめ(22件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 「撮り鉄」のマナー違反どう減らす? 撮影イベント有料化で見えてきたメリットとは https://www.itmedia.co.jp/business/articles/2209/02/news043.html itmedia 2022-09-02 06:30:00
IT ITmedia 総合記事一覧 [ITmedia News] Twitter、「ツイート編集」テストを9月末に開始 サブスク会員が対象 https://www.itmedia.co.jp/news/articles/2209/02/news067.html itmedianewstwitter 2022-09-02 06:26:00
IT ビジネス+IT 最新ニュース AI活用が進まない原因は「倫理」? 先進企業が“ガバナンス”に注力する理由 https://www.sbbit.jp/article/cont1/94370?ref=rss 日本アイ 2022-09-02 06:10:00
AWS AWS Developer Blog Improvements to the connection experience in the AWS Toolkit for VS Code https://aws.amazon.com/blogs/developer/introducing-connection-ux-improvements-in-the-aws-toolkit-for-vs-code/ Improvements to the connection experience in the AWS Toolkit for VS CodeAWS Toolkit for VS Code has shipped improvements that help customers setting up a new machine without AWS credentials files typically in “ aws ーthe “ aws directory of the machine home folder Setting up credentials is the first step to working with AWS cloud resources but it s not a frequent task so one often needs to read … 2022-09-01 21:02:21
AWS AWS Management Tools Blog How to peer an AWS Migration Hub Refactor Spaces orchestrated AWS Transit Gateway to your existing enterprise AWS Transit Gateway https://aws.amazon.com/blogs/mt/how-to-peer-an-aws-migration-hub-refactor-spaces-orchestrated-aws-transit-gateway-to-your-existing-enterprise-aws-transit-gateway/ How to peer an AWS Migration Hub Refactor Spaces orchestrated AWS Transit Gateway to your existing enterprise AWS Transit GatewayAWS Migration Hub Refactor Spaces helps customers incrementally refactor applications while shielding end users from the changes of infrastructure and using the strangler fig pattern This enables customers to refactor their legacy applications into a series of microservices while continuing to operate the existing application in production Refactor Spaces achieves this by orchestrating a number … 2022-09-01 21:25:31
海外TECH MakeUseOf What Is Skiff? Everything You Need to Know About the Encrypted Email and Drive Platform https://www.makeuseof.com/what-is-skiff/ What Is Skiff Everything You Need to Know About the Encrypted Email and Drive PlatformSkiff is an encrypted email platform that comes packed with a drive suite It also boasts crypto wallet support Here s everything you need to know 2022-09-01 21:30:14
海外TECH DEV Community How I made a discord bot to generate artistic images and a poetic text about it https://dev.to/llckx/how-i-made-a-discord-bot-to-generate-artistic-images-and-a-poetic-text-about-it-330e How I made a discord bot to generate artistic images and a poetic text about it Hey Welcome I ve created Pyetra the poet It automatically generates an image using the MidJourney model and finally a text using GPT davinci model Here is what it looks like running my script times in a row with non cherry picked results Let s walk through the process of how this was achieved Generating the image To generate the image I m using a new image model called MidJourney let s talk about the image generation process first and then I ll talk about the challenges of making it in an automated wayImage models receive some form of input and with it generate an output an image in MidJourney s case the input is called a prompt a text containing what you want the model to generate Some examples A simple prompt grim reaper A complex prompt warrior woman as the angel of death wearing armor with massive black wings on back dark fantasy mist fog heavenly light epic barroque roccoco details photorealistic render ds max v ray extremely detailed and intricate center composition elegant vfx unreal engine octane render extremely contrast extremely sharp lines k ar Note that the level of detail and tags in the prompt plays a huge role in the generation of a more complex detailed and creative image that is often referred to prompt quality the interesting thing is that it s not necessarily about the size of the prompt it s about using tags the model will understandHere s the upscaled version of the image we just generated How to generate high quality prompts In my case I ve created a machine learning model that learned from a dataset of high quality prompts and now is able to generate random high quality promptsTo achieve this I had to create such dataset I used selenium which is a browser automation tool and with it I did what s called web scraping going to the MidJourney website and some discord channels to retrieve a big volume of high quality prompts made by other people If you re on desktop you can see a portion of my dataset clicking in this linkThe fact that the MidJourney website had a section about the featured creations showcasing amazing creations and the prompt that was used to generate them really helpedAfter web scraping prompts manually labeling and assigning a score to each one of them based on the image they generated and my personal opinion about the image I finally had my dataset ready to useI then trained a machine learning model to predict a prompt that would receive a high score from meThe only thing left was passing the prompt to MidJourney so it could generate the image but there s a challenge about thisSome image models like DALL E plan to provide an API a way to interact with the model in your code with an API it s pretty simple to integrate the image model and create your own projects products or solutions utilizing the model without an API there are still some ways to interact with it but they re more inconsistent and I wouldn t recommend doing so for anything serious or in productionCurrently at the time of this post MidJourney doesn t have an API so to automatically generate an image with this model I had to make a custom script that uses selenium the browser automation tool I mentioned to log in to a discord account in the browser and then interact with the MidJourney bot using it s imagine command Generating the text To generate the text I m using the OpenAI model text davinci At first I thought about just sending the MidJourney prompt to davinci but the results were always very generic and more or less the sameSince some words like rendering k illustration detailed unreal engine hdr high contrast are very common in those prompts I would often see davinci talking about them and getting out of topic talking about the video games industry and such because of topics like rendering and unreal engine The results felt purely descriptive and I realized midway that wasn t exactly what I was aiming for I realized that I wanted something more poetic but not explicitly a poemSo at first I sanitized the prompt removing a bunch of those words that make davinci go out of topic it got way better but I still wasn t satisfied with the resultsThen I thought about passing into davinci exactly what can be found in the image and not just the prompt that was used to generate itTo achieve this I used Google Vision to get the exact features and elements of the imagesIf you re unfamiliar with this Google product here are some of its capabilities Meet Google VisionIt provides a list of labels that are classifications made by the model it often contains objects present in the image as well as some insights like fictional character It provides a list of objects usually it returns very few objects but the ones more present in the imageIt provides a list of properties with pieces of information such as colors present in the image and it s aspect ratioBy providing all this information to davinci the text it ll generate will be about the elements colors and features that can be found in the image so it will be a lot less generic and a lot more specific to the image itselfCurrently I m doing a mix of both ideas I had I have excluded a set of words from the prompt like unreal engine and rendering and I m passing the sanitized prompt as well as the google cloud vision image information to the davinci model And here s the final result In summary this is what s going on My cloud architecture looks like this Since I can t modify the google cloud function runtime to install chrome and use selenium I m using google cloud run with docker instead Below you can find exactly the davinci API call that I m doing where the variable formatted all features contains the colors labels and objects found in the image and formatted sanitized prompt contains the MidJourney prompt without keywords that are irrelevant to the davinci text generationresponse openai Completion create model text davinci prompt f Write a text talking loosely about the art that you made and its f formatted all features and formatted sanitized prompt temperature max tokens top p frequency penalty presence penalty Hope you enjoyed reading or this was informative in any capacity The banner of this post was generated using MidJourneyMidJourney is an evolving project and the experience is still changing significantly the images contained in this post were generated in m d Y Feel free to ask questions make suggestions and contact me My email is lukkamvd gmail comhere s my linkedin 2022-09-01 21:56:26
Apple AppleInsider - Frontpage News Samsung mocks iPhone 14 in latest ad campaign https://appleinsider.com/articles/22/09/01/samsung-mocks-iphone-14-in-latest-ad-campaign?utm_medium=rss Samsung mocks iPhone in latest ad campaignSamsung has released a new ad for the Galaxy S Ultra and the Z Flip all while claiming this innovation is not coming to an iPhone near you Buckle up for Apple s latest launch as you enter a world where heads will turn the ad starts Just not in your direction Read more 2022-09-01 21:13:58
Apple AppleInsider - Frontpage News Apple settles lawsuit with developer over App Store scam apps https://appleinsider.com/articles/22/09/01/apple-settles-lawsuit-with-developer-over-app-store-scam-apps?utm_medium=rss Apple settles lawsuit with developer over App Store scam appsApple has reached a settlement with Kosta Eleftheriou a developer who sued the company over scams in the App Store and copycat keyboards Credit James Yarema UnsplashEleftheriou is known for highlighting fake reviews on the App Store as well as the prevalence of scam apps He developed FlickType an Apple Watch keyboard Read more 2022-09-01 22:00:08
海外TECH Engadget iPhone 14 Pro's two hole-punch cutouts may look like a single 'wide pill' https://www.engadget.com/iphone-14-pro-hole-punch-cutouts-privacy-indicators-display-camera-app-211710542.html?src=rss iPhone Pro x s two hole punch cutouts may look like a single x wide pill x Apple s big annual iPhone event is only a few days away and we ll soon find out exactly what the company has up its sleeve In the meantime the rumor mill is still churning away The latest word on the street concerns the dual hole punch cutouts that the iPhone Pro is expected to have According to toMac nbsp and MacRumors nbsp with corroboration from Bloomberg s Mark Gurman Apple will fill the gap between the cutouts with a blacked out area of the screen making it appear to be a single quot wide pill shaped cutout quot Also interesting is what Apple seemingly plans to do with that section of the display The reports suggest iPhone Pro will move the privacy indicators for the camera and microphone to that gap Instead of showing a small orange dot in the top right corner when the microphone is in use and a green dot when the camera is active these indicators will apparently have more prominence between the cutouts Per toMac Apple s thinking is to make the indicators look more like they do on MacBook which shows a green indicator whenever an app is using the camera On top of that the iPhone Pro would be able to show privacy indicators for the camera and microphone simultaneously ーon current models if both are in use only a green dot is displayed Additionally it seems you ll be able to tap on the privacy indicators to see which apps are using the mic and camera Meanwhile Apple may be redesigning the Camera app to position more controls at the top of the screen ーnamely the flash and Live Photo buttons More photo and video settings might appear below the hole punch cutouts These changes aren t set in stone according to toMac which may be a good thing as folks may not want to cover most of the display with their hand while they adjust photo and video settings 2022-09-01 21:17:10
海外TECH Engadget Ubisoft confirms 'Assassin's Creed Mirage,' a stand-alone title in the Middle East https://www.engadget.com/ubisoft-confirms-assassins-creed-mirage-stealth-210138404.html?src=rss Ubisoft confirms x Assassin x s Creed Mirage x a stand alone title in the Middle EastAfter plenty of leaks Ubisoft has confirmed that Assassin s Creed Mirage is the next entry in its long running series More details are expected to drop during the Ubisoft Forward event September th but for now we can gleam some tidbits from the announcement image It shows Basim Ibn Ishaq a character from the recent Assassin s Creed Valhalla leaping with his hidden blade in front of the Palace of the Golden Gate in Baghdad via Polygon That lines up with previous leaks around the game s setting which also indicated that Mirage would be a return to stealth gameplay for the series The new title was originally intended to be DLC for Valhalla but Bloomberg reports that it was later transformed into a standalone experience to fill out Ubisoft s release schedule No matter its conception it s nice to see the series return to its Middle Eastern roots Being a super powered killing machine in Origins and Valhalla is fun and all but it s far from the methodical and less action heavy gameplay of the earlier AC games especially the under rated Origins 2022-09-01 21:01:38
海外科学 NYT > Science Updated Booster Shots Expected Within Days as C.D.C. Panel Signs Off https://www.nytimes.com/2022/09/01/health/covid-omicron-vaccines.html question 2022-09-01 21:53:23
海外TECH WIRED Six-Word Sci-Fi: Stories Written by You https://www.wired.com/story/six-word-sci-fi/ favorites 2022-09-01 21:30:00
金融 ニュース - 保険市場TIMES かんぽ生命、ラジオ体操を通じた青少年の健全な育成に向けた協定を締結 https://www.hokende.com/news/blog/entry/2022/09/02/070000 かんぽ生命、ラジオ体操を通じた青少年の健全な育成に向けた協定を締結青少年教育施設にてラジオ体操を株式会社かんぽ生命保険は月日、ラジオ体操を通じた青少年の健全な育成に向けた協定を締結したと発表した。 2022-09-02 07:00:00
ニュース @日本経済新聞 電子版 神戸物産、業務スーパーは「第二のユニクロ」になれるか https://t.co/YAD1r5eQAs https://twitter.com/nikkei/statuses/1565445806621990914 業務スーパー 2022-09-01 21:05:39
ニュース @日本経済新聞 電子版 ウクライナ原発、IAEA職員の常駐示唆 事務局長 https://t.co/aE1mRFVmWr https://twitter.com/nikkei/statuses/1565445805427011585 事務局長 2022-09-01 21:05:39
ニュース BBC News - Home Leicester 0-1 Manchester United: Jadon Sancho scores to seal third successive win https://www.bbc.co.uk/sport/football/62669252?at_medium=RSS&at_campaign=KARANGA Leicester Manchester United Jadon Sancho scores to seal third successive winJadon Sancho s first half goal seals a third successive victory for Manchester United as bottom club Leicester City remain winless 2022-09-01 21:12:36
ニュース BBC News - Home Liverpool transfer news: Reds sign midfielder Arthur Melo on season-long loan from Juventus https://www.bbc.co.uk/sport/football/62760674?at_medium=RSS&at_campaign=KARANGA arthur 2022-09-01 21:43:19
北海道 北海道新聞 外国ルーツの子供に居場所を 広島、小屋改装費募る https://www.hokkaido-np.co.jp/article/725141/ 子供たち 2022-09-02 06:23:00
北海道 北海道新聞 原子炉建屋冠水でデブリ取り出し 福島第1原発、東電検討 https://www.hokkaido-np.co.jp/article/725139/ 原子炉建屋 2022-09-02 06:12:54
北海道 北海道新聞 NY株反発、145ドル高 5日ぶり、割安銘柄を物色 https://www.hokkaido-np.co.jp/article/725138/ 銘柄 2022-09-02 06:02:00
ビジネス 東洋経済オンライン ソ連東欧圏を崩壊させたゴルバチョフ氏の君主論 最後の書記長が残したウクライナ問題という火種 | ヨーロッパ | 東洋経済オンライン https://toyokeizai.net/articles/-/615447?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2022-09-02 06:30:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)