Disambiguation of Inventors, USPTO

Size: px
Start display at page:

Download "Disambiguation of Inventors, USPTO"

Transcription

1 Disambiguation of Inventors, USPTO Guan-Cheng Li University of California, Berkeley College of Engineering University of California, Berkeley Fung Technical Report No September 17, Blum Hall 5580 Berkeley, CA (510)

2 The Coleman Fung Institute for Engineering Leadership, launched in January 2010, prepares engineers and scientists from students to seasoned professionals with the multidisciplinary skills to lead enterprises of all scales, in industry, government and the nonprofit sector. Headquartered in UC Berkeley s College of Engineering and built on the foundation laid by the College s Center for Entrepreneurship & Technology, the Fung Institute combines leadership coursework in technology innovation and management with intensive study in an area of industry specialization. This integrated knowledge cultivates leaders who can make insightful decisions with the confidence that comes from a synthesized understanding of technological, marketplace and operational implications. Lee Fleming, Faculty Director, Fung Institute Advisory Board Coleman Fung Founder and Chairman, OpenLink Financial Charles Giancarlo Managing Director, Silver Lake Partners Donald R. Proctor Senior Vice President, Office of the Chairman and CEO, Cisco In Sik Rhee General Partner, Rembrandt Venture Partners Fung Management Lee Fleming Faculty Director Ikhlaq Sidhu Chief Scientist and CET Faculty Director Robert Gleeson Executive Director Ken Singer Managing Director, CET Copyright 2013, by the author(s). All rights reserved. Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific permission. 130 Blum Hall 5580 Berkeley, CA (510)

3 Abstract: Since the USPTO does not require unique identifiers in the application process, it can be hard to search for a specific inventor and his or her patents, especially if the inventor s name is common or has multiple forms. Ad-hoc disambiguation methods based on thresholds and string comparison matching are common but vulnerable to bias and idiosyncratic to a training set. To tackle the problem, I employ a large scale-clustering algorithm, adaptive K-means, which automates the disambiguation. The algorithm considers statistical correlations between each inventor name pair, and learns from the entire USPTO dataset regarding when that pair needs to be lumped, i.e., be treated as the same person, thereby being assigned one unique identifier, or to be split, i.e., be treated as different persons, hence being assigned two different identifiers. Our goal is to have a robust engine that will automatically disambiguate the entire USPTO inventors on a weekly basis, upon each issuance of new patents every Tuesday, and to make the disambiguated dataset available to interdisciplinary researchers who rely on this data. This work is supported by the United States Patent and Trademark Office And the American Institutes for Research. 130 Blum Hall 5580 Berkeley, CA (510)

4 Algorithm* Todisambiguateinventors,weconsiderseveralpatentattributesincludingthepublishedname, patenttechnologyclass,city,his/herco9inventornames,andassignee.todisambiguate,we meantoassignuniqueidentifierstoeachinventoracrosstheusptopatentdatabase. Step1:Vectorization Wedefineadocumentunitofapatentasacollectionofthatpatent sattributes.werepresent thatunitasanunorderedcollectionofkeys.theoccurrenceofeachkeyisusedasafeaturefor trainingaclassifier.webuildadocument9by9keyincidencematrix,whichissparsebecausea patentcannotuseallthekeys.forexample,ifapatenthasthreeinventors,hasaprimaryclass, hasoneassignee,hasacity,thenthesumoftherowofthatpatentis =6.ifapatentis filedbyaloneinventor,thenthesumoftherowofthatpatentis =3.toillustrate,see thebelowfigure. SupposeJohnDavisfiledfivepatents,A,B,C,D,E.Here,letJohnDavisbeacolumnthatis depictedbyablackverticaltab.welookcloseratthefiverowsthathave 1 salongthatcolumn, namelytheindexofthepatentsbeingfiledbyjohndavis. Havingformedamatrix,wecancomputecorrelationsbetweenrows(patents)andcolumns (inventors). Step2:Distancemeasurements Distancemeasurementscanbecomputedinanumberofways,e.g.,Euclideandistance, Manhattandistance,Chebyshevdistance,andMahalanobis.Theyallowforevaluationofthe

5 distancethataninventorvariesfromtheotherinventor.here,iadopttheeuclideandistance. Step3:Splittingthesameinventornamebyinter9clustering Certaincommonnamescanrepresentmultiplepersons,e.g.,JohnDavis.If,infact,thereare fourdifferentsuchpeopleacrosstheusptodataset,weshouldpreparefouruniqueidentifiers forjohndavis. Weexaminetheinventorblockandextractalistofuniqueinventornames.Toinitialize,we treateachindividualinventorasadistinctperson,e.g.,byassigninginitialidentifiers.then,we clustereachinventorblockthatiscenteredbytheinventornames,i.e.,johndavisasan example,byapplyingthek9meansclusteringalgorithmbasedonabottom9upapproach.when splitting,wecalculatethenewmeanstobethecentroidsoftheobservationsinthenew clusters. Wedeterminetheclustersizebyminimizingthesumofeachclusters sumoftheinter9cluster s squareddistances.inthisexample,thefivenames,johndavis,aregroupeddowntofour clusters.whenthesumnolongerdecreases,wehavereachedalocalminimum.inotherwords, increasingtheclusternumbertofivewouldn tdecreasetheobjectivefunctionandhencewe stopatfourclustersforjohndavis. Step3:Lumpingdifferentinventornamesbyintra9clustering Oncesplittingisdone,weassignthecentersofeachclusteruniqueidentifiersandaugmentthe

