- Видео 33
- Просмотров 1 139
Bhavesh Padharia
Индия
Добавлен 18 авг 2023
Results-oriented professional with over 7 years of expertise in data analytics, machine learning, and software development, seeking a challenging role as a Data Science Team Leader. Adept at leading cross-functional teams, I have a proven track record in developing and deploying advanced ML models, conducting in-depth data analysis, and spearheading successful projects in diverse domains, including E-Commerce, Smart Supply Chain, Industry 4.0, and Smart Sales. My leadership skills have consistently driven innovative solutions and contributed to organizational success.
stepfun-ai/GOT-OCR2_0 Huggingface Model
stepfun-ai/GOT-OCR2_0 is. This model is designed for OCR tasks, meaning it can read and extract text from images. Built on advanced deep learning techniques, it offers robust performance across various scenarios, making it a go-to solution for many applications.
#DataScience #BigData #DataScientist #LearnDataScience #fresher #Python #Excel #MySQL #tableau #fresherjobs #MachineLearning #machinelearningalgorithms #datasciencejobs #datasciencetraining #pythonprogramming #Pythonprojects #datavisualization #dataanalytics #datascienceeducation #databending #bigdataanalytics #dataengineer #data_science_information #python #mahcinelearning #artificialintelligence #deeplearning #ai #generativeai #c...
#DataScience #BigData #DataScientist #LearnDataScience #fresher #Python #Excel #MySQL #tableau #fresherjobs #MachineLearning #machinelearningalgorithms #datasciencejobs #datasciencetraining #pythonprogramming #Pythonprojects #datavisualization #dataanalytics #datascienceeducation #databending #bigdataanalytics #dataengineer #data_science_information #python #mahcinelearning #artificialintelligence #deeplearning #ai #generativeai #c...
Просмотров: 112
Видео
Leetcode 386 Lexicographical Numbers Python solution
Просмотров 7Месяц назад
Given an integer n, return all the numbers in the range [1, n] sorted in lexicographical order. You must write an algorithm that runs in O(n) time and uses O(1) extra space. #DataScience #BigData #DataScientist #LearnDataScience #fresher #Python #Excel #MySQL #tableau #fresherjobs #MachineLearning #machinelearningalgorithms #datasciencejobs #datasciencetraining #pythonprogramming #Pythonproject...
Leetcode 2582. Pass the Pillow python solutions
Просмотров 244 месяца назад
There are n people standing in a line labeled from 1 to n. The first person in the line is holding a pillow initially. Every second, the person holding the pillow passes it to the next person standing in the line. Once the pillow reaches the end of the line, the direction changes, and people continue passing the pillow in the opposite direction. For example, once the pillow reaches the nth pers...
Leetcode 2058. Find the Minimum and Maximum Number of Nodes Between Critical Points python solution
Просмотров 74 месяца назад
A critical point in a linked list is defined as either a local maxima or a local minima. A node is a local maxima if the current node has a value strictly greater than the previous node and the next node. A node is a local minima if the current node has a value strictly smaller than the previous node and the next node. Note that a node can only be a local maxima/minima if there exists both a pr...
Leetcode 2181. Merge Nodes in Between Zeros python solution
Просмотров 244 месяца назад
You are given the head of a linked list, which contains a series of integers separated by 0's. The beginning and end of the linked list will have Node.val 0. For every two consecutive 0's, merge all the nodes lying in between them into a single node whose value is the sum of all the merged nodes. The modified list should not contain any 0's. Return the head of the modified linked list. #CodingT...
Leetcode 1509. Minimum Difference Between Largest and Smallest Value in Three Moves python solution
Просмотров 834 месяца назад
You are given an integer array nums. In one move, you can choose one element of nums and change it to any value. Return the minimum difference between the largest and smallest value of nums after performing at most three moves. #Algorithms #DataStructures #Coding #Python #LeetCode #Programming #Tech #CodeTutorial #ProblemSolving #SoftwareDevelopment #LearnToCode #CodingChallenges #TechEducation...
Leetcode 350. Intersection of Two Arrays II python solution
Просмотров 84 месяца назад
Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must appear as many times as it shows in both arrays and you may return the result in any order. #Coding #Programming #LeetCode #Python #CodingInterview #DataStructures #Algorithms #TechTutorial #LearnToCode #PythonProgramming #HashMap #Arrays #CodingChallenge #TechEducation #RUclipsLearn...
Leetcode 2192. All Ancestors of a Node in a Directed Acyclic Graph Python Solution
Просмотров 284 месяца назад
You are given a positive integer n representing the number of nodes of a Directed Acyclic Graph (DAG). The nodes are numbered from 0 to n - 1 (inclusive). You are also given a 2D integer array edges, where edges[i] = [fromi, toi] denotes that there is a unidirectional edge from fromi to toi in the graph. Return a list answer, where answer[i] is the list of ancestors of the ith node, sorted in a...
Leetcode 2285. Maximum Total Importance of Roads python solutions
Просмотров 264 месяца назад
You are given an integer n denoting the number of cities in a country. The cities are numbered from 0 to n - 1. You are also given a 2D integer array roads where roads[i] = [ai, bi] denotes that there exists a bidirectional road connecting cities ai and bi. You need to assign each city with an integer value from 1 to n, where each value can only be used once. The importance of a road is then de...
Leetcode 1791. Find Center of Star Graph python solution
Просмотров 264 месяца назад
There is an undirected star graph consisting of n nodes labeled from 1 to n. A star graph is a graph where there is one center node and exactly n - 1 edges that connect the center node with every other node. You are given a 2D integer array edges where each edges[i] = [ui, vi] indicates that there is an edge between the nodes ui and vi. Return the center of the given star graph. #StarGraph #Gra...
Leetcode 1382. Balance a Binary Search Tree Python Solution
Просмотров 224 месяца назад
Given the root of a binary search tree, return a balanced binary search tree with the same node values. If there is more than one answer, return any of them. A binary search tree is balanced if the depth of the two subtrees of every node never differs by more than 1. #code leetcode.com/problems/balance-a-binary-search-tree/solutions/5369751/leetcode-1382-balance-a-binary-search-tree-python-solu...
Leetcode 1038. Binary Search Tree to Greater Sum Tree Python Solution
Просмотров 204 месяца назад
Given the root of a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus the sum of all keys greater than the original key in BST. As a reminder, a binary search tree is a tree that satisfies these constraints: The left subtree of a node contains only nodes with keys less than the node's key. The right subtree of a no...
Leetcode 995. Minimum Number of K Consecutive Bit Flips Python Solution
Просмотров 204 месяца назад
You are given a binary array nums and an integer k. A k-bit flip is choosing a subarray of length k from nums and simultaneously changing every 0 in the subarray to 1, and every 1 in the subarray to 0. Return the minimum number of k-bit flips required so that there is no 0 in the array. If it is not possible, return -1. A subarray is a contiguous part of an array. #Coding #PythonProgramming #Al...
Leetcode 1052. Grumpy Bookstore Owner python solution
Просмотров 344 месяца назад
There is a bookstore owner that has a store open for n minutes. Every minute, some number of customers enter the store. You are given an integer array customers of length n where customers[i] is the number of the customer that enters the store at the start of the ith minute and all those customers leave after the end of that minute. On some minutes, the bookstore owner is grumpy. You are given ...
openvla/openvla-7b HuggingFace Models Image-Text-to-Text
Просмотров 1304 месяца назад
OpenVLA 7B (openvla-7b) is an open vision-language-action model trained on 970K robot manipulation episodes from the Open X-Embodiment dataset. The model takes language instructions and camera images as input and generates robot actions. It supports controlling multiple robots out-of-the-box, and can be quickly adapted for new robot domains via (parameter-efficient) fine-tuning. Model URL: hugg...
Leetcode 1482. Minimum Number of Days to Make m Bouquets
Просмотров 654 месяца назад
Leetcode 1482. Minimum Number of Days to Make m Bouquets
Leetcode 826. Most Profit Assigning Work python solutions
Просмотров 734 месяца назад
Leetcode 826. Most Profit Assigning Work python solutions
Leetcode 633. Sum of Square Numbers Python solution
Просмотров 144 месяца назад
Leetcode 633. Sum of Square Numbers Python solution
Leetcode 330. Patching Array python solution
Просмотров 155 месяцев назад
Leetcode 330. Patching Array python solution
945. Minimum Increment to Make Array Unique python leetcode solutions
Просмотров 585 месяцев назад
945. Minimum Increment to Make Array Unique python leetcode solutions
2037. Minimum Number of Moves to Seat Everyone python leetcode solution
Просмотров 515 месяцев назад
2037. Minimum Number of Moves to Seat Everyone python leetcode solution
Relative Sort Array python Leetcode solution
Просмотров 225 месяцев назад
Relative Sort Array python Leetcode solution
1051. Height Checker Python Leetcode Solution
Просмотров 325 месяцев назад
1051. Height Checker Python Leetcode Solution
974. Subarray Sums Divisible by K Python leetcode Solution
Просмотров 95 месяцев назад
974. Subarray Sums Divisible by K Python leetcode Solution
523. Continuous Subarray Sum Python leetcode Solution
Просмотров 155 месяцев назад
523. Continuous Subarray Sum Python leetcode Solution
648. Replace Words python Solution Leetcode
Просмотров 1075 месяцев назад
648. Replace Words python Solution Leetcode
846. Hand of Straights Python Solution Leetcode
Просмотров 135 месяцев назад
846. Hand of Straights Python Solution Leetcode
1002. Find Common Characters Python Solution Leetcode
Просмотров 175 месяцев назад
1002. Find Common Characters Python Solution Leetcode
409. Longest Palindrome Python Solutions
Просмотров 115 месяцев назад
409. Longest Palindrome Python Solutions
improve voice quality sir
Sure Annus
what are the resources i need to set up ?
Can u make a full video , how to implement this model ?
@@giteshpal405 , I can share it soon.