投稿時間:2023-05-11 03:33:03 RSSフィード2023-05-11 03:00 分まとめ(36件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「Surface Laptop 6」の詳細なスペックが流出?? https://taisy0.com/2023/05/11/171648.html laptoproot 2023-05-10 17:52:04
IT ITmedia 総合記事一覧 [ITmedia News] GoogleのチャットAI「Bard」、日本語に対応 もう使える https://www.itmedia.co.jp/news/articles/2305/11/news093.html itmedianewsgoogle 2023-05-11 02:44:00
IT ITmedia 総合記事一覧 [ITmedia News] Googleが次世代LLM「PaLM 2」発表 プレビュー版を公開 https://www.itmedia.co.jp/news/articles/2305/11/news090.html itmedianewsgoogle 2023-05-11 02:32:00
AWS AWS Explore new UI Enhancements for Amazon Redshift Query Editor v2 | Amazon Web Services https://www.youtube.com/watch?v=oDk-v1kuZTU Explore new UI Enhancements for Amazon Redshift Query Editor v Amazon Web ServicesExplore the new enhancements for Amazon Redshift Query Editor v that allow you to get a more immersive experience with the Query Editor interface Learn more at Subscribe More AWS videos More AWS events videos Do you have technical AWS questions Ask the community of experts on AWS re Post ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster amazonredshift query editor SQL AWS datawarehouse serverless AmazonWebServices CloudComputing 2023-05-10 17:49:23
python Pythonタグが付けられた新着投稿 - Qiita マルチモーダルモデルImageBindに「AWSの構成図?Azureの構成図?」を判定させてみた https://qiita.com/sakue_103/items/6260812fbc826763ffb4 azure 2023-05-11 02:48:28
AWS AWSタグが付けられた新着投稿 - Qiita マルチモーダルモデルImageBindに「AWSの構成図?Azureの構成図?」を判定させてみた https://qiita.com/sakue_103/items/6260812fbc826763ffb4 azure 2023-05-11 02:48:28
Ruby Railsタグが付けられた新着投稿 - Qiita 【未経験】Rails7でChat GPTを導入した練習用アプリを作成してみた https://qiita.com/miyu-40/items/53c8dda39a254dbfe29f chatgpt 2023-05-11 02:34:01
海外TECH DEV Community Typescript: Interface https://dev.to/j471n/typescript-interface-3748 Typescript InterfaceIn this article you ll learn about what interface are and how to use them along with the difference between type and interface This article gives you a basic understanding of the interface This is going to be a full series of typescript where you will learn from basic topics like string boolean to more complex like Type Aliases enums Interface generics and etc Table of ContentsInterfaceInterface vs TypeAdding new fieldsExtendsUnion InterfaceAn interface declaration is another way to name an object type You can create it by using the interface keyword interface User name string age number CORRECTlet newUser User name John age ERROR property age is missinglet newUser User name John ERROR missing the following properties from type User name age let newUser User You can also use readonly and optional approach in interface interface User readonly id number readonly variable name string age number specialKey string optional You can also pass functions to the interface there are two ways to do that Method interface User getDiscount coupon string number For Both you need to call this like this const newUser User getDiscount coupon KIJDDJ gt return Method interface User getDiscount coupon string gt number You see I have changed the coupon to couponName You don t need to match the name of the parameter here It will take care of itconst newUser User getDiscount couponName KIJDDJ gt return In Method you can simply use the to say it functions like getDiscount number and string are the return types and it takes no arguments In Method we use an arrow function like getDiscount gt number Interface vs TypeType aliases and interfaces are very similar and in many cases you can choose between them freely Almost all features of an interface are available in type The key distinction is that a type cannot be reopened to add new properties vs an interface that is always extendable Let s Differentiate them with a few examples Adding new fieldsIn interface you can add new fields to the existing interface but you cannot add new fields to an existing type It will throw an error Interfaceinterface User id string email string interface User name string Now you can add all the three values to the User interfaceconst user User id email foo email com name Foo Typetype User id string type User email string ERROR Duplicate identifier User In interface you can add new fields and change them however you want but in type you can t do that Once a type is created it can t be changed ExtendsTo extend the already defined interface or type both have a different approach interface uses extends keyword while type uses intersection interfaceinterface Car model string color string You can extend an interface using extends keywordsinterface Tesla extends Car autoPilotModelName string Use Caseconst newCar Tesla model S color red autoPilotModelName xyz typetype Car model string color string In type you need to use Intersectiontype Tesla Car amp autoPilotModelName string const newCar Tesla model S color red autoPilotModelName xyz UnionIn interface you cannot create a union type but you can do that if you are using type Let s take an example interfaceinterface User email string interface Admin email string adminKey string ERROR expected interface Person User Admin CORRECT you can create union type like thistype Person User Admin CORRECT However you can use union type inside the interfaceinterface Person person User Admin typetype User email string type Admin email string adminKey string You can do that type Person User Admin In the above example you might have noticed that when I tried to assign a union type to the interface interface Person User Admin it threw an error It s because you cannot assign anything to interface Its deceleration syntax is similar to class But both have different working styles class MyClass interface Hello Wrapping upIn this article I have explained what interface is and how to use it along with the difference between type and interface This article gives you a basic understanding of the interface This is a series of Typescript lessons that will help you learn Typescript from scratch If you enjoyed this article then don t forget to give ️and bookmark ️for later use and if you have any questions or feedback then don t hesitate to drop them in the comments below I ll see you in the next one Connect with meTwitterGitHubLinkedInInstagramWebsiteNewsletterBuy me a coffee 2023-05-10 17:10:52
海外TECH DEV Community How to Write a Good Issue: Tips for Effective Communication in Open Source https://dev.to/opensauced/how-to-write-a-good-issue-tips-for-effective-communication-in-open-source-5443 How to Write a Good Issue Tips for Effective Communication in Open SourceThree years ago I maintained my first open source project for Hacktoberfest As a first time maintainer I underestimated the time and effort it would take to write good issues for my contributors What I also learned that year was that writing issues is an important form of communication and as a contributor it can be a valuable skill to develop to create relationships and support maintainers If you re trying to get involved in open source one way to get started is by writing issues that report bugs request features or suggest improvements Understanding the Purpose of the IssueIssues are often a starting point for communication It s an opportunity to communicate with maintainers or for maintainers to communicate needs to contributors There s usually one main idea per issue with an explanation For example a bug report would address one bug A feature request would outline one feature Elements of a Good IssueA good issue should have several key elements that help to clearly and concisely communicate the problem or suggestion These elements include Clear and concise title The title should describe the issue in a way that is easy to understand Detailed description The description should include a detailed explanation of the issue It s important to use clear and concise language be specific avoid assumptions avoid vague or ambiguous language and be respectful and professional Lastly provide additional information as needed to clarify the issue Visuals Screenshots gifs videos or other visuals can be helpful in illustrating the problem Contextual information Provide any additional information about the environment or system affected by the issue Proposed solution If you have an idea for how to address the issue include it in your issue Elements of a Good Bug ReportFor bug reports you should generally also include the following information Steps to reproduce the bugYour work environment operating system etc The browser you re usingAny applicable screenshots video reproduction code or context Elements of a Good Feature RequestFor feature requests you need to help the maintainer understand why the feature is important You should generally include the following information Type of feature docs refactor style code feature etc The current state of the application and the solution you suggest with your featureAny additional context of information including alternatives you ve considered Issue templatesSome repositories will use issue templates to help guide you through writing an issue For example at OpenSauced we have templates for bug reports and feature requests shown below Templates help to ensure the maintainer gets all the information they need to communicate with contributors If there are templates it s important to use them rather than start with a blank issue Example WalkthroughSometimes the best way to learn is by looking at examples so we re going to walk through this Remix issue from Nick Taylor We ll go through each element of a good issue and bug report Clear and concise titleTypeError Body is unusable when using Remix experimental netlify edge Actions Detailed description amp Steps to reproduce the bugIn the issue Nick covers some key steps What version of Remix he s usingSteps to Reproduce including a numbered list code snippets screenshots and a link to a Discord discussion with more context Expected behaviorActual behavior with a screenshot of the error message VisualsWithin the description of the issue there s a screenshot of what it looks like when it runs locally and an image of how it would look in Postman Proposed solutionAlthough the initial issue doesn t include a proposed solution Nick explores what s happening and maintains communication in the comments As part of the investigation he created a repository to help the maintainers check it out and shared his approach in his comment Work EnvironmentNick shares the version of Remix the versions of Node he tried and includes that the Netlify CLI was installed ConversationNick didn t end the issue with the bug report If you scroll beyond the issue you ll see that he continued the conversation referencing a conversation in the organization Discord and his investigation into the bug and solutions He makes updates as he finds more information providing code snippets for contextualization and tags maintainers as part of the conversation as well as others who have contributed Best of all he supports the team member who helped with the fix Writing good issues is an important part of effective communication both in how you construct the issue and how you communicate once the issue has been opened It s a great way to demonstrate your communication and investigation skills And if you re trying to get into open source remember good first issues don t exist unless you make them yourself 2023-05-10 17:00:39
海外TECH Engadget Watch Google’s I/O keynote here at 1PM ET https://www.engadget.com/watch-googles-io-keynote-here-at-1pm-et-160030971.html?src=rss Watch Google s I O keynote here at PM ETIt s Google I O time which means the company is about to host a keynote that will likely be packed with announcements and updates We ll be covering all the news as it happens on our liveblog and Google I O hub but you can watch the event in full below The livestream starts at PM ET In terms of what to expect from the keynote one thing that s for certain is we ll get more official details on Google s first foldable phone The company finally announced the Pixel Fold last week after months of leaks and rumors More information on Android is also a dead cert Get ready to hear the term quot AI quot a lot too as Google is widely expected to make a ton of announcements on that front perhaps including updates on its Bard AI chatbot Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:54:46
海外TECH Engadget Google adds more context and AI-generated photos to image search https://www.engadget.com/generative-ai-google-image-search-context-175311217.html?src=rss Google adds more context and AI generated photos to image searchGoogle announced new features to its image search function to make it easier to spot altered content the company announced at Google I O on Wednesday Photos on the search engine will soon include an quot about this image quot option that tells users when the image and ones like it were first indexed by Google where it may have appeared first and other places the image has been posted online That information could help users figure out whether something they re seeing was generated by AI according to Google nbsp The new feature will show up by clicking the three dots on an image in Google Image results Google did not say exactly when the new feature will be available besides that it ll be first available in the United States in the quot coming months quot Vice president of search Cathy Edwards told Engadget that the tool doesn t currently tell you if an image has been edited or manipulated though the company is researching effective ways of detecting such tweaks Meanwhile Google also began rolling out images generated by AI Those images will include a markup in the original file to add context about its creation wherever its used Image publishers like Midjourney and Shutterstock will also include the markup Google s efforts to clarify to users where its search results come from started earlier this year with efforts like quot About this result quot This is a developing story Please check back for updates Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:53:11
海外TECH Engadget Google's Search Labs lets you test its AI-powered 'products and ideas' https://www.engadget.com/googles-search-labs-lets-you-test-its-ai-powered-products-and-ideas-175254478.html?src=rss Google x s Search Labs lets you test its AI powered x products and ideas x It s fair to say that Google was caught flat footed by Microsoft s launch of Bing search powered by ChatGPT as it didn t have anything similar when it unveiled its own conversational AI Bard Now Google has announced Search Labs a new way for consumers to test quot bold new ideas and ideas we re exploring quot in search the company said at its IO conference There are three key features available for a limited time The first is called Search Generative Experience SGE bringing generative AI directly into Google Search quot The new Search experience helps you quickly find and make sense of information quot Google s Direct of Search wrote quot As you search you can get the gist of a topic with AI powered overviews pointers to explore more and ways to naturally follow up quot GoogleAlso available from the Search prompt are Code Tips that use large language models to provide snippets and quot pointers for writing code faster and smarter quot according to Google You can get reponses about languages including Java Go Python Javascript C Kotlin shell Docker and Git nbsp Finally quot Add to Sheets quot lets you insert search results directly into a spreadsheet For example if you re planning a vacation on a Sheets document you can easily add a link straight from Google Search nbsp Google s Bard could potentially improve all of Google s products ranging from Maps to Drive Search however is the company s core function and principal moneymaker and was one of the first things it mentioned when announcing Bard To that end it ll be very interesting to see how it compares with what Microsoft s ChatGPT powered Bing can do Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:52:54
海外TECH Engadget Google Search's new Perspectives tab will highlight forum and social media posts https://www.engadget.com/google-searchs-new-perspectives-tab-will-highlight-forum-and-social-media-posts-175209372.html?src=rss Google Search x s new Perspectives tab will highlight forum and social media postsSearch is a quarter century since its launch arguably still Google s most impactful and familiar creation ーa way in this day and age to sort through the chafe of unsourced nonsense on Twitter or Facebook and hopefully finding vetted trusted information quickly With that context it mind Google announced an absolutely puzzling new feature today for its flagship product at its IO conference the Perspectives tab nbsp Perspectives according to the company is a means to exclusively see long and short form videos images and written posts that people have shared on discussion boards Q amp A sites and social media platforms In addition to the Perspectives tab a carousel of the same results may appear in some search results ーa standalone module graphically resembling the Top Stories module nbsp In its announcement Google mentioned the Perspectives initiative is happening in tandem with its quest to transform search through AI What role AI will play in sourcing content for Perspectives is still unknown but automating content selection and providing a sheen of authenticity to it has had its hiccups for Google in the past The Popular On Twitter module has surfaced misinformation about breaking news events like mass shootings in the past and it s nearly certain Perspectives will hit many of the same snags Google was also among the tech companies grilled by Congress in over its role in the spread of fake news an issue which again Perspectives seems poised to exacerbate nbsp nbsp This shift towards potentially dubious sources seems to not simply be the result of trawling forums and tweets for a new glut of hits for search results but a considered strategy away from legacy sources of information The company claims Perspectives will coincide with changes in how we rank results in Search overall with a greater focus on content with unique expertise and experience Has anyone at Google been on a forum or social media website Unique expertise is almost universally in short supply nbsp Perspectives launches in the coming weeks God help us all nbsp Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:52:09
海外TECH Engadget Google Search Generative Experience preview: A familiar, yet different approach https://www.engadget.com/google-search-generative-experience-preview-a-familiar-yet-different-approach-175156245.html?src=rss Google Search Generative Experience preview A familiar yet different approachKnowingly or unknowingly Microsoft kicked off a race to integrate generative AI into search engines when it introduced Bing AI in February Google seemingly rushed into an announcement just a day before Microsoft s launch event telling the world its generative AI chatbot would be called Bard Since then Google has opened up access to its ChatGPT and Bing AI rival but while Microsoft s offering has been embedded into its search and browser products Bard remains a separate chatbot That doesn t mean Google hasn t been busy with generative AI It s infused basically all of its products with the stuff while leaving Search largely untouched That is until now At its I O developer conference today the company unveiled the Search Generative Experience SGE as part of the new experimental Search Labs platform Users can sign up to test new projects and SGE is one of three available at launch I checked out a demo of SGE during a briefing with Google s vice president of Search and while it has some obvious similarities to Bing AI there are notable differences as well For one thing SGE doesn t look too different from your standard Google Search at first glance The input bar is still the same whereas Bing s is larger and more like a compose box on Twitter But the results page is where I first saw something new Near the top of the page just below the search bar but above all other results is a shaded section showing what the generative AI found Google calls this the AI powered snapshot containing “key information to consider with links to dig deeper At the top of this snapshot is a note reminding you that “Generative AI is experimental followed by answers to your question that SGE found from multiple sources online On the top right is a button for you to expand the snapshot as well as cards that show the articles from which the answers were drawn GoogleI asked Edwards to help me search for fun things to do in Frankfurt Germany as well as the best yoga poses for lower back pain The typical search results showed up pretty much instantly though the snapshot area showed a loading animation while the AI compiled its findings After a few seconds I saw a list of suggestions for the former including Palmengarten and Romerburg But when Edwards clicked the expand button the snapshot opened up and revealed more questions that SGE thought might be relevant along with answers These included “is Frankfurt worth visiting and “is three days enough to visit Frankfurt and the results for each included source articles My second question yielded more interesting findings Not only did SGE show a list of suggested poses expanding the answers brought up pictures in the source articles that gave a better idea of how to perform each one Below the list was a suggestion to avoid yoga “if you have certain back problems such as a spinal fracture or a herniated disc Further down in the snapshot there was also a list of poses to avoid if you have lower back pain Importantly the very bottom of the snapshot included a note saying “This is for informational purposes only The information does not constitute medical advice or diagnosis Edwards said this is one of the safety features built into SGE where the disclaimer shows up on sensitive topics that could affect a person s health or financial decisions In addition the snapshot doesn t appear at all when Google s algorithms detect that a query has to do with topics like self harm domestic violence or mental health crises What you ll see in those situations is the standard notice about how and where to get help GoogleBased on my brief and limited preview SGE seemed at once similar and different to Bing AI When citing its sources for example SGE doesn t show inline notations with footnotes linking to each article Instead it shows cards on the right or below each section similar to how the cards on news results look Both Google and Microsoft s layouts offer conversational views with suggested follow up prompts at the end of each response But SGE doesn t have an input bar at the bottom and the search bar remains up top outside of the snapshot This makes it seem less like talking to a chatbot than Bing AI Google didn t say it set out to build a conversational experience though It said “With new generative AI capabilities in Search we re now taking more of the work out of searching Instead of your having to do multiple searches to get at a specific answer or itinerary or process you can just bundle your parameters into one query like “What s better for a family with kids under and a dog Bryce Canyon or Arches The good news is that when you use the suggested responses in the snapshot you can go into a new conversational mode Here “context will be carried over from question to question according to a press release You ll also be able to ask Google for help buying things online and Edwards said the company sees billion updates to its product listings every hour helping keep information about supply and prices fresh and accurate And since it s Google after all and Google relies heavily on ads to make money SGE will also feature dedicated ad spaces throughout the page Google also said it would remain committed to making sure ads are distinguishable from organic search results You can sign up to test the new SGE in Search Labs The experiment will be available to all in the coming weeks starting in the US in English Look for Labs Icon in the Google App or Chrome desktop and visit labs google com search for more info This article originally appeared on Engadget at 2023-05-10 17:51:56
海外TECH Engadget Google I/O 2023 live updates: Pixel Fold, Bard AI, Android 14 and more https://www.engadget.com/live-updates-from-google-io-2023-163201853.html?src=rss Google I O live updates Pixel Fold Bard AI Android and moreGoogle is hosting its first full on in person I O developer conference since the pandemic and we expect the company to announce a biblical amount of news at breakneck pace Engadget is here at the show and will bring you a liveblog of what s happening at the keynote as it happens The show kicks off at pm ET today and we ll be starting our commentary as early as noon Keep your browser open here for our coverage of everything from Mountain View CA today This article originally appeared on Engadget at 2023-05-10 17:43:19
海外TECH Engadget Google’s Duet AI brings more generative features to Workspace apps https://www.engadget.com/googles-duet-ai-brings-more-generative-features-to-workspace-apps-173944737.html?src=rss Google s Duet AI brings more generative features to Workspace appsAfter OpenAI s ChatGPT caught the tech world off guard late last year Google reportedly declared a “code red scrambling to plan a response to the new threat The first fruit of that reorientation trickled out earlier this year with its Bard chatbot and some generative AI features baked into Google Workspace apps Today at Google I O we finally see a more fleshed out picture of how the company views AI s role in its cloud based productivity suite Google Duet AI is the company s branding for its collection of AI tools across Workspace apps Like Microsoft Copilot for Office apps Duet AI is an umbrella term for a growing list of generative AI features across Google Workspace apps The industry seems to have settled on marketing language depicting generative AI as your workplace ally First the Gmail mobile app will now draft full replies to your emails based on a prompt in a new “Help me write feature In addition the mobile Gmail app will soon add contextual assistance “allowing you to create professional replies that automatically fill in names and other relevant information GoogleDuet AI also makes an appearance in Google Slides Here it takes the form of image generation for your presentations Like Midjourney or DALL E Duet AI can now turn simple text prompts entered into the Duet AI “Sidekick side panel into AI generated images to enhance Slides presentations It could help save you the trouble of scouring the internet for the right slide image while spicing them up with something original In Google Sheets Duet AI can understand the context of a cell s data and label it accordingly The spreadsheet app also adds a new “help me organize feature to create custom plans describe what you want to do in plain language and Duet AI will outline strategies and steps to accomplish it “Whether you re an event team planning an annual sales conference or a manager coordinating a team offsite Duet AI helps you create organized plans with tools that give you a running start the company said GoogleMeanwhile Duet AI in Google Meet can generate custom background images for video calls with a text prompt Google says the feature can help users “express themselves and deepen connections during video calls while protecting the privacy of their surroundings Like the Slides image generation Duet s Google Meet integration could be a shortcut to save you from searching for an image that conveys the right ambiance for your meeting while hiding any unwanted objects or bystanders behind you Duet also adds an “assisted writing experience in Google Docs smart canvas Entering a prompt describing what you want to write about will generate a Docs draft The feature also works in Docs smart chips automatic suggestions and info about things like documents and people mentioned in a project Additionally Google is upgrading Docs built in Grammarly style tools A new proofread suggestion pane will offer tips about concise writing avoiding repetition and using a more formal or active voice The company adds that you can easily toggle the feature when you don t want it to nag you about grammar Initially you ll have to sign up for a waitlist to try the new Duet AI Workspace features Google says you can enter your info here to be notified as it opens the generative AI features to more users and regions “in the weeks ahead This is a developing story Please check back for updates Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:39:44
海外TECH Engadget Google's Bard AI is now available without a waitlist in 180 countries https://www.engadget.com/google-bard-transitions-to-palm-2-and-expands-to-180-countries-172908926.html?src=rss Google x s Bard AI is now available without a waitlist in countriesFor the past two months anybody wanting to try out Google s new chatbot AI Bard had to first register their interest and join a waitlist before being granted access On Wednesday the company announced that those days are over Bard will immediately be dropping the waitlist requirement as it expands to additional countries and territories What s more this expanded Bard will be built atop Google s newest Large Language Model PaLM making it more capable than ever before Google hurriedly released the first generation Bard back in February after OpenAI s ChatGPT came out of nowhere and began eating the industry s collective lunch like Gulliver in a Lilliputian cafeteria Matters were made worse when Bard s initial performances proved less than impressive ーespecially given Google s generally accepted status at the forefront of AI development ーwhich hurt both Google s public image and its bottom line In the intervening months the company has worked to further develop PaLM the language model that essentially powers Bard allowing it to produce better quality and higher fidelity responses as well as perform new tasks like generating programming code nbsp As Google executives announced at the company s I O keynote on Wednesday Bard has been switched over to then new PaLM platform As such users can expect a bevy of new features and functions to roll out in the coming days and weeks Features like a higher degree of visual responses to your queries so when you ask for quot must see sights quot in New Orleans you ll be presented with images of the sites you d see more than just a bullet list or text based description Conversely users will be able to more easily input images to Bard alongside their written queries bringing Google Lens capabilities to Bard Even as Google mixes and matches AI capabilities amongst its products ー new offerings running on PaLM are being announced today alone ーthe company is looking to ally with other industry leaders to further augment Bard s abilities Google announced on Wednesday that it is partnering with Adobe to bring its Firefly generative AI to Bard as a means to counter Microsoft s BingChat DallE offering Finally Google shared that it will be implementing a number of changes and updates in response to feedback received from the community since launch Clicking on a line of generated code or chatbot answer and Bard will provide a link to that specific bit s source There will be a new Dark theme And the company is working to add an export feature so that users can easily run generated programming code on Replit or toss their generated works into Docs or Gmail nbsp Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:29:08
海外TECH Engadget Google is incorporating Adobe's Firefly AI image generator into Bard https://www.engadget.com/google-is-incorporating-adobes-firefly-ai-image-generator-into-bard-174525371.html?src=rss Google is incorporating Adobe x s Firefly AI image generator into BardBack in March Adobe announced that it too would be jumping into the generative AI pool alongside the likes of Google Meta Microsoft and other tech industry heavyweights with the release of Adobe Firefly a suite of AI features Available across Adobe s product lineup including Photoshop After Effects and Premiere Pro Firefly is designed to eliminate much of the drudge work associated with modern photo and video editing On Wednesday Adobe and Google jointly announced during the I O event that both Firefly and the Express graphics suite will soon be incorporated into Bard allowing users to generate edit and share AI images directly from the chatbot s command line According to a release from the company users will be able to generate an image with Firefly then edit and modify it using Adobe Express assets fonts and templates within the Bard platform directly ーeven post to social media once it s ready Those generated images will reportedly be of the same high quality that Firefly beta users are already accustomed to as they are all being created from the same database of Adobe Stock images openly licensed and public domain content nbsp Additionally Google and Adobe will leverage the latter s existing Content Authenticity Initiative to mitigate some of the threats to creators that generative AI poses This includes a quot do not train quot list which will preclude a piece of art s inclusion in Firefly s training data as well as persistent tags that will tell future viewers whether or not a work was generated and what model was used to make it Bard users can expect to see the new features begin rolling out in the coming weeks ahead of a wider release Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:28:57
海外TECH Engadget Google Photos will use generative AI to straight-up change your images https://www.engadget.com/google-photos-will-use-generative-ai-to-straight-up-change-your-images-171014939.html?src=rss Google Photos will use generative AI to straight up change your imagesGoogle is stuffing generative AI into seemingly all its products and that now includes the photo app on your phone The company has previewed an quot experimental quot Magic Editor tool in Google Photos that can not only fix photos but outright change them to create the shot you wanted all along You can move and resize subjects stretch objects such as the bench above remove an unwanted bag strap or even replace an overcast sky with a sunnier version Magic Editor will be available in early form to quot select quot Pixel phones later this year Google says The tech giant warns that output might be flawed and that it will use feedback to improve the technology Google is no stranger to AI based image editing Magic Eraser already lets you remove unwanted subjects while Photo Unblur resharpens jittery pictures Magic Editor however takes things a step further The technology adds content that was never there and effectively lets you retake snapshots that were less than perfectly composed You can manipulate shots with editors like Adobe s Photoshop of course but this is both easier and included in your phone s photo management app The addition may be helpful for salvaging photos that would otherwise be unusable However it also adds to the list of ethical questions surrounding generative AI Google Photos experiment will make it relatively simple to present a version of events that never existed It may be that much harder to trust someone s social media snaps even though they re not entirely fake Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:10:14
海外TECH Engadget Google Maps is expanding Immersive View to routes https://www.engadget.com/google-maps-is-expanding-immersive-view-to-routes-170618016.html?src=rss Google Maps is expanding Immersive View to routesGoogle Maps is expanding the Immersive View format it revealed last year to an important part of the app routes When you look for directions in Google Maps on iOS and Android in select cities you ll see a more detailed view of the route The feature isn t just about making your journey look nicer than a bold line tracing the steps from point A to B and maybe C The idea is to bring all of the key information that you may need about the trip into a single place You ll see details on traffic weather air quality bike lanes and where to find nearby parking If you re planning a journey ahead of time and the weather is expected to be foggy or rainy you ll see that in the visualization Google is also using a blend of AI real time data and long term trends to give you a sense of how busy traffic might be by displaying a certain number of vehicles on the virtual roads From Street View ️New Immersive View for routes in GoogleMaps ↓ GoogleIOpic twitter com CMdRhwmーGoogle Google May Ahead of Google I O Miriam Daniel Vice President of Google Maps Experiences told Engadget that the team was focusing on the above ground parts of the journey for now So don t expect the visualizations to include your subway trips quite yet Still given that Google Maps users look up around billion kilometers worth of directions per day Immersive View for Routes could come in handy for many folks Google plans to roll out Immersive View for Routes in cities by the end of the year In the coming months you ll be able to check it out in Amsterdam Berlin Dublin Florence Las Vegas London Los Angeles New York Miami Paris Seattle San Francisco San Jose Tokyo and Venice Immersive View uses AI and computer vision to blend together billions of aerial and Street View images to create D models of spaces Google announced the feature at I O last year and started rolling it out more broadly in February Elsewhere Google has some Maps related updates for developers I O is the company s annual developer conference after all The Google Maps Platform is offering a preview of an Aerial View API for locations in the US starting today Developers can use this to add quot a pre packaged birds eye view video quot of a location to their apps or websites Some of Google s partners are testing out the API including Rent which is using it to offer potential renters a more expansive look at a property and the surrounding area That could give folks a clearer idea of the location where they may end up living before they visit an apartment in person Meanwhile Google is adding Photorealistic D Tiles to the Map Tiles API on an experimental basis starting today This grants developers access to the high resolution D imagery that powers Google Earth It could make it easier for folks to create their own D maps Google suggests that a tourism company might use the tiles to build interactive and immersive maps for guided tours or to show off the most striking features of a national park Follow all of the news from Google I O right here This article originally appeared on Engadget at 2023-05-10 17:06:18
海外科学 NYT > Science F.D.A. Advisers Say Benefits of Over-the-Counter Birth Control Pill Outweigh Risks https://www.nytimes.com/2023/05/10/health/fda-otc-birth-control-pill.html F D A Advisers Say Benefits of Over the Counter Birth Control Pill Outweigh RisksThe agency is expected to decide this summer whether to allow the first nonprescription sales of an oral contraceptive in the United States 2023-05-10 17:21:21
ニュース BBC News - Home Harry blames press intrusion for Chelsy break-up https://www.bbc.co.uk/news/uk-65550021?at_medium=RSS&at_campaign=KARANGA royal 2023-05-10 17:28:51
ニュース BBC News - Home Brexit: Ministers to ditch deadline to scrap retained EU laws https://www.bbc.co.uk/news/uk-politics-65546319?at_medium=RSS&at_campaign=KARANGA important 2023-05-10 17:13:48
ニュース BBC News - Home Major incident declared as flooding hits southern England https://www.bbc.co.uk/news/uk-england-somerset-65542510?at_medium=RSS&at_campaign=KARANGA torrential 2023-05-10 17:20:06
ニュース BBC News - Home Imran Khan: Why was the former Pakistan PM arrested? https://www.bbc.co.uk/news/world-asia-65541518?at_medium=RSS&at_campaign=KARANGA pakistan 2023-05-10 17:31:41
ニュース BBC News - Home Israel and Gaza militants in heaviest fighting for months https://www.bbc.co.uk/news/world-middle-east-65544214?at_medium=RSS&at_campaign=KARANGA islamic 2023-05-10 17:38:17
ニュース BBC News - Home Plaid Cymru leader's future in doubt after bullying review https://www.bbc.co.uk/news/uk-wales-politics-65540930?at_medium=RSS&at_campaign=KARANGA price 2023-05-10 17:12:41
ニュース BBC News - Home Groves wins as Cavendish crashes over line - after dog chaos https://www.bbc.co.uk/sport/cycling/65548695?at_medium=RSS&at_campaign=KARANGA crashes 2023-05-10 17:46:40
ビジネス ダイヤモンド・オンライン - 新着記事 上智? ICU? 2つの人気大学のキャンパス環境はどう違う?【各キャンパス紹介付き】 - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/322679 2023-05-11 02:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 職場の空気を良くする人がメールに「ちょい足し」している一言とは? - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/322680 2023-05-11 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【全米調査で判明】「成功する人」と「ずっと並の人」を分ける1つの意外な能力 - 定番読書 https://diamond.jp/articles/-/322427 違い 2023-05-11 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 臨床心理士がすすめる絵本 知らない人も多いけど「極上の3冊」【書籍オンライン編集部セレクション】 - 子どもが幸せになることば https://diamond.jp/articles/-/322521 臨床心理士 2023-05-11 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【まんが】「寝ても疲れが取れない」には理由がある。朝から疲れる人が「やってはいけない!」と「一番必要なこと」<心理カウンセラーが教える> - あなたはもう、自分のために生きていい https://diamond.jp/articles/-/322536 twitter 2023-05-11 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 米下院、ロシアにWSJ記者釈放求める決議案採択を検討 - WSJ発 https://diamond.jp/articles/-/322734 釈放 2023-05-11 02:14:00
ビジネス ダイヤモンド・オンライン - 新着記事 マイクロソフト、核融合の電力購入で合意 - WSJ発 https://diamond.jp/articles/-/322735 電力 2023-05-11 02:05:00
GCP Cloud Blog The latest on maps customization https://cloud.google.com/blog/products/maps-platform/latest-maps-customization/ The latest on maps customizationEditor s Note This post is part of our Google I O series sharing the latest Google Maps Platform news from our annual developer conference To learn more about our maps customization products join our I O session when it premieres at p m PT One of the top requests we get from our community is for more advanced marker and styling capabilities Today we re launching the Preview release of data driven styling for geospatial datasets for the Maps JavaScript API Now you can import store and manage your geospatial data server side in the Google Cloud console You can also visualize and style your geospatial data as points lines and polygons on a map We re also making data driven styling for boundaries and advanced markers the latest cloud based maps styling features generally available for the Maps JavaScript API  Import visualize and style your geospatial data with data driven styling for datasetsTo date you ve had to manage and store large datasets client side to visualize your geospatial data This led to higher infrastructure costs and the need to pre process the data before displaying it Adding geospatial datasets via custom overlays also results in slower map performance and lag in loading of data as the user pans and zooms across the map With data driven styling for datasets you can now easily style and visualize your geospatial data in GeoJSON CSV and KML formats as points lines and polygons on a map This makes it easier to create interactive and insightful visual experiences that provide more context for your users You can use the new Maps Datasets API to import store and manage your geospatial data server side via the Google Cloud console to help lower infrastructure costs manage data access and update your geospatial data anytime anywhere  To learn more about data driven styling for datasets visit our documentation or our demo Trees in Seattle styled as points on a mapOur clients usually have to manage a lot of geospatial data which is difficult to handle and requires special technical knowledge Data driven styling for datasets and the Maps Datasets API makes this process easier It allows our clients to manage display and style complex geospatial data without the expensive infrastructure or custom code This results in cost savings and a better experience for their users Martin Kleppe Co founder of Ubilabs Google Maps Platform PartnerVisualize insights with less effortData driven styling for boundaries gives you the ability to build maps with the same boundaries and polygons used in Google Maps Since the Preview launch of data driven styling for boundaries you ve used it to enable a wide range of use cases across industries including real estate travel government healthcare education and more  To learn more about data driven styling for boundaries visit our documentation or demo Realtors Property Resource RPR a U S based data platform built for real estate agents uses data driven styling to help agents easily visualize market trends on a map so they can better serve homebuyers RPR uses data driven styling to provide a clear view of market trendsREALTORScommit to finding the right property for homebuyers so a clear view of market trends on a map is invaluable With data driven styling REALTORScan now easily search and visualize market trends on a map which helps them serve their clients better Our nationwide real estate database enhanced with data driven styling produces powerful insights with minimal effort We plan to continue expanding our use of data driven styling to further enrich our maps Janine Sieja SVP Product Realtors Property ResourceEasily create customized markersWith advanced markers you can easily ​​create customized more performant markers Since we launched in Preview we ve seen customers across industries use advanced markers to create customized experiences showcasing their brand displaying crucial logistics information and more  To learn more about advanced markers check out the documentation and demo Rocket EntertainmentRocket Entertainment used advanced markers and the new Aerial View API to create an immersive L A map experience celebrating Elton John s final North American tour Elton John s L A map experience using advanced markersWe wanted to create an immersive experience that would let Elton share his connection to Los Angeles with his fans Using Google Maps Platform we were able to style the basemap add advanced markers and use WebGL powered map features to truly make the map match the visual design of our broader L A experience The result is one we know Elton s fans will love Rory Newton Dunn Head of Digital Rocket Entertainment FrappFrapp a cloud based marketplace that simplifies international over the road shipping uses advanced markers to display important information about their trucking partners Frapp uses advanced markers to display important information about their trucking partnersGoogle Maps Platform stood out as the best geospatial provider for Frapp due to its ease of use and reliability We use advanced markers to display important information about our trucking partners and marker clustering to manage large data volumes With previous mapping solutions customization and data management was a challenge Advanced markers improved our user experience and streamlined our workflow resulting in increased engagement Alvaro Garrido IT Director FrTechGet started with data driven styling and advanced markersData driven styling and advanced markers are the latest cloud based maps styling features included with Dynamic Maps for the Maps JavaScript API To learn more about how to create customized map visualization experiences using these new capabilities watch our I O session Stay tuned for the extension of advanced markers and data driven styling into native Android and iOS apps to address on the go use cases Our team is eager to see what new possibilities these features open up for styling your maps 2023-05-10 18:00: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件)