6 matrixcolumn9wisebytheiruniqueidentifiers,asdepicted Bylumping,wemeantomergenamingaliasesintoonepersonif,infact,theyshouldbeone personbasedonwhattheotherfactors,suchasco9inventor,assignee,class,orcity,suggest. ThisstepisdesignedtotreatJimandJames,BobandRobert,or,ArnaudGourdol,ArnaudP Gourdol,ArnaudPJGourdol,andArnoGourdolassamepersons.Thealgorithmassigns inventorstothenearestclusterbydistance.here,ifaninventornotinaclusterisdetermined bythealgorithmtobelumpedintoanothercluster,therearethreepossibilitiesforthenaming match. (1) Thelastnamesagree,thefirstnamesdisagree,andthefirstletterofthemiddlenames agree(ifany),forexample,jimandjames.lumpingisperformed. (2) Thelastnamesdisagree,thefirstnamesagree,andthefirstletterofthemiddlenames agree(ifany),duetomarriageandlastnamechange.lumpingisperformed. (3) Boththelastnamesandfirstnamesdisagree.Namechangeistheonlyreasonforthemto bethesameperson.withoutpersonallyknowingoneoftheinventors,itisimpossibletotell. Lumpingisnotperformed. Step4:Blockingandtie9breaking ThegoaloftheautomatedK9meanalgorithmistoproduceahighclusterqualitywithhigh intra9clustersimilarityandlowinter9clustersimilarity.thisobjectivefunctiontobeoptimizedis expressedas:

7 Ø Q representstheclusterquality.ifthequalityis0orlower,thentwoitemsofthesamecluster are,onaverage,moredissimilarthanapairofitemsfromtwodifferentclusters.ifthequality ratingiscloserto1,itmeansthattwoitemsfromdifferentclustersareentirelydissimilar,and itemsfromthesameclusteraremoresimilartoeachother.thiswillalsoresultinadenser k9mean. Generalization* ThevectorizationofentireUSPTOdatabaseallowsforthedisambiguationprocesstobegeneric. Thiswillalsofacilitatedisambiguationofattorneynamesbyexaminernamesbysimply augmentingthematrixtotherightbyattorneyblocksorexaminerblocks,ortags. Results*for*Download* Thedisambiguationengineprocessedatotalof10,708,200inventornamesacross5,021,243 patents,andidentified3,421,276uniqueinventors.download 1975 July16, Accuracy*Assessment* Weassessaccuracybymeasuringlumping!LandsplittingSerrors. Lumpingoccurswhen distinctinventorsareincorrectlyidentifiedasone.splittingoccurswhenoneinventoris identifiedasmultipleinventors.inthepresentmethod,twoormoreinventorsinthesame clusterconstitutesalumpingerror;oneinventorintwoormoreclustersconstitutesasplitting error. Inordertoestimatetheerrorratesinthetwoclusteringsolutions,wecomparedoureffortstoa manuallycurateddataset.theoriginaldatasetwasasampleof95usinventors(1333 inventor9patentinstances)drawnfromtheengineeringandbiochemistryfields,withcurrentor previousacademicaffiliations.astheseareeminentacademics,thisdatabaseoversamples prolificinventors.thepatentswithinthebenchmarkdatasetwerefirstidentifiedfrom inventors CVs.Weattemptedtocontactallinventorsinthedataset,via andthenphone, inordertovalidateourdisambiguationoftheirpatents.wealsocross9checkedourresultswith onlineresourcesandhumanpatternrecognition.thelatestversionofthecomparisonfileis downloadableat:

8 (BenchmarkfileV7) Theactualcomparisonresultsareat: Foreachinventorinthisstandardweidentifiedtheirsplitrecords(thatfailedtomaptohis/her largestcluster).thetotalnumberofsplitrecordsdividedbythetotalnumberofrecordsinthe standardyieldsoursplittingstatistic.similarly,foreachclusterinthestandard,weidentified lumpedrecords(thatdidnotbelonginthelargestsub9clusterbyasingleinventorinthe standard.)thetotalnumberoflumpedrecordsdividedbythetotalnumberofrecordsinthe standardyieldsourlumpingstatistic.basedonthisbenchmark,splittingandlumpingerrorsare 11/558=1.97%and27/585=4.62%.

CleanEnergyPatentMapper: Visualization of the sources of clean tech inventions

CleanEnergyPatentMapper: Visualization of the sources of clean tech inventions CleanEnergyPatentMapper: Visualization of the sources of clean tech inventions Guan-Cheng Li Department of Electrical Engineering and Computer Sciences UC Berkeley guanchengli@eecs.berkeley.edu Lee Fleming

More information

MobilityMapper: Visualizations of Inventor Mobility,

MobilityMapper: Visualizations of Inventor Mobility, MobilityMapper: Visualizations of Inventor Mobility, 1975-2010 Guan-Cheng Li Department of Electrical Engineering and Computer Sciences UC Berkeley guanchengli@eecs.berkeley.edu Lee Fleming Fung Institute

More information

Disambiguation and Co-authorship Networks of the U.S. Patent Inventor Database

Disambiguation and Co-authorship Networks of the U.S. Patent Inventor Database Disambiguation and Co-authorship Networks of the U.S. Patent Inventor Database Lee Fleming Many thanks to Julia Lane and SciSIP 199704! Will the real Matt Marx please stand up? Disambiguation Matt Marx

More information

THE AMERICAN INTELLECTUAL PROPERTY LAW ASSOCIATION RECOMMENDATIONS REGARDING QUALIFICATIONS FOR

THE AMERICAN INTELLECTUAL PROPERTY LAW ASSOCIATION RECOMMENDATIONS REGARDING QUALIFICATIONS FOR THE AMERICAN INTELLECTUAL PROPERTY LAW ASSOCIATION RECOMMENDATIONS REGARDING QUALIFICATIONS FOR THE NEXT DIRECTOR AND DEPUTY DIRECTOR OF THE U.S. PATENT AND TRADEMARK OFFICE Revised and approved, AIPLA

More information

Patent Data: New Metrics and New Linkages. How can we be more clever in using our data?

Patent Data: New Metrics and New Linkages. How can we be more clever in using our data? Patent Data: New Metrics and New Linkages or How can we be more clever in using our data? May 2016 Lee Fleming This work is supported by NSF SCISIP grant #1360228, the Kauffman Foundation, the US Patent

