投稿時間:2023-07-04 16:24:49 RSSフィード2023-07-04 16:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… MetaのTwitter対抗サービス「Threads」、公式サイトでカウントダウン開始 − 日本時間7月6日23時にサービス開始か https://taisy0.com/2023/07/04/173625.html appstore 2023-07-04 06:16:30
IT 気になる、記になる… Amazon、「プライムデー」対象商品の第2弾を公開 − 「SwitchBot ロボット掃除機K10+」などが対象に https://taisy0.com/2023/07/04/173620.html amazon 2023-07-04 06:03:07
IT ITmedia 総合記事一覧 [ITmedia PC USER] エルザ、OSレス仕様のCore i5+RTX A2000搭載スリムデスクトップ インストール代行サービスも用意 https://www.itmedia.co.jp/pcuser/articles/2307/04/news133.html coreirtxa 2023-07-04 15:28:00
IT ITmedia 総合記事一覧 [ITmedia News] ドコモの「dカード GOLD」、1000万会員を突破 https://www.itmedia.co.jp/news/articles/2307/04/news132.html itmedia 2023-07-04 15:28:00
TECH Techable(テッカブル) 既存のWebサイトに生成AI活用の機能を簡単実装。UXソリューションに新オプションサービス https://techable.jp/archives/212650 kaizenplatform 2023-07-04 06:00:12
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders データ統合ツール「Insight Governor」に新版、大規模言語モデルで名寄せの精度を向上 | IT Leaders https://it.impress.co.jp/articles/-/25046 各部署に分散しているデータを統合して活用するために必要な機能群を一通り提供するツールである。 2023-07-04 15:11:00
Docker dockerタグが付けられた新着投稿 - Qiita WSL2 の docker-compose を v2 にアップデートする https://qiita.com/kazumacchi/items/4e85e559cb30949dd05f dockercompose 2023-07-04 15:23:42
技術ブログ Developers.IO 2023年6月くらいのAWS最新情報ブログとかをキャッチアップする – AWSトレンドチェック勉強会用資料 https://dev.classmethod.jp/articles/aws-trendcheck-202306/ 最新情報 2023-07-04 06:39:11
技術ブログ Developers.IO 【8/7(月)】データの扱いに困っているマーケター必見!データドリブンなマーケティングを実現するクラスメソッドのソリューションをご紹介 https://dev.classmethod.jp/news/230807_martech_mds-webinar/ 扱い 2023-07-04 06:05:19
海外TECH DEV Community Breakthrough in the book search field! Use Apache SeaTunnel to improve the efficiency of book title similarity search https://dev.to/seatunnel/breakthrough-in-the-book-search-field-use-apache-seatunnel-to-improve-the-efficiency-of-book-title-similarity-search-1mfb Breakthrough in the book search field Use Apache SeaTunnel to improve the efficiency of book title similarity searchAuthor Liu Guangdong Apache SeaTunnel Committer BackgroundCurrently existing book search solutions such as those used in public libraries heavily rely on keyword matching rather than semantic understanding of the actual content of book titles As a result search results may not meet our needs very well or even be vastly different from what we expect This is because relying solely on keyword matching is not enough as it cannot achieve semantic understanding and therefore cannot understand the searcher s true intent So is there a better way to conduct book searches more accurately and efficiently The answer is yes In this article I will introduce how to combine the use of Apache SeaTunnel Milvus and OpenAI for similarity search to achieve semantic understanding of the entire book title and make search results more accurate Using trained models to represent input data is called semantic search and this approach can be extended to various different text based use cases including anomaly detection and document search Therefore the technology introduced in this article can bring significant breakthroughs and impacts to the field of book search Next I will briefly introduce several concepts and tools platforms related to this article in order to better understand this article What is Apache SeaTunnelApache SeaTunnel is an open source high performance distributed data management and computing platform It is a top level project supported by the Apache Foundation capable of handling massive data providing real time data queries and computing and supporting multiple data sources and formats The goal of SeaTunnel is to provide a scalable enterprise level data management and integration platform to meet various large scale data processing needs What is MilvusMilvus is an open source vector similarity search engine that supports the storage retrieval and similarity search of massive vectors It is a high performance low cost solution for large scale vector data Milvus can be used in various scenarios such as recommendation systems image search music recommendation etc What is OpenAIChatGPT is a conversational AI system based on the Generative Pre trained Transformer GPT model developed by OpenAI The system mainly uses natural language processing and deep learning technologies to generate natural language text similar to human conversation ChatGPT has a wide range of applications including developing intelligent customer service chatbots intelligent assistants and language model research and development In recent years ChatGPT has become one of the research hotspots in the field of natural language processing What is LLMA Large Language Model LLM is a natural language processing model based on deep learning technology that can analyze and understand a given text and generate text content related to it Large language models typically use deep neural networks to learn the grammar and semantic rules of natural language and convert text data into vector representations in continuous vector space During training large language models use a large amount of text data to learn language patterns and statistical rules which enables them to generate high quality text content such as articles news and conversations Large language models have a wide range of applications including machine translation text generation question answering systems speech recognition etc Currently many open source deep learning frameworks provide implementations of large language models such as TensorFlow PyTorch etc TutorialHere we go I will show you how to combine Apache SeaTunnel OpenAI s Embedding API with our vector database to perform semantic search over the entire book title PreparationBefore the experiment we need to obtain an OpenAI token from their official website and then deploy a Milvus experimental environment We also need to prepare the data that will be used for this example You can download the data from here Importing data into Milvus through SeaTunnel First place book csv under tmp milvus test book then configure the task configuration as milvus conf and place it under config Please refer to the Quick Start Guide env You can set engine configuration here execution parallelism job mode BATCH checkpoint interval execution checkpoint data uri hdfs localhost checkpoint source This is a example source plugin only for test and demonstrate the feature source plugin LocalFile schema fields bookID string title string title string path tmp milvus test book file format type csv transform sink Milvus milvus host localhost milvus port username root password Milvus collection name title db openai engine text embedding ada openai api key sk xxxx embeddings fields title Execute the following command bin SeaTunnel sh config config milvus conf e localViewing the data in the database you can see that data has been written into it Then use the following code to perform semantic search on book titles import jsonimport randomimport openaiimport timefrom pymilvus import connections FieldSchema CollectionSchema DataType Collection utilityCOLLECTION NAME title db Collection nameDIMENSION Embeddings sizeCOUNT How many titles to embed and insert MILVUS HOST localhost Milvus server URIMILVUS PORT OPENAI ENGINE text embedding ada Which engine to useopenai api key sk Use your own Open AI API Key hereconnections connect host MILVUS HOST port MILVUS PORT collection Collection name COLLECTION NAME collection load def embed text return openai Embedding create input text engine OPENAI ENGINE data embedding def search text Search parameters for the index search params metric type L results collection search data embed text Embeded search value anns field title Search across embeddings param search params limit Limit to five results per search output fields title Include title field in result ret for hit in results row row extend hit id hit score hit entity get title Get the id distance and title for the results ret append row return retsearch terms self improvement landscape for x in search terms print Search term x for result in search x print result print Here is the result Search term self improvement The Dance of Intimacy A Woman s Guide to Courageous Acts of Change in Key Relationships Nicomachean Ethics Possession Vanity Fair Knowledge Is Power The Amazing Days of Abby Hayes Search term landscape The Lay of the Land The Angry Hills Cloud Atlas Alien The Known World If we use the old method of keyword search book titles must contain keywords such as self improvement and improvement However by using large language models for semantic understanding we can retrieve book titles that are more relevant to our needs For example in the example above when we searched for the keyword self improvement the displayed book titles such as The Dance of Intimacy A Woman s Guide to Courageous Acts of Change in Key Relationships and Nichomachean Ethics did not contain relevant keywords but were clearly more relevant to our needs Therefore by using Apache SeaTunnel Milvus and OpenAI we can achieve more accurate book title similarity searches through large language models bringing significant technological breakthroughs to the field of book search while also providing valuable references for semantic understanding I hope this can provide some inspiration to everyone Related links 2023-07-04 06:49:06
海外TECH DEV Community Git Fundamentals for Developers https://dev.to/scofieldidehen/git-fundamentals-for-developers-2m7f Git Fundamentals for DevelopersIn the fast paced world of software development effective version control is essential for collaborative work change tracking and streamlined code management Git developed by Linus Torvalds in has emerged as the leading version control system renowned for its speed flexibility and robust features This article provides a comprehensive overview of Git exploring its key concepts and indispensable commands every developer should master What is Git Git is a distributed version control system designed to handle projects of all sizes offering remarkable speed and efficiency It empowers developers to track changes manage multiple codebase versions and seamlessly collaborate with fellow team members Key ConceptsTo fully comprehend Git s functionality it is crucial to grasp its key concepts Repository A repository commonly called a repo serves as a central storage location for project files and the entire version history Repositories can be either local or hosted on remote servers Commit A commit represents a snapshot of changes made to the repository at a specific point in time Each commit encapsulates a logical unit of work enabling developers to track progress and revert if needed Branch Branching enables developers to work on independent lines of development concurrently without affecting the primary codebase It allows for isolating features or bug fixes fostering efficient collaboration and experimentation Merge Merging combines changes from different branches into a single branch usually the main branch By merging developers consolidate independent lines of development into a cohesive and functional codebase Clone Cloning involves creating a local copy of a remote repository on a developer s machine This enables developers to work independently on the codebase making changes and experimenting without impacting the shared repository Essential Git CommandsBelow are some fundamental Git commands that developers should familiarize themselves with git init Initializes a new Git repository within the current directory git clone repository URL Clones a remote repository onto the local machine creating a local copy for development git add file Adds a file or changes to the staging area preparing them for the next commit git commit m message Commits the staged changes with a descriptive message creating a new snapshot in the repository git status Displays the current state of the repository providing information about modified files and untracked changes git branch Lists all existing branches in the repository allowing developers to identify different lines of development git checkout branch Switches to the specified branch enabling developers to work on a specific branch s code git merge branch Integrates changes from the specified branch into the current branch consolidating development efforts git pull Fetches changes from a remote repository and merges them into the current branch ensuring the local codebase is up to date git push Pushes local commits to a remote repository updating the corresponding branch and sharing changes with other team members Additional Git CommandsIn addition to the essential commands mastering these additional Git commands can enhance development productivity git log Displays the commit history presenting details such as authors dates and commit messages git diff Highlights the differences between the working directory the staging area or the last commit aiding in code review and change analysis git reset commit Discards changes and moves the current branch to the specified commit providing a mechanism to undo previous commits git stash Temporarily saves changes that are not ready to be committed allowing developers to switch branches without committing incomplete work git remote Manages connections to remote repositories facilitating collaboration with distributed teams and enabling seamless integration with remote codebases git fetch Retrieves the latest changes from a remote repository without automatically merging them into the local branch It allows developers to review changes before incorporating them into their codebase git rebase Reapplies commits from one branch to another integrating changes more smoothly than traditional merging It helps maintain a linear commit history and resolves conflicts effectively ConclusionGit has revolutionized the world of software development by providing a powerful and versatile version control system Understanding its key concepts and mastering essential commands is vital for developers aiming to streamline workflows enhance collaboration and ensure efficient code management With Git developers can effortlessly track changes work on independent features simultaneously and seamlessly merge code contributions By incorporating these commands into their development processes developers can harness the full potential of Git leading to more efficient and successful software projects If you find this post exciting find more exciting posts on Learnhub Blog we write everything tech from Cloud computing to Frontend Dev Cybersecurity AI and Blockchain 2023-07-04 06:02:44
海外TECH Engadget Meta's Instagram-linked Twitter rival 'Threads' could arrive on July 6th https://www.engadget.com/metas-instagram-linked-twitter-rival-threads-could-arrive-on-july-6th-063129168.html?src=rss Meta x s Instagram linked Twitter rival x Threads x could arrive on July thWe ve known for quite a while that Meta has been building a Twitter competitor but now we have a more solid idea of when it will become available A listing for the app called Threads has popped up in the iOS App Store with an estimated release date of July th In May a report came out saying that the microblogging service was nearing completion and could be out as soon as the end of June While an end of June launch didn t quite happen the app could be arriving at a time when Twitter users are more willing and maybe even eager to try an alternative nbsp Twitter recently put a cap on how many tweets an unverified account can read per day In a post Elon Musk announced that verified accounts ーwhich translates to paying users ーcan read posts a day while unverified nonpaying users can only read He said the website is adopting the measure to address extreme levels of data scraping and system manipulation A regular user can easily hit posts so people who haven t been paying to a month for blue checkmark have been getting locked out of their feeds as a result nbsp Meta describes Threads as Instagram s text based conversation app Based on the screenshots posted in the listing users can keep their Instagram handle and follow the same accounts they follow on the photo sharing platform That means users will have a pre existing following and circles on the new app giving it an edge over other Twitter rivals Users will also be able to choose the privacy of their posts and make them visible to anyone to the profiles they follow or only to the accounts they mention They will be able to heart send and share other people s posts as well nbsp Previous reports said Meta s Twitter competitor would be a decentralized service that s compatible with Mastodon but it s unclear if that s still the case when it launches We ll know for sure within a few days nbsp This article originally appeared on Engadget at 2023-07-04 06:31:29
医療系 医療介護 CBnews 新型コロナワクチン接種の282件を認定-厚労省が健康被害審査第二部会の審議結果公表 https://www.cbnews.jp/news/entry/20230704153024 予防接種 2023-07-04 15:40:00
医療系 医療介護 CBnews 医療法人「持ち分なし社団」が2万超、厚労省-3月末現在、全法人の36%に https://www.cbnews.jp/news/entry/20230704145251 医療法人 2023-07-04 15:15:00
金融 RSS FILE - 日本証券業協会 PSJ予測統計値 https://www.jsda.or.jp/shiryoshitsu/toukei/psj/psj_toukei.html 統計 2023-07-04 07:00:00
金融 RSS FILE - 日本証券業協会 当面の主要課題 https://www.jsda.or.jp/about/kadai/index.html 当面 2023-07-04 06:40:00
金融 JPX マーケットニュース [東証]新規上場銘柄の売買に関する規制措置:AeroEdge(株) https://www.jpx.co.jp/news/1030/20230704-01.html aeroedge 2023-07-04 15:15:00
金融 JPX マーケットニュース [東証]新規上場(2日目)の初値決定前の気配運用について:AeroEdge(株) https://www.jpx.co.jp/news/1031/20230704-02.html aeroedge 2023-07-04 15:15:00
海外ニュース Japan Times latest articles My Number identity cards for elderly won’t require passwords, says minister https://www.japantimes.co.jp/news/2023/07/04/national/my-number-no-password/ My Number identity cards for elderly won t require passwords says ministerThe plan aims to address concerns among some elderly people about remembering a password and will ease burdens on staff at elderly care facilities who 2023-07-04 15:23:52
海外ニュース Japan Times latest articles Japan’s youngest city mayor sets sights on education reform https://www.japantimes.co.jp/news/2023/07/04/national/politics-diplomacy/youngest-mayor-education/ public 2023-07-04 15:20:09
海外ニュース Japan Times latest articles PGA officials, but not LIV, to testify before U.S. lawmakers https://www.japantimes.co.jp/sports/2023/07/04/more-sports/golf/pga-senate-hearing/ PGA officials but not LIV to testify before U S lawmakersTestimony had been sought from LIV chief executive Greg Norman and Saudi Public Investment Fund PIF governor Yasir al Rumayyan but neither will appear at the 2023-07-04 15:14:25
ニュース BBC News - Home Ukraine war: Major Moscow airport temporarily closed in drone attack https://www.bbc.co.uk/news/world-europe-66094744?at_medium=RSS&at_campaign=KARANGA moscow 2023-07-04 06:43:08
ニュース BBC News - Home Ant and Dec to produce Byker Grove reboot https://www.bbc.co.uk/news/uk-england-tyne-66092428?at_medium=RSS&at_campaign=KARANGA grove 2023-07-04 06:04:34
IT 週刊アスキー 「東京ゲームショウ2023」の一般来場者チケットが7月8日正午より販売開始! https://weekly.ascii.jp/elem/000/004/143/4143815/ 一般社団法人 2023-07-04 15:55:00
IT 週刊アスキー メタ、Twitter対抗サービス「Threads」7月6日開始へ https://weekly.ascii.jp/elem/000/004/143/4143781/ facebook 2023-07-04 15:45:00
IT 週刊アスキー 「横浜・八景島シーパラダイス」、人気ゲームソフト「スプラトゥーン3」とコラボイベントを開催! https://weekly.ascii.jp/elem/000/004/143/4143727/ 人気ゲーム 2023-07-04 15:15:00
IT 週刊アスキー ピクルスで真緑の「ピクルスピザ」 ギャグじゃない、ドミノで出た https://weekly.ascii.jp/elem/000/004/143/4143776/ 数量限定 2023-07-04 15:55:00
マーケティング AdverTimes 1位は19社の川口春奈 2023上半期タレントCM起用社数ランキング https://www.advertimes.com/20230704/article426236/ 位は社の川口春奈上半期タレントCM起用社数ランキングニホンモニター東京・港は月日、年月月のCM出稿状況を対象にした、「上半期タレントCM起用社数ランキング」を発表した。 2023-07-04 06:46:27
マーケティング AdverTimes 宣伝会議 2023年上半期書籍ランキング ベスト10 https://www.advertimes.com/20230704/article426245/ amazon 2023-07-04 06:33:07
海外TECH reddit What is the biggest advantage of life in Japan to the rest of the world? https://www.reddit.com/r/japanlife/comments/14q6r3q/what_is_the_biggest_advantage_of_life_in_japan_to/ What is the biggest advantage of life in Japan to the rest of the world I notice quite a lot of people asking more about quot bad quot or quot unpleasant quot things in this type of threads but I would like to pay some attention to positive things people can say about a country and its undoubted advantages comparing to the rest of the world which every country has submitted by u Fun Application to r japanlife link comments 2023-07-04 06:12:21

コメント

このブログの人気の投稿

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