Coder Social home page Coder Social logo

Bharath M Kulkarni's Projects

bartr. icon bartr.

Bartr is an online marketplace for goods and services in exchange for goods and services. The site provides a platform for people with similar trade interests to interact with each other and negotiate deals.

borneo-assignment icon borneo-assignment

An application that can search documents from a cloud storage service like Google Drive on the content inside the document

candidate-elimination icon candidate-elimination

import numpy as np import pandas as pd data=pd.read_csv('data.csv') concepts=np.array(data.iloc[:,0:-1]) print("\nInstances are :\n",concepts) target=np.array(data.iloc[:,-1]) print("\nTarget values are:",target) def learn(concepts,target): specific_h=concepts[0].copy() print("\nInitialize of specific and general_h") general_h=[["?" for i in range(len(specific_h))]for i in range(len(specific_h))] print("\nGeneric Boundary:",general_h) for i,h in enumerate(concepts): print("\nInstance",i+1,"is",h) if target[i]=="yes": print("\nInstance is positive") for x in range(len(specific_h)): if h[x]!=specific_h[x]: specific_h[x]='?' general_h[x][x]='?' if target[i]=="no": print("Instance is negative") for x in range(len(specific_h)): if h[x]!=specific_h[x]: general_h[x][x]=specific_h[x] else: general_h[x][x]='?' print("Specific Boundary after ",i+1,"instances is",specific_h) print("Generic Boundary after ",i+1,"instances is ",general_h) print("\n") indices=[i for i,val in enumerate(general_h) if val==['?','?','?','?','?','?',]] for i in indices: general_h.remove(['?','?','?','?','?','?',]) return specific_h,general_h s_final,g_final=learn(concepts,target) print("Final specific_h:",s_final,sep="\n") print("Final general_h:",g_final,sep="\n")

clr-parser icon clr-parser

A simple string parser based on CLR to check whether a string is acceptable or not for a given grammar.

computer-vision icon computer-vision

Computer Vision, often abbreviated as CV, is defined as a field of study that seeks to develop techniques to help computers “see” and understand the content of digital images such as photographs and videos.Here i am making some code for you to easily learn computer vision

cv icon cv

A Personal Profile Website where you can learn more about me and get in touch with me.

drumkit icon drumkit

A simple website that allows you to play drum sounds

eventfox icon eventfox

An online market place for events in Nitte

just-books icon just-books

A Static Web Application to showcase book information, along with firebase authentication

movie-api icon movie-api

A simple API to perform CRUD operations on a Movie Database

people-counter-opencv icon people-counter-opencv

A Direction-Sensitive People Counter using Computer Vision and DL Algorithms from OpenCV, dlib and MobileNetSSD.Some of the techniques used in this project are Object-tracking, Object Detection and Centroid-tracking among many others.

simple-js-dodge-game- icon simple-js-dodge-game-

A simple javascript browser game that involves dodging from rolling balls. It is similar to chrome's dinosaur game that we can play when there is no internet connection.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.