More information

The Latest from the Fung Institute Patent Lab Gabe Fierro, Lee Fleming, Kevin Johnson, Aditya Kaulagi, Guan Cheng Li, Sophia Pham, Bill Yeh

The Latest from the Fung Institute Patent Lab Gabe Fierro, Lee Fleming, Kevin Johnson, Aditya Kaulagi, Guan Cheng Li, Sophia Pham, Bill Yeh The Latest from the Fung Institute Patent Lab Gabe Fierro, Lee Fleming, Kevin Johnson, Aditya Kaulagi, Guan Cheng Li, Sophia Pham, Bill Yeh SAB: Stu Graham (Ga Tech), David Kappos (Cravath, Swain and Moore),

More information

Intellectual Property Strategies for New Berkeley Ventures: A Framework

Intellectual Property Strategies for New Berkeley Ventures: A Framework Intellectual Property Strategies for New Berkeley Ventures: A Framework Engineering Leadership Technical Brief Summary Christine Ho, Beverly Alexander, Susan Broderick, Ikhlaq Sidhu (PI) This is a companion

More information

Berkeley Method of Entrepreneurship Bootcamp (IEOR 192) COURSE SYLLABUS. Spring 2015, Instructor Ikhlaq Sidhu DRAFT DESCRIPTION

Berkeley Method of Entrepreneurship Bootcamp (IEOR 192) COURSE SYLLABUS. Spring 2015, Instructor Ikhlaq Sidhu DRAFT DESCRIPTION Berkeley Method of Entrepreneurship Bootcamp (IEOR 192) COURSE SYLLABUS DESCRIPTION This four- day intensive program (January 12 15, 2015 8:30 am 5:30 pm at Banatao Auditorium, on campus) offered by the

More information

Berkeley Postdoc Entrepreneur Program (BPEP)

Berkeley Postdoc Entrepreneur Program (BPEP) Berkeley Postdoc Entrepreneur Program (BPEP) BPEP Mission: To foster entrepreneurship in the UC Berkeley postdoctoral and scientific community in order to move innovations from the laboratory to the marketplace.

More information

Serco Awarded $95 Million Patent Classi cation Contract with the U.S. Patent and Trademark Of ce

Serco Awarded $95 Million Patent Classi cation Contract with the U.S. Patent and Trademark Of ce 3/20/2018 Serco Awarded $95 Million Patent Classification Contract with the U.S. Patent and Trademark Office :: Serco Inc. Serco Serco Awarded $95 Million Patent Classi cation Contract with the U.S. Patent

More information

SRII SRII Management Team

SRII SRII Management Team SRII Management Team SRII President: Kris Singh, IBM Services Research Kris Singh is the Director of Strategic Programs for Service Research at IBM Almaden Research Center in San Jose, CA. Kris has over

More information

Untying the Gordian Knot:

Untying the Gordian Knot: Untying the Gordian Knot: Providing Order in the Invention Disclosure Process Workshop Topics 1. Inventor Relations 2. Technology Scouting 3. Crafting Disclosures Processes 4. Disclosure Evaluation and

More information

Performance Analysis of a 1-bit Feedback Beamforming Algorithm

Performance Analysis of a 1-bit Feedback Beamforming Algorithm Performance Analysis of a 1-bit Feedback Beamforming Algorithm Sherman Ng Mark Johnson Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2009-161

More information

Executive Innovation Day. Empowering industry executives to unlock innovative sources of growth!

Executive Innovation Day. Empowering industry executives to unlock innovative sources of growth! Executive Innovation Day Empowering industry executives to unlock innovative sources of growth! Executive Innovation Training will give you cuttingedge view of innovation process and introduce you with

More information

Pedigree Reconstruction using Identity by Descent

Pedigree Reconstruction using Identity by Descent Pedigree Reconstruction using Identity by Descent Bonnie Kirkpatrick Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2010-43 http://www.eecs.berkeley.edu/pubs/techrpts/2010/eecs-2010-43.html

More information

U-Multirank 2017 bibliometrics: information sources, computations and performance indicators

U-Multirank 2017 bibliometrics: information sources, computations and performance indicators U-Multirank 2017 bibliometrics: information sources, computations and performance indicators Center for Science and Technology Studies (CWTS), Leiden University (CWTS version 16 March 2017) =================================================================================

More information

Venture Capital Search Highlights

Venture Capital Search Highlights Venture Capital Venture funding continued at the strongest pace witnessed over the past decade in 2016, and recruiting the future leaders of the industry s emerging growth companies has never been more

More information

The Drivers for Acceptance of Tablet PCs by Faculty in a College of Business

The Drivers for Acceptance of Tablet PCs by Faculty in a College of Business The Drivers for Acceptance of Tablet PCs by Faculty in a College of Business Anderson, John E;Schwager, Paul H;Kerns, Richard L Journal of Information Systems Education; Winter 2006; 17, 4; Research Library

More information

Winners of the McRock IIoT Awards 2018 Announced

Winners of the McRock IIoT Awards 2018 Announced June 20, 2018 Winners of the McRock IIoT Awards 2018 Announced Toronto, Ontario--(June 21, 2018) - McRock Capital, a leading venture capital fund manager focused exclusively on the Industrial Internet

More information

TAKE 5 ON PATENTS. and Trademark Office is increasing every year, with over 18,000 issuing in January 2015 according

TAKE 5 ON PATENTS. and Trademark Office is increasing every year, with over 18,000 issuing in January 2015 according TAKE 5 ON PATENTS POWERED BY THE OCEAN TOMO RATINGS SYSTEM / JANUARY, 215 Take 5: On Patents is a monthly report prepared by Ocean Tomo, driven by insight gleaned from the Ocean Tomo Ratings System. The

More information

Delivering Public Service for the Future. Tomorrow s City Hall: Catalysing the digital economy

