投稿時間:2023-03-02 01:20:28 RSSフィード2023-03-02 01:00 分まとめ(25件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Machine Learning Blog Simplify continuous learning of Amazon Comprehend custom models using Comprehend flywheel https://aws.amazon.com/blogs/machine-learning/simplify-continuous-learning-of-amazon-comprehend-custom-models-using-comprehend-flywheel/ Simplify continuous learning of Amazon Comprehend custom models using Comprehend flywheelAmazon Comprehend is a managed AI service that uses natural language processing NLP with ready made intelligence to extract insights about the content of documents It develops insights by recognizing the entities key phrases language sentiments and other common elements in a document The ability to train custom models through the Custom classification and Custom entity … 2023-03-01 15:28:11
AWS AWS Machine Learning Blog Introducing the Amazon Comprehend flywheel for MLOps https://aws.amazon.com/blogs/machine-learning/introducing-the-amazon-comprehend-flywheel-for-mlops/ Introducing the Amazon Comprehend flywheel for MLOpsThe world we live in is rapidly changing and so are the data and features that companies and customers use to train their models Retraining models to keep them in sync with these changes is critical to maintain accuracy Therefore you need an agile and dynamic approach to keep models up to date and adapt … 2023-03-01 15:27:59
AWS AWS Management Tools Blog Enable management of your Amazon EC2 instances in AWS Systems Manager using Default Host Management Configuration https://aws.amazon.com/blogs/mt/enable-management-of-your-amazon-ec2-instances-in-aws-systems-manager-using-default-host-management-configuration/ Enable management of your Amazon EC instances in AWS Systems Manager using Default Host Management ConfigurationPreviously customers were required to attach an AWS Identity and Access Management IAM instance profile to Amazon Elastic Compute Cloud EC instances in order to register with AWS Systems Manager To accomplish this customers may have been required to manually attach an IAM instance profile on a per instance basis or use automated methods such as … 2023-03-01 15:32:23
python Pythonタグが付けられた新着投稿 - Qiita PythonとJSONで色々する。 https://qiita.com/atsudora-san/items/7965c5ad779a74fa3374 importjsonitemskey 2023-03-02 00:59:04
python Pythonタグが付けられた新着投稿 - Qiita ksnCTF writeup https://qiita.com/motimotipurinn/items/95c5f2c56b5ff3e080de testproblem 2023-03-02 00:18:29
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScript でテトリスを開発する その 7 https://qiita.com/namakoRice/items/4d46e777d7af53313859 javascript 2023-03-02 00:28:07
Docker dockerタグが付けられた新着投稿 - Qiita 徳丸本の実習環境を全部 Docker 化してみた https://qiita.com/oya_tadashi/items/e3bd13fc5b55bd5fd2da docker 2023-03-02 00:17:10
Docker dockerタグが付けられた新着投稿 - Qiita Dockerとnginx,mysqlでLaravelを構築(初心者のメモ) https://qiita.com/rui-314/items/1c3899d08437c0b7b7b2 dockerdesktopubuntu 2023-03-02 00:00:58
golang Goタグが付けられた新着投稿 - Qiita Ginを利用して新規登録、ログイン機能をJWT認証で実装(ログイン編) https://qiita.com/soicchi/items/56a0e900ca1000cee3e7 認証 2023-03-02 00:06:42
Git Gitタグが付けられた新着投稿 - Qiita GitBashのオートアップデート2023 https://qiita.com/wmsatmsa34106/items/9842bcaf3e4763f5ea5b gitversion 2023-03-02 00:39:21
海外TECH MakeUseOf How to Enable the Windows Security App in Windows 10 https://www.makeuseof.com/enable-windows-security-app-windows-10/ security 2023-03-01 15:15:16
海外TECH MakeUseOf No, There Isn't a ChatGPT Windows Client—It's Malware https://www.makeuseof.com/chatgpt-windows-client-malware/ chatgpt 2023-03-01 15:05:17
海外TECH DEV Community An Expense Approval System Built with Python https://dev.to/anvil/an-expense-approval-system-built-with-python-3mlg An Expense Approval System Built with Python Build an expense approval system with AnvilAnvil is a powerful and versatile tool for building full stack web applications With Anvil you can quickly and easily create your UI and write Python code to control the front end and back end of your app Creating apps with Anvil is fast and flexible making it well suited for building internal tools This expense approval system app showcases some of the features that Anvil has on offer Open in Anvil clone ODKPAXGZBEYSLZ dTQRGCPIIRYAZFKKXALBEQII built the app s UI using Anvil s drag and drop editor and writing front end Python code I also wrote the backend in Python on a secure Server Module This app also uses Anvil s built in database user authentication and email sending Take a look below at how I built this expense approval system with only Python and Anvil The Expense Approval appThis app is a simple expense approval system where users can submit expenses for an admin user to approve or reject The main page is a view of the expenses and users can add expenses by clicking on the New Expense button and filling out the pop up form that it triggers Clicking on the expense description brings out a detailed view of the expense Adding a new expense and viewing it An admin will be able to see all expenses and reject approve and reimburse them whereas a regular user will only have access to their own submissionsThe admin view Whenever an admin takes action on an expense the user that submitted it receives an email notifying them of the change Finally admins also have access to a dashboard summary of the expenses with visualisations which they can download as a PDF A summary page with data visualisations How it s built Creating the UIAnvil makes it simple to create a UI You can use drag and drop components and then write Python to make them interact with each other For example I used a Data Grid to display the expenses in my app Dragging and dropping a Data Grid component from the Toolbox onto the ExpenseDashboard FormOnce the layout is set you can make your components interact with each other by writing your browser code all in Python The function below which runs whenever we change to the Pending Approval view is running entirely in the browser without making any round trips to the server def pendingappr btn click self event args When pendingappr btn is clicked the page contents are changed self content panel clear self content panel add component ExpenseDashboard status pending Data Tables and Server SideAnvil has a built in database system built on top of PostgreSQL with a GUI for creating editing and deleting tables This makes it simple to define your schema By default Data Tables are only accessible from the server side Anvil s Server Modules are full server side Python environments which cannot be edited or seen by the user Using server functions to interact with our database ensures our data stays secure These functions can then be called from the client side with just one line of code For example the function below adds a row to my expenses data table anvil server callabledef add expense expense dict app tables expenses add row created datetime now status pending submitted by anvil users get user expense dict The anvil server callable decorator means I can call this function from client side code anvil server call add expense expense User ManagementAnvil has a built in Users Service which handles signup login and user permissions as well as supporting corporate single sign on two factor authentication and more I simply added the Users Service to my app and chose the authentication methods I wanted to use Email Password and Google sign in I then added anvil users login with form to my client side to display a login form on startup With Anvil it s also very simple to restrict functionalities based on user roles For example I wanted certain components to be visible and enabled only if the logged in user is an admin and I was able to implement this with only a couple lines of code if State user role admin self summary btn visible True self summary btn enabled True Email service and background tasksAnvil makes it easy to send and receive emails from your app with a few lines of Python using the built in email service I wanted to notify users via email of a status change in their expense request so first I wrote a function to do just that anvil server background taskdef send email user message anvil email send to user from name Expenses App subject Your expense has been updated html message The anvil server background task decorator indicates that this task can be run in the background Background Tasks allow you to fire off a function to run in the background leaving your main program to continue executing while the function is running With this I could launch my background task every time an expense s status is changed without blocking the control flow of my app by adding anvil server launch background task to my change status server function anvil server callable require user is admin def change status row status old status row status user row submitted by email message f lt p gt Hi user lt p gt lt p gt The status of your expense row description changed from lt b gt old status lt b gt to lt b gt status lt b gt lt p gt lt p gt Visit the lt a href anvil server get app origin gt app lt a gt to learn more details lt p gt row update status status anvil server launch background task send email user user message html Data Visualisations and PDF renderingAnvil comes with a built in Plotly integration so you can import process and visualize data all within Anvil using Python Because they re Plotly plots under the hood Anvil s plots are interactive ーyou can move the mouse over a plot to see the available tools I decided to plot some data from the app s database so I first created some functions on the server to get the data into shape like in the example below anvil server callable require user is admin def get status data status data x status for x in app tables expenses search labels list set status data values for l in labels values append status data count l return labels valuesThen I just fed it into one of my plots from my Summary Form labels values anvil server call get status data self plot data go Pie labels labels values values hole self plot layout title Expense requests by status I also decided to make the Form downloadable as a PDF First I rendered it into a PDF in a server function anvil server callable require user is admin def create summary pdf return anvil pdf render form Plots Then I call this function from the client to download the file whenever the download button is clicked def download summ btn click self event args This method is called when the button is clicked media object anvil server call create summary pdf anvil media download media object Build your internal tools with AnvilAnvil makes building powerful internal tools simple straightforward and fast You can use all your favourite Python libraries to build your code and the drag and drop designer makes building UIs a breeze This expense approval system makes use of Anvil s built in database system the easy to use user management service the email service and more It s powered by Python running in the browser as well as on the server meaning that it s extremely customisable Clone the app to check out the source code and play with it yourself Open in Anvil clone ODKPAXGZBEYSLZ dTQRGCPIIRYAZFKKXALBEQI 2023-03-01 15:10:00
Apple AppleInsider - Frontpage News Daily Deals March 1: 41% off Apple Watch Series 5, $200 off M2 MacBook Air, up to 60% off Shark vacuums & more https://appleinsider.com/articles/23/03/01/daily-deals-march-1-41-off-apple-watch-series-5-200-off-m2-macbook-air-up-to-60-off-shark-vacuums-more?utm_medium=rss Daily Deals March off Apple Watch Series off M MacBook Air up to off Shark vacuums amp moreToday s top tech deals include off an Eve Aqua smart water controller off the Apple Pencil bonus off Eve light strips and more Save on Shark Floor Care FavoritesThe AppleInsider staff scours the web for deals at online retailers to create a list of unbeatable discounts on the top tech gadgets including discounts on Apple products TVs accessories and other items We post our top finds in our Daily Deals list to help you save money Read more 2023-03-01 15:20:34
海外TECH Engadget VW unveils second-gen ID.3 EV and an app store for its cars https://www.engadget.com/vw-unveils-second-gen-id3-ev-and-an-app-store-for-its-cars-154817061.html?src=rss VW unveils second gen ID EV and an app store for its carsThe ID isn t even three years old but that isn t stopping Volkswagen from giving its well known EV a makeover After months of teasers the company has introduced a second generation ID that addresses criticisms of the first model The new compact car offers a quot sharper quot design with improved aerodynamics and a higher quality and heavily recycled interior More importantly VW has upgraded the technology ーincluding its software which garnered a long list of complaints from drivers The second gen ID includes the quot latest software quot with a simpler layout better performance and over the air updates The inch infotainment display is now standard You also have access to a Travel Assist feature that uses quot swarm quot data to aid driving ーthe crowdsourced info can keep you in your lane on a backroad even if there s just one known lane marking Charging should be easier too between an automatic charge start at compatible stations and a route planner that factors in the availability and capacity of stations along the way Your car won t direct you to a busy station with slow chargers Don t expect huge changes in performance The new ID uses the same HP motor system and battery options as before That nets up to miles of range using the WLTP testing method with the base kWh battery and miles with the kWh pack Those are still very healthy figures for an EV this size however and VW has teased a smaller battery for those who only need a commuter car Production is slated to start in fall VW hasn t outlined pricing or country by country availability but we wouldn t count on this reaching the US Like the original ID the revamp is aimed primarily at European customers where North America gets larger vehicles like the ID crossover and upcoming ID Buzz VolkswagenEven larger software improvements are in store regardless of where you live VW s Cariad unit has unveiled an app store pictured at middle for the automaker s brands including Audi and Porsche The platform will help third parties bring apps to a wide range of cars with relatively little fuss including over the air updates Major early partners tend to be driving oriented services like Spotify TuneIn The Weather Channel and Plugshare However you ll also find TikTok Cisco s Webex meeting app and even Vivaldi s web browser The app store debuts in several Audi models including EVs like the E Tron GT and Q E Tron this summer for European and North American customers More models and VW brands are coming later Don t expect to upgrade your existing ride though as VW cautions that the shop will only be available in cars produced from summer onward This article originally appeared on Engadget at 2023-03-01 15:48:17
海外TECH Engadget Netflix's ‘Stranger Things’ stage play will debut later this year https://www.engadget.com/netflixs-stranger-things-stage-play-will-debut-later-this-year-152919732.html?src=rss Netflix x s Stranger Things stage play will debut later this yearNetflix has revealed more details about a Stranger Things nbsp prequel that you ll need to get off your couch to experience at least for the foreseeable future A stage play called Stranger Things The First Shadowwill premiere at the Phoenix Theatre in London s West End later this year Netflix announced the production last year The play takes place in Hawkins in over two decades before the beginning of the s set sci fi horror series It will feature younger versions of key characters including Joyce Byers Jim Hopper Bob Newby and Henry Creel aka Vecna Netflix says The First Shadow will take you right back to the beginning of the Stranger Things story ーand to the beginning of the end That suggests the play will tie into the show s fifth and final season which doesn t have a release window as yet Welcome to Hawkins Before the world turned upside down…Stranger Things The First Shadow A new story live on stage London Late pic twitter com DTcWnwXEーStranger Things On Stage STOnStage March The First Shadow comes from the minds of series creators Matt and Ross Duffer Stranger Things writer Kate Trefry and Jack Thorne the writer of Enola Holmes which features Millie Bobby Brown Trefry wrote the play which is being directed by Tony and Emmy winner Stephen Daldry Tickets will go on sale this spring and Netflix says those who register at the play s website will jump to the front of the line Netflix has already expanded Stranger Things to several other mediums including games comics novels and a drive thru experience The First Shadow is the company s first live stage production It remains to be seen however if a filmed version of the play will hit the streaming service at some point so those who can t make it to London or perhaps Broadway can see it This article originally appeared on Engadget at 2023-03-01 15:29:19
海外TECH Engadget Sony 2023 Bravia XR TV hands-on: Bigger, brighter and even better looking https://www.engadget.com/sony-2023-bravia-xr-tv-hands-on-bigger-brighter-and-even-better-looking-150030819.html?src=rss Sony Bravia XR TV hands on Bigger brighter and even better lookingBack at CES most of the big TV makers like LG and Samsung announced their upcoming high end TVs But one major company was missing Sony Now it s finally ready to show off its latest flagship sets and after getting a chance to see them in person I can say it was worth the wait Sony s line of Bravia XR TVs are all powered by the company s Cognitive Processor XR That means they share the same underlying tech and processing including support for stuff like Sony s XR Clear Image tech which allows for adaptive noise reduction auto HDR tone mapping and more For Sony is trying to take as much of the guesswork out of setup as possible by making its TVs look great right out of the box in the standard video or cinematic modes That means you shouldn t have to fuss around with various settings or need to get your TV professionally calibrated Granted calibration is still the way to go if you want to get the very best image quality but for people who don t have a colorimeter at home or don t want to pay someone else to do it which I think is pretty much everyone this is a welcome upgrade Sony has also made a few design tweaks including new tweeters that are built into the frame of select models While you can t really see them they help deliver richer and more expansive audio particularly when paired with one of the company s high end soundbars with center sync audio Sony is also introducing an updated stand for most of its new sets which allows for a bit more flexibility when trying to accommodate external speakers and soundbars The new Eco dashboard in Sony s Bravia XR TVs makes it easy to turn on and adjust power saving settings like brightness idle power off times and more Sam Rutherford EngadgetFinally Sony also added new Gaming and Eco dashboards so it s easier to find and adjust various settings For gaming you have options like VRR motion blur reduction and more And for FPS fanatics there s even a setting for adding a permanent crosshair to the middle of the screen complete with various reticle choices Alternatively the Eco Dashboard includes a simple walkthrough to help you choose power saving settings including a happy little tree that grows when you do things like reduce the brightness or enable shorter idle power off times While Sony hasn t released exact pricing just yet the XL will likely be the most affordable of the bunch as it s positioned as the entry level option in the Bravia XR family It s the replacement to last year s XK and sports a full array LED panel with improved Clear Image upscaling and significantly reduced blooming And while Sony doesn t publicly disclose the exact number of dimming zones the company says the XL has up to percent more dimming zones while also being up to percent brighter than before While it s a mid range TV overall the new XL is poised to be the entry model in Sony s high end Bravia XR TV family And with the largest model going up to inches it s also the biggest Sam RutherfordThis model is also getting a new aluminum bezel instead of the plastic one on the XK and with the addition of a massive new inch model the XL is the biggest TV in Sony s Bravia XR lineup Next when it comes to OLEDs we have the AL and AL Not only do both models boast improved contrast when viewed side by side with rivals like the LG C I noticed Sony s OLEDs definitely did a better job at preserving details in shadows The AL was particularly impressive thanks to its QD OLED panel and Cognitive Processor with Sony claiming brightness that s now two times higher than last year s model This is big because for a long time the brightness of OLED TVs has generally lagged behind that of more traditional LED sets But now Sony says the AL is brighter than basically all but the most high end LED rivals And as someone who loves the super vibrant colors you get from OLED displays the AL might be my favorite of the entire line Thanks to a new QD OLED panel Sony claims the AL is two times brighter than last year s model Sam Rutherford EngadgetSpeaking of high end Sony s XL and XL are the company s two super premium flagship options Both sets feature Mini LED displays with the main difference being that the XL doesn t come with Sony s XR Clear Image tech Meanwhile the XL offers similar peak brightness with percent more local dimming zones The downside is that the XL is only available as an inch model so if you need something smaller you ll have to go with the XL That said when I compared the XL and XL to one of Sony s super expensive reference monitors in a room with typical lighting both did a great job of preserving details while also delivering extremely accurate colors In certain scenes Sony s TV s almost made rivals like Samsung s QNB look washed out Admittedly things like film grain were a bit more noticeable on the XL because it doesn t have Clear Image tech but for film aficionados who really care about watching movies that look as close as possible to what the director intended these are the sets to get The XL is the new flagship set for Sony s entire Bravia XR TV family Sam Rutherford EngadgetAfter seeing the new TVs regardless of what type of panel you prefer all of Sony s upcoming Bravia XR sets look fantastic You get way more local dimming zones on the XL line while the two times higher brightness on the AL is absolutely stunning And with Sony adding larger screen options to basically all of its models it should be even easier to find the right size display for your room This article originally appeared on Engadget at 2023-03-01 15:00:30
海外科学 NYT > Science Eli Lilly Says It Will Cut the Price of Insulin https://www.nytimes.com/2023/03/01/business/insulin-price-cap-eli-lilly.html diabetes 2023-03-01 15:11:35
金融 RSS FILE - 日本証券業協会 株主コミュニティの統計情報・取扱状況 https://www.jsda.or.jp/shiryoshitsu/toukei/kabucommunity/index.html 株主コミュニティ 2023-03-01 15:30:00
金融 金融庁ホームページ 第51回金融審議会総会・第39回金融分科会合同会合 議事次第を公表しました。 https://www.fsa.go.jp/singi/singi_kinyu/soukai/siryou/2023_0302.html 金融審議会 2023-03-01 17:00:00
金融 金融庁ホームページ 金融機関によるトランジション・ファイナンスを通じた脱炭素化支援を推進していくための官民の取組について課題提起ペーパーの英語版を公表しました。 https://www.fsa.go.jp/news/r4/singi/20230221.html 金融機関 2023-03-01 17:00:00
ニュース BBC News - Home Constance Marten arrest: Police fear baby has come to 'serious harm' https://www.bbc.co.uk/news/uk-64808412?at_medium=RSS&at_campaign=KARANGA gross 2023-03-01 15:49:51
ニュース BBC News - Home Kaylea Titford: Parents of neglected teenage girl who died jailed https://www.bbc.co.uk/news/uk-wales-64803863?at_medium=RSS&at_campaign=KARANGA jailedthe 2023-03-01 15:43:31
ニュース BBC News - Home Harry and Meghan residence Frogmore Cottage offered to Andrew - reports https://www.bbc.co.uk/news/uk-64812549?at_medium=RSS&at_campaign=KARANGA newspaper 2023-03-01 15:10:05
ニュース BBC News - Home Bangladesh v England: Dawid Malan century puts tourists 1-0 up in ODI series https://www.bbc.co.uk/sport/cricket/64809393?at_medium=RSS&at_campaign=KARANGA bangladesh 2023-03-01 15:06:03

コメント

このブログの人気の投稿

投稿時間: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件)