投稿時間:2022-12-22 04:23:00 RSSフィード2022-12-22 04:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Application Modernization with AWS Elastic Beanstalk and MongoDB Atlas https://aws.amazon.com/blogs/apn/application-modernization-with-aws-elastic-beanstalk-and-mongodb-atlas/ Application Modernization with AWS Elastic Beanstalk and MongoDB AtlasUsing MongoDB Atlas with AWS Elastic BeanStalk developers can focus on driving innovation and business value instead of managing infrastructure AWS Elastic Beanstalk makes it easier for developers to quickly deploy and manage their applications on AWS Developers can upload their code and Elastic Beanstalk automatically handles the deployment details of auto scaling capacity provisioning load balancing and application health monitoring 2022-12-21 18:44:26
AWS AWS Media Blog System information data and remultiplexing using AWS Elemental Statmux https://aws.amazon.com/blogs/media/system-information-data-and-remultiplexing-using-aws-elemental-statmux/ System information data and remultiplexing using AWS Elemental StatmuxIntroduction Statistical multiplexing statmux is an essential compression technology that allows for efficient high quality distribution of multiple video channels over a fixed bandwidth medium such as satellite cable or over the air transmission To learn more about the basics of statmux refer to our previous blog post on the topic For video distribution workflows it is often necessary … 2022-12-21 18:45:02
AWS AWS Meta and AWS Collaborate on PyTorch Enhancements for AWS Trainium | Amazon Web Services https://www.youtube.com/watch?v=ogAUwo6GsBI Meta and AWS Collaborate on PyTorch Enhancements for AWS Trainium Amazon Web ServicesHear from Aparna Ramani Vice President of AI Data Developer Infrastructure Engineering at Meta and PyTorch Foundation Board Member about Meta s work together with AWS on PyTorch enhancements for AWS purpose built ML chip Trainium The enhancements include native PyTorch support for Trainium powered Trn instances that enables developers to integrate PyTorch with their applications and a new XLA backend to TorchDistributed that makes it easy to migrate models to Trainium instances and leverage the speed of distributed training libraries and models Learn more about Amazon EC Trn Instances at Subscribe More AWS videos More AWS events videos 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 PyTorch Meta AmazonSageMaker AWS AmazonWebServices CloudComputing 2022-12-21 18:23:21
golang Goタグが付けられた新着投稿 - Qiita golang-migrateでmigrateできない時の確認事項【備忘録】 https://qiita.com/Teeca/items/c8aa3e0758ca555fe5a9 epathdbmigrationdatabase 2022-12-22 03:47:48
海外TECH Ars Technica Looking for a new EV? Don’t get suckered by the top-of-the-line model https://arstechnica.com/?p=1906267 powerful 2022-12-21 18:06:05
海外TECH MakeUseOf 8 Simple and Effective Tips to Stay Awake While Working https://www.makeuseof.com/stay-awake-while-working-effective-tips/ energy 2022-12-21 18:31:14
海外TECH MakeUseOf Bring the Spirit of Christmas Alive With These Wonderful Windows Themes https://www.makeuseof.com/windows-christmas-themes/ windows 2022-12-21 18:15:03
海外TECH DEV Community How to Write to Workflow Job Summary from a GitHub Action https://dev.to/cicirello/how-to-write-to-workflow-job-summary-from-a-github-action-23ah How to Write to Workflow Job Summary from a GitHub ActionThis post continues my series on tips for developing GitHub Actions In this post I explain how an Action can write to the workflow job summary so that the users of your Action can find details of the Action formatted with markdown via the Actions tab I start with a simple example of writing to the workflow job summary from a step of a workflow I then explain my approach in writing to the workflow job summary from a GitHub Action implemented in Python Table of Contents How to Write to Job Summary from a Workflow StepHow to Write to Job Summary from a GitHub Action Implemented in PythonWhere You Can Find Me How to Write to Job Summary from a Workflow StepThe GitHub Actions framework provides a straightforward way to write to the job summary of a workflow run which includes support for formatting with Markdown Specifically within the GitHub Actions framework there is an environment variable GITHUB STEP SUMMARY which is a file that corresponds to the job summary Simply append to that file whatever it is that you want to include in the summary for the workflow run Here is a minimal workflow file that does this It is set up to run on workflow dispatch events which means that you can manually run it from the Actions tab of your repository Simply insert the following into a file with the extension yml within your github workflows directory It has a single step that just writes some sample Markdown with a level heading a level heading and a Hello GitHub message name summaryon workflow dispatch jobs summarize runs on ubuntu latest steps name Write to workflow job summary run SUMMARY Testing Job Summary n Second Level Heading nHello GitHub echo SUMMARY gt gt GITHUB STEP SUMMARYInsert this into a file with the extension yml within your github workflows directory Then go to the Actions tab find your workflow and click the Run workflow button After it runs click on the run and you ll find something that looks like the following The above is a screenshot of an actual run of this very workflow How to Write to Job Summary from a GitHub Action Implemented in PythonI maintain several GitHub Actions implemented in Python as container actions One of these jacoco badge generator produces coverage badges from JaCoCo test coverage reports Additionally it outputs the test coverage percentages to the workflow job summary This example is based upon the approach I use in jacoco badge generator First I have a template string that I later use to format the job summary with Markdown markdownSummaryTemplate JaCoCo Test Coverage Summary Coverage Branches Generated by jacoco badge generator Then I have a function that formats and outputs the job summary Make sure that you append to the environment file GITHUB STEP SUMMARY The reason that I check that it exists is that this particular GitHub Action is also designed to be used as a CLI tool outside of GitHub Actions When someone is using it in CLI mode such as on their local system that environment variable won t exist and there also isn t anywhere to actually output this markdown anyway You also need to import os first with import os def add workflow job summary cov branches Adds a job summary Keyword arguments cov Coverage percentage branches Branches coverage percentage if GITHUB STEP SUMMARY in os environ with open os environ GITHUB STEP SUMMARY a as f print markdownSummaryTemplate format cov branches file f Here is a screenshot from an actual run of this Action from one of my other projects that uses it Where You Can Find MeFollow me here on DEV Vincent A CicirelloFollow Researcher and educator in A I algorithms evolutionary computation machine learning and swarm intelligence Follow me on GitHub cicirello cicirello My GitHub Profile Vincent A CicirelloSites where you can find me or my workWeb and social media Software development Publications If you want to generate the equivalent to the above for your own GitHub profile check out the cicirello user statisticianGitHub Action View on GitHubOr visit my website Vincent A Cicirello Professor of Computer Science Vincent A Cicirello Professor of Computer Science at Stockton University is aresearcher in artificial intelligence evolutionary computation swarm intelligence and computational intelligence with a Ph D in Robotics from Carnegie MellonUniversity He is an ACM Senior Member IEEE Senior Member AAAI Life Member EAI Distinguished Member and SIAM Member cicirello org 2022-12-21 18:37:13
海外TECH DEV Community Debugging Strategies and Techniques https://dev.to/roy8/debugging-strategies-and-techniques-59k2 Debugging Strategies and Techniques Debugging ProcessWhen it comes to fixing errors in code the debugging process can be a helpful tool This process involves finding isolating and then correcting the bug In order to do this effectively there are a few strategies and techniques that can be used Some common debugging strategies include using a debugger testing and reviewing code These can be used individually or in combination in order to find and fix the bug In addition there are a few general techniques that can be used when debugging such as checking for syntax errors looking for logic errors and tracing the code By using these strategies and techniques the debugging process can be a helpful tool in finding and correcting errors in code Debuggers are programs that allow you to execute code one line at a time so that you can see what effect each line of code has on the program as a whole This can be helpful for finding bugs because you can narrow down where the bug is occurring by looking at the code surrounding the line that is being executed Testing is another common strategy for debugging This involves running the code with different inputs in order to see what happens This can help to identify bugs because it allows you to see how the code behaves under different conditions Reviewing code is another strategy that can be used for debugging This involves reading through the code and looking for potential errors This can be helpful because it allows you to identify potential problems before they become actual bugs By using these strategies and techniques the debugging process can be a helpful tool in finding and correcting errors in code Types of BugsCoding errors are the most common type of bug and usually occur when there is a typo or a mistake in the syntax of the code These kinds of errors can be easily fixed by simply editing the code and correcting the mistake However design errors can be much more difficult to track down and fix These kinds of errors are usually caused by incorrect assumptions made during the design process and can often lead to unexpected results Logic errors are the hardest to find and usually occur when the code is doing what it is supposed to do but the results are not what was expected These kinds of errors can be very difficult to debug and often require a lot of trial and error to finally figure out what is going wrong Systematic Debugging ApproachesWhen a software developer is faced with a bug the first step is to reproduce the error This can be done by running the program with different inputs or in different environments Once the bug is reproduced the next step is to identify the cause of the error This can be done by looking at the code or by using a debugger Once the cause of the error is found the next step is to fix it This can be done by changing the code or by using a different tool There are many different approaches that can be taken when debugging software The most important thing is to be systematic and to use the right tools for the job By following these steps developers can save time and effort in the long run The bottom line is when it comes to debugging there s no one size fits all solution But with a little trial and error you re sure to find a technique that works for you So go forth and debug with abandon Star our Github repoJoin the discussion in our Discord channelTest your API for free now at BLST 2022-12-21 18:11:55
海外TECH DEV Community Stop being afraid to speak in a foreign language https://dev.to/yuridevat/stop-being-afraid-to-speak-in-a-foreign-language-1484 Stop being afraid to speak in a foreign languageThis week on Tuesday December th I held a talk for the second time It was for the last episode this year on The Monthly Dev event hosted by daily dev StrugglesMy talk was about How to get a job as a developer with soft skills when tech skills are weak Even though I feel very confident with this topic I still struggle when talking about it in English my first language is German Of course I practiced a lot before the event so the vocabulary I am going to use during the talk are at least somewhere in my little brain But when it comes to the Q amp A session afterwards my brain goes blank ‍ Julia AccessibilityFirst ‍Content Creator yuridevat TIL I still lack English skills when it comes to Q amp As Since I can prepare for the presentation my brain has all the words I ll use stored somewhere but where are the words I need for the Q amp A afterwards Where are they hiding in my little brain PM Dec Is that a reason to stop giving talks and creating content in English Never ever That s just the beginningI don t even think about quitting just because I most often fail at the Q amp A Do you know how my English skills have improved over the last years Some background information Middle SchoolAustria Countryside middle school children years old start learning English at school There were groups I was in group the best group of the three But I was also the worst student in this group While other students started to read even books in English I didn t care at all When and why would I ever use that language I was not even able to talk in written German so that people from cities or from Germany could understand me but only in dialect High School y y Austria Countryside start of High School I failed English every year and also the A levels I had to study over every summer while other students were on vacation to take a huge exam on the entire year s content to get into the next class To this day I don t know how I made it to the final exam without repeating a year of school But I did make it And I thought great never English again Then in I moved to the biggest city in Austria Vienna No goal no plans Huh I guess I just played dumb for too long Everything started to changeHow little did I know about the world at that time Moving in with my oldest brother seemed very stressful at first referring to English see next paragraph but after a few years it was the best thing that could have happened to me We were are both movie and series freaks We loved watching them together almost every day With the small difference that my brother watches them all in the original language So what to do Watch alone in German or with my brother which was super fun and we would discuss for hours afterwards and learn some English Fortunately I decided on the latter At first it was very frustrating With subtitles reading everything and so many words I had no idea what they could mean But as the months went on it got better I had to look up a lot fewer words and I even started reading books in the original if that s English Now I could never watch a series or movie if it wasn t in the original language And of course that helped me soooo much when I started learning programming over years later All videos and tutorial in English and I could understand it I started speaking in when I was in Japan for the first time and there was no other way but to communicate in English And since I ve been active in social media since I ve been speaking a lot more coffee chats Twitter Spaces and now talks ConclusionAs you can see I ve come a long way and I m not thinking of giving up on these great accomplishments of the last years It took me way too long to realize how important English would be I could have been so good at it if I had started focusing on it in school Now it is what it is I will practice and keep trying until I feel confident speaking in English even in unprepared situations The joy of being at all these events creating content that could help others is much greater than the fear of making a mistake in English In case you missed the event here s the recording 2022-12-21 18:07:43
海外TECH Engadget Canada plans to enforce an ambitious zero-emission vehicle sales quota by 2026 https://www.engadget.com/canada-zero-emissions-vehicle-sales-mandate-ev-181557036.html?src=rss Canada plans to enforce an ambitious zero emission vehicle sales quota by The Canadian government has announced enforceable quotas for zero emission vehicle sales By a fifth of all new passenger cars trucks and SUVs sold in the country will need to be zero emission models such as electric or hydrogen fuel cell vehicles nbsp We re moving forward with a regulated sales target that requires at least percent of new vehicles sold by to be zero emission increasing that to percent by and percent by Julie Dabrusin parliamentary secretary to the Minister of Environment and Climate Change said at a press conference It s estimated that between and the quotas will lead to Canadians saving almost billion CAD in energy costs The reduction in greenhouse gas emissions will be equivalent to Ontario s entire emissions for three years Currently passenger vehicle emissions account for around percent of Canada s total greenhouse gas emissions While Canada already had zero emission vehicle sales targets those aren t yet enforceable nationwide though some provinces including Quebec and British Columbia have their own mandates The final regulations should be published in According to the Canadian Press importers and manufacturers that don t meet the quotas may be penalized under the Canadian Environmental Protection Act The country will use credits to track vehicle sales There s still some way to go until Canada can meet the proposed sales targets In the first six months of EVs including plug in hybrid models made up percent of new car registrations That was up from percent for all of In British Columbia almost percent of new vehicles registered between January and June were EVs In Quebec and Ontario the proportions were percent and percent respectively In all other provinces EVs accounted for less than four percent of new vehicle sales Infrastructure improvements should help to increase EV adoption as should incentives Dabrusin noted that by federally funded public chargers will be installed across the country She added that Canada has long offered rebates on new zero emission vehicle purchases of up to for individuals and up to for businesses More than Canadians and businesses in the country have benefitted from those incentives which have been renewed The government also plans to invest in EV manufacturing Several automakers have pledged to switch entirely to making EVs and or hydrogen fuel cell vehicles with GM setting a deadline of and Honda aiming to fully make the transition by Some jurisdictions ーsuch as California New York and the UK ーwill ban the sale of gas powered vehicles by “The regulated sales targets for zero emission vehicles announced today will reduce emissions by helping more drivers get behind the wheel of an electric car Anna Kanduth a senior research associate at the Canadian Climate Institute said Right now more than half of Canadians want their next car to be an electric vehicle but they face long wait times with scarce supply going to provinces like British Columbia and Quebec where sales mandates are already in place The federal regulations will help shorten wait times for electric vehicles and plug in hybrids by increasing supply in all provinces and territories 2022-12-21 18:15:57
海外TECH CodeProject Latest Articles A “Natural” Expression Evaluator https://www.codeproject.com/Articles/5350207/A-Natural-Expression-Evaluator calculate 2022-12-21 18:36:00
海外科学 NYT > Science NASA InSight Mars Mission Is Dead After 4 Years Listening for Marsquakes https://www.nytimes.com/2022/12/21/science/nasa-mars-insight-mission.html NASA InSight Mars Mission Is Dead After Years Listening for MarsquakesAfter four years of making important discoveries about the interior of the red planet the stationary lander lost power because of Martian dust covering its solar panels 2022-12-21 18:33:26
海外TECH WIRED 11 Rapid At-Home Covid-19 Tests—and Where to Find Them https://www.wired.com/story/best-rapid-at-home-covid-19-test-kits/ counter 2022-12-21 18:03:00
ニュース BBC News - Home Ex-FTX boss agrees to be extradited to US https://www.bbc.co.uk/news/technology-64051438?at_medium=RSS&at_campaign=KARANGA charges 2022-12-21 18:06:14
ニュース BBC News - Home Strictly's Amy: How body shaming hurts me https://www.bbc.co.uk/news/uk-wales-63961071?at_medium=RSS&at_campaign=KARANGA comments 2022-12-21 18:15:06
ビジネス ダイヤモンド・オンライン - 新着記事 米株「銘柄選別」勢い再び 市場混乱で - WSJ PickUp https://diamond.jp/articles/-/315093 wsjpickup 2022-12-22 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 日本企業「過剰な内部留保」を投資すべき3つの対象、分断が進む世界はチャンス - マーケットフォーカス https://diamond.jp/articles/-/314976 内部留保 2022-12-22 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 3週間の休暇も夢ではない、上司と同僚を説得するコツ - WSJ PickUp https://diamond.jp/articles/-/315092 wsjpickup 2022-12-22 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 ウ侵攻で露呈したロシアの本質、予想される未来は - WSJ PickUp https://diamond.jp/articles/-/315091 wsjpickup 2022-12-22 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 「目薬の参天製薬」も注力、視覚障がい者をサポートする最新技術とは - 消費インサイド https://diamond.jp/articles/-/315056 参天製薬 2022-12-22 03:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 なぜ経営者たちはこぞってジムに通っているのか - マインド・リセット 不安・不満・不可能をプラスに変える思考習慣 https://diamond.jp/articles/-/314635 フリーのインタビュアーとして、経営者や起業家、メダリストなど各界のトップランナー人超に取材してきた上阪徹氏の新著『マインド・リセット』からの一部抜粋で、一流の経営者たちに学ぶ、運動などの効用について解説する。 2022-12-22 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 増加する「Fランク大学」、“ボーダーフリー”時代の大学の選び方 - 2020年代の教育 https://diamond.jp/articles/-/314990 2022-12-22 03:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 メンタルダウンした管理職に、企業はどう向き合い、本人はどうすればよいか - HRオンライン https://diamond.jp/articles/-/314305 2022-12-22 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【池上彰】「学生時代にもっと勉強しておけばよかった」と後悔する社会人のための「学び直し」のコツ - だから、この本。 https://diamond.jp/articles/-/314147 学生時代 2022-12-22 03:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 なぜ三菱地所の50代は全員「年収2300万の部長以上」になれるのか - 「いい会社」はどこにある? https://diamond.jp/articles/-/313600 なぜ三菱地所の代は全員「年収万の部長以上」になれるのか「いい会社」はどこにある「いい会社」はどこにあるのかーもちろん「万人にとっていい会社」など存在しない。 2022-12-22 03:05:00
GCP Cloud Blog Document AI adds three new capabilities to its OCR engine https://cloud.google.com/blog/products/ai-machine-learning/top-reasons-to-use-gcp-document-ai-ocr/ Document AI adds three new capabilities to its OCR engineDocuments are indispensable parts of our professional and personal lives They give us crucial insights that help us become more efficient that organize and optimize information and that even help us to stay competitive But as documents become increasingly complex and as the variety of document types continues to expand it has become increasingly challenging for people and businesses to sift through the ocean of bits and bytes in order to extract actionable insights  This is where Google Cloud s Document AI comes in It is a unified AI powered suite for understanding and organizing documents Document AI consists of Document AI Workbench state of the art custom ML platform Document AI Warehouse managed service with document storage and analytics capabilities and a rich set of pre trained document processors Underpinning these services is the ability to extract text accurately from various types of documents with a world class Document Optical Character Recognition OCR engine Google Cloud s Document AI OCR takes an unstructured document as input and extracts text and layout e g paragraphs lines etc from the document Covering over languages Document AI OCR is powered by state of the art machine learning models developed by Google Cloud and Google Research teams  Today we are pleased to announce three new OCR features in Public Preview that can further enhance your document processing workflows   Assess page level quality of documents with Intelligent Document Quality IDQ  With Document AI OCR Google Cloud customers and partners can programmatically extract key document characteristics word frequency distributions relative positioning of line items dominant language of the input document etc as critical inputs to their downstream business logic Today we are adding another important document assessment signal to this toolbox Intelligent Document Quality IDQ scores  IDQ provides page level quality metrics in the following eight dimensions Blurriness Level of optical noise DarknessFaintnessPresence of smaller than usual fontsDocument getting cut offText spans getting cut offGlares due to lighting conditionsBeing able to discern the optical quality of documents helps assess which documents must be processed differently based on their quality making the overall document processing pipeline more efficient For example Gary Lewis Managing Director of lending and deposit solutions at Jack Henry noted “Google s Document AI technology enriched with Intelligent Document Quality IDQ signals will help businesses to automate the data capture of invoices and payments when sending to our factoring customers for purchasing This creates internal efficiencies reduces risk for the factor lender and gets financing into the hands of cash constrained businesses quickly Overall document quality metrics pave the way for more intelligent routing of documents for downstream analytics The reference workflow below uses document quality scores to split and classify documents before sending them to either the pre built Form Parser in the case of high document quality or a Custom Document Extractor trained specifically on lower quality datasets Process digital PDF documents with confidence with built in digital PDF supportThe PDF format is popular in various business applications such as procurement invoices purchase orders lending W forms paystubs and contracts leasing or mortgage agreements PDF documents can be image based e g a scanned driver s license or digital where you can hover over highlight and copy paste embedded text in a PDF document the same way as you interact with a text file such as Google Doc or Microsoft Word  We are happy to announce digital PDF support in Document AI OCR The digital PDF feature extracts text and symbols exactly as they appear in the source documents therefore making our OCR engine highly performant in complex visual scenarios such as rotated texts extreme font sizes and or styles or partially hidden text   Discussing the importance and prevalence of PDF documents in banking and finance e g bank statements mortgage agreements etc Ritesh Biswas Director Google Cloud Practice at PwC said “The Document AI OCR solution from Google Cloud especially its support for digital PDF input formats has enabled PwC to bring digital transformation to the global financial services industry “Freeze model characteristics with OCR versioningAs a fully managed cloud based service Document AI OCR regularly upgrades the underlying AI ML models to maintain its world class accuracy across over languages and scripts These model upgrades while providing new features and enhancements may occasionally lead to changes in OCR behavior compared to an earlier version  Today we are launching OCR versioning which enables users to pin to a historical OCR model behavior The “frozen model versions in turn give our customers and partners peace of mind ensuring consistent OCR behavior For industries with rigorous compliance requirements this update also helps maintain the same model version thus minimizing the need and effort to recertify stacks between releases According to Jaga Kathirvel Senior Principal Architect at Mr Cooper “Having consistent OCR behavior is mission critical to our business workflows We value Google Cloud s OCR versioning capability that enables our products to pin to a specific OCR version for an extended period of time With OCR versioning you have the full flexibility to select the versioning option that best fits your business needs Getting Started on Document AI OCRLearn more about the new OCR features and tutorials in the Document AI Documentation or try it directly in your browser no coding required For more details on what s new with Document AI don t forget to check out our breakout session from Google Cloud Next 2022-12-21 19: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件)