Delivering Public Service for the Future. Tomorrow s City Hall: Catalysing the digital economy Delivering Public Service for the Future Tomorrow s City Hall: Catalysing the digital economy 2 Cities that have succeeded over the centuries are those that changed and adapted as economies have evolved.

More information

SME Policy Design and Evaluation: Insights from Research on Entrepreneurship and Innovation

SME Policy Design and Evaluation: Insights from Research on Entrepreneurship and Innovation SME Policy Design and Evaluation: Insights from Research on Entrepreneurship and Innovation Winslow Sargeant, Ph.D. Vice President of Data and Policy, ICSB Email: wsarge2010@me.com October 13, 2016 Background

More information

Inclusion Women at the Forefront of STEM

Inclusion Women at the Forefront of STEM Innovation and Inclusion Women at the Forefront of STEM Hosted by the Association for Women in Science SPONSORSHIP Innovation and Inclusion: Women at the Forefront of STEM The Association for Women in

More information

About The Project. About Peer To Patent

About The Project. About Peer To Patent Peer-to-Patent is a historic initiative by the United States Patent and Trademark Office (USPTO) that opens the patent examination process to public participation for the first time. Peer-to-Patent is

More information

The Complexities of Mixed Use

The Complexities of Mixed Use The Complexities of Mixed Use 2:30 pm 5:00 pm Thursday, October 15, 2015 Piper Auditorium, Gund Hall MDes Real Estate & the Built Environment Harvard University Graduate School of Design 48 Quincy Street,

More information

DRAFT Agenda. designed to Policy at. This one. and wrong! Content: level. the main. their. This day. dealing with

DRAFT Agenda. designed to Policy at. This one. and wrong! Content: level. the main. their. This day. dealing with Day 1: Setting up an IP focused technology transfer support at National, University of Faculty level: Establishing the necessary framework conditions. Understating and being able to clearly regulate the

More information

Copyright 1983, by the author(s). All rights reserved.

Copyright 1983, by the author(s). All rights reserved. Copyright 1983, by the author(s). All rights reserved. Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are

More information

Automating Patent Drafting

Automating Patent Drafting Automating Patent Drafting (DRAFT White paper June 29, 2017) AI + patent preparation: Specifio augments law firm patent practices with cutting-edge deep learning and natural language generation technologies.

More information

THE WICT SENIOR EXECUTIVE SUMMIT (SES)

THE WICT SENIOR EXECUTIVE SUMMIT (SES) SUN, MAR 10 Check in available at Schwab Residential Center 2:00-3:30 pm Optional Campus Tour 3:45-4:00 pm Meet Angela Thomas in the lobby of the Schwab Residential Center. We will walk as a group to the

More information

Managing IP Assets Throughout the. Patent Lifecycle

Managing IP Assets Throughout the. Patent Lifecycle Managing IP Assets Throughout the Patent Lifecycle You or your clients have invested heavily in developing and acquiring intellectual property. In some cases you may have been threatened by others with

More information

Internationalisation of STI

Internationalisation of STI Internationalisation of STI Challenges for measurement Prof. Dr. Reinhilde Veugelers (KUL-EC EC-BEPA) Introduction A complex phenomenon, often discussed, but whose drivers and impact are not yet fully

More information

Economic Trends Affecting Hospitality Sellers in Today s Turbulent Marketplace

Economic Trends Affecting Hospitality Sellers in Today s Turbulent Marketplace Economic Trends Affecting Hospitality Sellers in Today s Turbulent Marketplace webinar will be begin shortly. If you need technical assistance with the webcast, contact us at hsmai@commpartners.com and

More information

Field evaluation of programmable thermostats: Does usability facilitate energy saving behavior?

Field evaluation of programmable thermostats: Does usability facilitate energy saving behavior? Field evaluation of programmable thermostats: Does usability facilitate energy saving behavior? Olga Sachs, Ph.D. Fraunhofer Center for Sustainable Energy Systems, CSE osachs@fraunhofer.org Thermostat

More information

Northwestern Intellectual Property Policies. OSR-Evanston Quarterly Network Monday, April 13 th Ben Frey, J.D., Senior Contracts Manager

Northwestern Intellectual Property Policies. OSR-Evanston Quarterly Network Monday, April 13 th Ben Frey, J.D., Senior Contracts Manager Northwestern Intellectual Property Policies OSR-Evanston Quarterly Network Monday, April 13 th Ben Frey, J.D., Senior Contracts Manager Overview Define baseline terms (IP, patents, inventions, copyright)

More information

A Synthetic Inductor Implementation of Chua's Circuit

A Synthetic Inductor Implementation of Chua's Circuit A Synthetic Inductor Implementation of Chua's Circuit Bharathwaj Muthuswamy Tamara Blain Kyle Sundqvist Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report

More information

Final Pitch Competition PROGRAM GUIDE. Wednesday, March 2, 2016 at HIMSS16 VENETIAN - PALAZZO - SANDS EXPO CENTER LEVEL 3 - LIDO 3104 LAS VEGAS, NV

Final Pitch Competition PROGRAM GUIDE. Wednesday, March 2, 2016 at HIMSS16 VENETIAN - PALAZZO - SANDS EXPO CENTER LEVEL 3 - LIDO 3104 LAS VEGAS, NV Final Pitch Competition PROGRAM GUIDE Wednesday, March 2, 2016 at HIMSS16 VENETIAN - PALAZZO - SANDS EXPO CENTER LEVEL 3 - LIDO 3104 LAS VEGAS, NV #HITVenture #HIMSS16 1 Presented by: WEDNESDAY, MARCH

More information

Discussion: Does Scientific Innovation Lead to Academic Entrepreneurship?

Discussion: Does Scientific Innovation Lead to Academic Entrepreneurship? Discussion: Does Scientific Innovation Lead to Academic Entrepreneurship? Andrew A. Toole Deputy Chief Economist, US Patent and Trademark Office Research Associate, ZEW, Mannheim, Germany Labor Market

More information

Mobility of Inventors and Growth of Technology Clusters

Mobility of Inventors and Growth of Technology Clusters Mobility of Inventors and Growth of Technology Clusters AT&T Symposium August 3-4 2006 M. Hosein Fallah, Ph.D. Jiang He Wesley J. Howe School of Technology Management Stevens Institute of Technology Hoboken,

More information

Unleashing Social Entrepreneurship: New Partnerships for a Better World

Unleashing Social Entrepreneurship: New Partnerships for a Better World Unleashing Social Entrepreneurship: New Partnerships for a Better World Forum Program as at 26 June 2015 Now in its 14 th year, the Asian Forum on Corporate Social Responsibility (AFCSR) is Asia s leading

More information

Overview. How is technology transferred? What is technology transfer? What is Missouri S&T technology transfer?

Overview. How is technology transferred? What is technology transfer? What is Missouri S&T technology transfer? What is technology transfer? Technology transfer is a key component in the economic development mission of Missouri University of Science and Technology. Technology transfer complements the research mission

More information

Invention and Technology Disclosure Instructions

Invention and Technology Disclosure Instructions and Technology Disclosure Instructions General Information The purpose of disclosing an invention or other technology is to record what was invented or created and provide a basis for decisions on how

More information

FINANCIAL REPORTING: CURRENT ISSUES, FUTURE PERSPECTIVES

FINANCIAL REPORTING: CURRENT ISSUES, FUTURE PERSPECTIVES FINANCIAL REPORTING: CURRENT ISSUES, FUTURE PERSPECTIVES THE FINANCIAL REPORTING FACULTY S SECOND ANNUAL IFRS CONFERENCE 12 DECEMBER 2012, CHARTERED ACCOUNTANTS HALL, LONDON BUSINESS WITH CONFIDENCE icaew.com/frf

More information

IP and Technology Management for Universities

IP and Technology Management for Universities IP and Technology Management for Universities Yumiko Hamano Senior Program Officer WIPO University Initiative Innovation and Technology Transfer Section, Patent Division, WIPO Outline! University and IP!

More information

LED HOLDINGS AND LIGHTING SCIENCE GROUP COMBINE FORCES. Transaction creates unique lighting solutions company with world class management team

LED HOLDINGS AND LIGHTING SCIENCE GROUP COMBINE FORCES. Transaction creates unique lighting solutions company with world class management team Media Contact: Investor/Analyst Contact: Lewis Goldberg Zach Gibler KCSA Worldwide LED Holdings (212) 896-1216 (740) 644-2884 lgoldberg@kcsa.com zach.gibler@ledeffects.com LED HOLDINGS AND LIGHTING SCIENCE

More information

BARNEY UPDATE BARNEY SCHOOL BY THE NUMBERS. 5% Among Top Business Schools Worldwide that are AACSB Accredited

BARNEY UPDATE BARNEY SCHOOL BY THE NUMBERS. 5% Among Top Business Schools Worldwide that are AACSB Accredited NONPROFIT ORG US POSTAGE PAID UNIVERSITY OF HARTFORD All of the programs offered through the Barney School are accredited by AACSB International (Association to Advance Collegiate Schools of Business),

More information

Patent Subsidies and Patent Filing in China

Patent Subsidies and Patent Filing in China The First Applicant-level Study Zhen Lei 1 Zhen Sun 2 Brian Wright 2 1 Department of Energy and Mineral Engineering and the EMS Energy Institute Penn State University 2 Department of Agricultural and Resource

More information

Beyond Photolithography The promise of nano-imprint lithography

Beyond Photolithography The promise of nano-imprint lithography Beyond Photolithography The promise of nano-imprint lithography DISTINGUISHED SPEAKERS Dr. S. V. Sreenivasan (CTO, Molecular Imprints, Inc.) John Pong (Nanonex, Inc.) Dr. Will Tong (Quantum Science Research,

More information

9/27/2013. Office of Technology Transfer Overview. Impacts from NC State Technology Transfer. NC State s Office of Technology Transfer

9/27/2013. Office of Technology Transfer Overview. Impacts from NC State Technology Transfer. NC State s Office of Technology Transfer Office of Technology Transfer Overview Cluster Hire Faculty Orientation September 25, Kelly B. Sexton, Ph.D. Director North Carolina State University Impacts from NC State Technology Transfer 800 U.S.

More information

Infringement and Enforcement Panel How can you identify infringement and enforce your rights?

Infringement and Enforcement Panel How can you identify infringement and enforce your rights? Infringement and Enforcement Panel How can you identify infringement and enforce your rights? April 26, 2017 Common approach to identification of licensing or subsequent enforcement How do most patent

More information

Honors Cohort Spring, 2018 Business Trip to San Francisco Tuesday, January 16 Friday, January 19 Objectives:

Honors Cohort Spring, 2018 Business Trip to San Francisco Tuesday, January 16 Friday, January 19 Objectives: Objectives: Tech Industry: Gaining a better understanding of the tech industry as a whole and what that landscape currently looks like and what the outlook is in the future Creativity/innovation: How do

More information

Accenture Technology Vision 2015 Delivering Public Service for the Future Five digital trends: A public service outlook

Accenture Technology Vision 2015 Delivering Public Service for the Future Five digital trends: A public service outlook Accenture Technology Vision 2015 Delivering Public Service for the Future Five digital trends: A public service outlook INFOGRAPHIC Digital government is about using innovative technologies to improve

More information

How does Basic Research Promote the Innovation for Patented Invention: a Measuring of NPC and Technology Coupling

How does Basic Research Promote the Innovation for Patented Invention: a Measuring of NPC and Technology Coupling International Conference on Management Science and Management Innovation (MSMI 2015) How does Basic Research Promote the Innovation for Patented Invention: a Measuring of NPC and Technology Coupling Jie

More information

A Research and Innovation Center

A Research and Innovation Center A Research and Innovation Center SRI: A Nonprofit Research Institute Innovations from SRI International have created lasting benefits to society touching our lives every day. SRI is a critical bridge between

More information

Accepting Equity When Licensing University Technology

Accepting Equity When Licensing University Technology University of California - Policy EquityLicensingTech Accepting Equity When Licensing University Technology Responsible Officer: SVP - Research Innovation & Entrepreneurship Responsible Office: RI - Research

More information

Running head: ETHICS, TECHNOLOGY, SUSTAINABILITY AND SOCIAL ISSUES 1. Ethics, Technology, Sustainability and Social Issues in Business.

Running head: ETHICS, TECHNOLOGY, SUSTAINABILITY AND SOCIAL ISSUES 1. Ethics, Technology, Sustainability and Social Issues in Business. Running head: ETHICS, TECHNOLOGY, SUSTAINABILITY AND SOCIAL ISSUES 1 Ethics, Technology, Sustainability and Social Issues in Business Name Institutional Affiliation ETHICS, TECHNOLOGY, SUSTAINABILITY AND

More information

A Case Study on the Use of Unstructured Data in Healthcare Analytics. Analysis of Images for Diabetic Retinopathy

A Case Study on the Use of Unstructured Data in Healthcare Analytics. Analysis of Images for Diabetic Retinopathy A Case Study on the Use of Unstructured Data in Healthcare Analytics Analysis of Images for Diabetic Retinopathy A Case Study on the Use of Unstructured Data in Healthcare Analytics: Analysis of Images

More information

Wi-Fi Fingerprinting through Active Learning using Smartphones

Wi-Fi Fingerprinting through Active Learning using Smartphones Wi-Fi Fingerprinting through Active Learning using Smartphones Le T. Nguyen Carnegie Mellon University Moffet Field, CA, USA le.nguyen@sv.cmu.edu Joy Zhang Carnegie Mellon University Moffet Field, CA,

More information

Patent Masters Symposium A part of the IPWatchdog Institute

Patent Masters Symposium A part of the IPWatchdog Institute Patent Masters Symposium A part of the IPWatchdog Institute Program Agenda * Monday, March 25, 2019 8:30am to 9:00am Registration & Continental Breakfast 9:00am to 9:15am Gene Quinn: Welcome & Introductions

More information

Unleashing Social Entrepreneurship:

Unleashing Social Entrepreneurship: Unleashing Social Entrepreneurship: New Partnerships for a Better World Forum Program as of 5 August 2015 Now in its 14 th year, the Asian Forum on Corporate Social Responsibility (AFCSR) is Asia s leading

More information

WEB DGE M A R K E T I N G

WEB DGE M A R K E T I N G WEB DGE M A R K E T I N G Main Program Guest Speakers Expert Panel: Business SA s Entrepreneurial Programs Duncan Redman Business Coach & Mentor for Micro Businesses Duncan is a Chartered Accountant

More information

MONTHLY REPORT JULY 2018 XTPL S.A. Wrocław, r.

MONTHLY REPORT JULY 2018 XTPL S.A. Wrocław, r. MONTHLY REPORT JULY 2018 Wrocław, 14.08.2018 r. 1. INFORMATION ON ISSUE OBJECTIVES AND OTHER IMPORTANT EVENTS IN THE REPORTING PERIOD a. SUMMARY OF OPERATING ACTIVITIES IN THE AREA OF THE ISSUER S BUSINESS

More information

An investment in a patent for your invention could be the best investment you will ever

An investment in a patent for your invention could be the best investment you will ever San Francisco Reno Washington D.C. Beijing, China PATENT TRADEMARK FUNDING BROKER INVENTOR HELP Toll Free: 1-888-982-2927 San Francisco: 415-515-3005 Facsimile: (775) 402-1238 Website: www.bayareaip.com

More information

Triton Technology Fund

Triton Technology Fund Triton Technology Fund Presentation to Dean s Engineering Council March 22, 2013 Generate Returns for LPs/GPs Motivation for Fund Catalyze translation of UCSD discoveries for the benefit of society Enable

More information

Digital Health. Jiban Khuntia, PhD. Assistant Professor Business School University of Colorado Denver

Digital Health. Jiban Khuntia, PhD. Assistant Professor Business School University of Colorado Denver Digital Health Jiban Khuntia, PhD Assistant Professor Business School University of Colorado Denver Digital Digital usually refers to something using digits, particularly binary digits. Examples: Digital

More information

ILLINOIS MATHEMATICS AND SCIENCE ACADEMY

ILLINOIS MATHEMATICS AND SCIENCE ACADEMY ILLINOIS MATHEMATICS AND SCIENCE ACADEMY igniting and nurturing creative, ethical, scientific minds that advance the human condition Remarks by Sheila MB Griffin Commencement 5/30/15 Class of 2015 Good

More information

PRESENTERS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

PRESENTERS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> PRESENTERS >>>>>>>>>> Paula Rosput Reynolds President and Chief Executive Officer Mike Hughes Executive Vice President Insurance Operations Paula Rosput Reynolds is president and chief executive officer

More information

Parallelism Across the Curriculum

Parallelism Across the Curriculum Parallelism Across the Curriculum John E. Howland Department of Computer Science Trinity University One Trinity Place San Antonio, Texas 78212-7200 Voice: (210) 999-7364 Fax: (210) 999-7477 E-mail: jhowland@trinity.edu

More information

Technology Leadership Course Descriptions

Technology Leadership Course Descriptions ENG BE 700 A1 Advanced Biomedical Design and Development (two semesters, eight credits) Significant advances in medical technology require a profound understanding of clinical needs, the engineering skills

More information

Supplementary Data for

Supplementary Data for Supplementary Data for Gender differences in obtaining and maintaining patent rights Kyle L. Jensen, Balázs Kovács, and Olav Sorenson This file includes: Materials and Methods Public Pair Patent application

More information

Opportunity Assessment & Potential Licensing Partners

Opportunity Assessment & Potential Licensing Partners Opportunity Assessment & Potential Licensing Partners Stanford OTL/iFARM PROGRAM Efrat Kasznik, Founder & President Foresight Valuation Group, LLC Foresight Valuation Group 2016 Palo Alto, CA (650) 561-3374

More information

Patent Masters Symposium A part of the IPWatchdog Institute

Patent Masters Symposium A part of the IPWatchdog Institute Patent Masters Symposium A part of the IPWatchdog Institute Program Agenda * Monday, March 25, 2019 8:30am to 9:00am Registration & Continental fast 9:00 to 9:15am Gene Quinn: Welcome & Introductions Session

More information

High Performance Computing Systems and Scalable Networks for. Information Technology. Joint White Paper from the

High Performance Computing Systems and Scalable Networks for. Information Technology. Joint White Paper from the High Performance Computing Systems and Scalable Networks for Information Technology Joint White Paper from the Department of Computer Science and the Department of Electrical and Computer Engineering With

More information

FALL LECTURE SERIES 14 LECTURES 14 HOURS. 14 WAYS to IMPROVE YOUR BUSINESS VENTURE. presented by

FALL LECTURE SERIES 14 LECTURES 14 HOURS. 14 WAYS to IMPROVE YOUR BUSINESS VENTURE. presented by FALL 2018 LECTURE SERIES 14 LECTURES 14 HOURS 14 WAYS to IMPROVE YOUR BUSINESS VENTURE presented by FALL 2018 LECTURE SERIES 12 NOON TUESDAYS CB 101a on the UVU Main Campus AUG 28 SEP 4 SEP 11 SEP 18 SEP

More information

September 27, 2016, Priora Business Center, Kloten Zurich Airport / Switzerland

September 27, 2016, Priora Business Center, Kloten Zurich Airport / Switzerland September 27, 2016, Priora Business Center, Kloten Zurich Airport / Switzerland Opportunities and Challenges for Medical Devices companies expanding to Asia Third Cicor Innovation Insights Symposium Supported

More information

GENEVA COMMITTEE ON DEVELOPMENT AND INTELLECTUAL PROPERTY (CDIP) Fifth Session Geneva, April 26 to 30, 2010

GENEVA COMMITTEE ON DEVELOPMENT AND INTELLECTUAL PROPERTY (CDIP) Fifth Session Geneva, April 26 to 30, 2010 WIPO CDIP/5/7 ORIGINAL: English DATE: February 22, 2010 WORLD INTELLECTUAL PROPERT Y O RGANI ZATION GENEVA E COMMITTEE ON DEVELOPMENT AND INTELLECTUAL PROPERTY (CDIP) Fifth Session Geneva, April 26 to

More information

Science of Science & Innovation Policy and Understanding Science. Julia Lane

Science of Science & Innovation Policy and Understanding Science. Julia Lane Science of Science & Innovation Policy and Understanding Science Julia Lane Graphic Source: 2005 Presentation by Neal Lane on the Future of U.S. Science and Technology Tag Cloud Source: Generated from

More information

Continuing the discussions at the Asia-Pacific Business Forum held at Cyberport just right

Continuing the discussions at the Asia-Pacific Business Forum held at Cyberport just right For Immediate Release Internet Economy Summit 2018 Unlocked Insights on Digital Innovation Global leaders from start-ups to internet giants shared views on the future of business Hong Kong, 12 April, 2018

More information

USGBC Board Candidate for Product Manufacturer Executive

USGBC Board Candidate for Product Manufacturer Executive NAME TITLE EMPLOYER URL CITY/STATE USGBC CHAPTER CANDIDATE BIOGRAPHY Brandon Tinianov Chief Technology Officer Serious Materials www.seriousmaterials.com Sunnyvale, CA USGBC Northern California Chapter

More information

2015 Real Estate Industry Update A landscape for change: Transforming for the future

2015 Real Estate Industry Update A landscape for change: Transforming for the future 2015 Real Estate Industry Update A landscape for change: Transforming for the future December 10, 2015 Welcome Welcome to Deloitte s 2015 real estate industry update The real estate industry has been on

More information

FINC915 Venture Lab Participating Firms: FALL 2010

FINC915 Venture Lab Participating Firms: FALL 2010 FINC915 Venture Lab Participating Firms: FALL 2010 Please Note: The listed firms will consider candidates. Not all firms will eventually offer a position to students. LOCAL FIRMS: I2A Fund Number of slots:

More information

A 3-10GHz Ultra-Wideband Pulser

A 3-10GHz Ultra-Wideband Pulser A 3-10GHz Ultra-Wideband Pulser Jan M. Rabaey Simone Gambini Davide Guermandi Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2006-136 http://www.eecs.berkeley.edu/pubs/techrpts/2006/eecs-2006-136.html

More information

EDA Industry to Recognize Dr. Chenming Hu with the Phil Kaufman Award at DAC 2013

EDA Industry to Recognize Dr. Chenming Hu with the Phil Kaufman Award at DAC 2013 NEWS RELEASE For more information, contact: Kristin Steen Jennifer Cermak Public Relations for the IEEE Council on EDA EDA Consortium (512) 297-7126 (408) 283-2121 admin@ieee-ceda.com jennifer.cermak@edac.org

More information

Practical measures to encourage the diffusion of green technologies: Licensing Fast tracking of green patents The GreenXchange Platform

Practical measures to encourage the diffusion of green technologies: Licensing Fast tracking of green patents The GreenXchange Platform Practical measures to encourage the diffusion of green technologies: Licensing Fast tracking of green patents The GreenXchange Platform Ahmed Abdel Latif Senior Programme Manager Innovation, Technology

More information

More Gender Diversity Among General Counsels By Cynthia Dow and Lloyd M. Johnson Jr.

More Gender Diversity Among General Counsels By Cynthia Dow and Lloyd M. Johnson Jr. More Gender Diversity Among General Counsels By Cynthia Dow and Lloyd M. Johnson Jr. First, the good news: The number of women appointed to general counsel jobs in the Fortune 500 increased sharply again

More information

Georgia Tech: Innovation with a Global Footprint

Georgia Tech: Innovation with a Global Footprint 2012, Georgia Institute of Technology Georgia Tech: Innovation with a Global Footprint Stephen Fleming Vice President @stephenfleming Stephen Fleming 17+ years venture capital investment

More information

Vendor Accuracy Study

Vendor Accuracy Study Vendor Accuracy Study 2010 Estimates versus Census 2010 Household Absolute Percent Error Vendor 2 (Esri) More than 15% 10.1% to 15% 5.1% to 10% 2.5% to 5% Less than 2.5% Calculated as the absolute value

More information

Creating a Culture of Self-Reflection and Mutual Accountability

Creating a Culture of Self-Reflection and Mutual Accountability Vol. 13, Issue 2, February 2018 pp. 47 51 Creating a Culture of Self-Reflection and Mutual Accountability Elizabeth Rosenzweig Principal UX Consultant User Experience Center Bentley University 175 Forest

More information

Patents. What is a patent? What is the United States Patent and Trademark Office (USPTO)? What types of patents are available in the United States?

Patents. What is a patent? What is the United States Patent and Trademark Office (USPTO)? What types of patents are available in the United States? What is a patent? A patent is a government-granted right to exclude others from making, using, selling, or offering for sale the invention claimed in the patent. In return for that right, the patent must

More information

Jim Labe. The Global Leader in Venture Finance

Jim Labe. The Global Leader in Venture Finance Jim Labe CHIEF EXECUTIVE OFFICER & CO-FOUNDER Jim Labe is the Chief Executive Officer and co-founder of TriplePoint Capital. Mr. Labe is widely recognized as the pioneer of the venture leasing and lending

More information

Asking Questions on Knowledge Exchange and Exploitation in the Business R&D and Innovation Survey

Asking Questions on Knowledge Exchange and Exploitation in the Business R&D and Innovation Survey Asking Questions on Knowledge Exchange and Exploitation in the Business R&D and Innovation Survey John Jankowski Program Director Research & Development Statistics OECD-KNOWINNO Workshop on Measuring the

More information

University IP and Technology Management. University IP and Technology Management

University IP and Technology Management. University IP and Technology Management University IP and Technology Management Yumiko Hamano WIPO University Initiative Program Innovation Division WIPO WIPO Overview IP and Innovation University IP and Technology Management Institutional IP

More information

DESIGN THINKING AND THE ENTERPRISE

DESIGN THINKING AND THE ENTERPRISE Renew-New DESIGN THINKING AND THE ENTERPRISE As a customer-centric organization, my telecom service provider routinely reaches out to me, as they do to other customers, to solicit my feedback on their

More information

DELTA AIR LINES INC /DE/

DELTA AIR LINES INC /DE/ DELTA AIR LINES INC /DE/ FORM 8-K (Current report filing) Filed 12/10/14 for the Period Ending 12/09/14 Address HARTSFIELD ATLANTA INTL AIRPORT 1030 DELTA BLVD ATLANTA, GA 30354-1989 Telephone 4047152600

More information

Creating a Social Investment Fund in Israel: Policy and Financial Considerations

Creating a Social Investment Fund in Israel: Policy and Financial Considerations February, 2014 No. 86 Creating a Social Investment Fund in Israel: Policy and Financial Considerations Daniela Kandel Milken Institute Fellow About the Milken Institute Fellows Program The Milken Institute

More information

The Private Directors Association Vision

The Private Directors Association Vision Our MISSION is creating, sustaining and enhancing Private Company value through the active use of Boards of Directors and Advisory Boards. We advocate for excellent practices in board formation and governance.

More information

SESSION 2 GOOD PRACTICES FOR ACCELERATING DIGITAL TRANSFORMATION ATING DIGITAL TRANSFORMATION GOOD PRACTICES FOR ACCELER-

SESSION 2 GOOD PRACTICES FOR ACCELERATING DIGITAL TRANSFORMATION ATING DIGITAL TRANSFORMATION GOOD PRACTICES FOR ACCELER- SESSION 2 GOOD PRACTICES FOR ACCELER Damian Derlukiewicz, Phd MEng Deputy Director of The Centre for Scientific and Technical Information Specialist of Comercializationand Technology Transfer facilitate

More information

How Explainability is Driving the Future of Artificial Intelligence. A Kyndi White Paper

How Explainability is Driving the Future of Artificial Intelligence. A Kyndi White Paper How Explainability is Driving the Future of Artificial Intelligence A Kyndi White Paper 2 The term black box has long been used in science and engineering to denote technology systems and devices that

More information

10TH ANNUAL SUMMIT AND HALL OF FAME RECEPTION. March 2018 Washington, D.C. SPONSORSHIP OPPORTUNITIES

10TH ANNUAL SUMMIT AND HALL OF FAME RECEPTION. March 2018 Washington, D.C. SPONSORSHIP OPPORTUNITIES 10TH ANNUAL SUMMIT AND HALL OF FAME RECEPTION March 2018 Washington, D.C. SPONSORSHIP OPPORTUNITIES Honoring Service & Sacrifice ABOUT THE U.S. ARMY WOMEN'S FOUNDATION As our nation participates in Women

More information

New Technology Ventures

New Technology Ventures New Technology Ventures New Technology Ventures Enet October 4, 2016 NTV Management, Inc. NTV s Mission and Approach NTV emphasizes spinning out companies based on well developed technologies from our

More information

Press Release A/IF/PR/16/ (017) 19 May 2016

Press Release A/IF/PR/16/ (017) 19 May 2016 Industry News Press Release A/IF/PR/16/05-19-01(017) 19 May 2016 Young Industrialist Awards of Hong Kong and Industrialist of the Year Award 2016 Now Open for Nominations Nominations for the prestigious

More information