-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
74 lines (53 loc) · 4.11 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
var model = undefined;
const classifierElement = document.getElementById('classifier');
const loaderElement = document.getElementById('loader');
async function initialize() {
classifierElement.style.display = 'block';
document.getElementById('predict').addEventListener('click', () => predict());
}
async function predict () {
model = await tmImage.load('model/model.json', 'model/metadata.json');
console.log('Successfully loaded model');
maxPredictions = model.getTotalClasses();
flip=false;
const imgEl = document.getElementById('img');
const prediction = await model.predictTopK(imgEl, maxPredictions, flip);
console.log(prediction);
const classes = model.getClassLabels();
if(prediction[0].className == 'animals'){
document.getElementById('console').innerText = '#animal #animals #animallovers #animalface #animallove #animalkingdom #animalsofinstagram #animallover #cute #pets #animalprint #petoftheday #petscorner #petsofinstagram #animales #petsagram #pet #petstagram #animalcrossing #zoo ';
}
if(prediction[0].className == 'art'){
document.getElementById('console').innerText = '#art #artist #artistic #artlovers #artlife #artgallery #creative #artsy #fineart #graphicdesign #drawing #artwork #instaart #painting #illustration #design #sketch #digitalart #artistsoninstagram #arte ';
}
if(prediction[0].className == 'babies'){
document.getElementById('console').innerText ='#baby #babies #cute #babies #baby #love #kids #babiesofinstagram #lovelybaby #cute #babyboy #babylove #cutebaby #children #instababy #childhood #adorable #cutebabies #babyphotography #babymodel ';
}
if(prediction[0].className == 'fashion'){
document.getElementById('console').innerText = '#fashion #style #instafashion #fashionBlogger #fashionista #fashiongoals #fashionoftheday #fashionmood #fashionofthemonth #stylish #MensFashion #WomensFashion #FashionDiaries #FashionWeek #FashionStyle #StyleBlog #StyleBlogger #StreetFashion #OutfitOfTheDay #fashionnova';
}
if(prediction[0].className == 'fitness'){
document.getElementById('console').innerText ='#fitness #exercise #fitnessaddict #body #active #train #fitlife #strength #health #healthy #strong #bodyfitness #fitnessjourney #gymaholic #weights #weighttraining #bodybuilder #instahealth #instafitness #instagym';
}
if(prediction[0].className == 'flowers'){
document.getElementById('console').innerText =' #flowers #nature #flowerlove #flowerphotography #spring #beautiful #naturephotography #garden #flowerbeauty #petals #flowerstagram #florist #plants #floral #naturelovers #colors #colorful #picoftheday #pretty #flowersofinstagram ';
}
if(prediction[0].className == 'food'){
document.getElementById('console').innerText ='#food #foodlove #foodie #instafood #foodphotography #foodstagram #yummy #foodexperience #delicious #foodlover #foodaholic #foodpost #foodstyling #foodinsta #foodgasm #tasty #foody #foodielife #foodpics #fooddiary ';
}
if(prediction[0].className == 'memes'){
document.getElementById('console').innerText ='#memes #meme #funny #memelove #humour #memer #funlover #memeforlife #instameme #funnymemes #lol #memesdaily #instagood #fun #comedy #dankmemes #jokes #sarcasm #viral #lmao';
}
if(prediction[0].className == 'nature'){
document.getElementById('console').innerText ='#nature #naturephotography #naturelovers #naturegeography #naturephotographer #natureperfection #naturephotos #naturelife #natureshoooters #natureshot #naturewalk #naturepic #naturepics #natureseekers #naturegram #naturelove #naturebeauty #natureaddict #natureoftheday #natureone ';
}
if(prediction[0].className == 'selfie'){
document.getElementById('console').innerText = '#selfie #selfies #selfiegram #selfiestick #selfieaddict #selfielove #selfiemood #selfie_time #selfiemode #selfiemania #selfieking #selfielovers #selfieoftheday #instaselfie #selfiemoment #randomselfie #cute #model #beauty #selfportrait'
}
}
function changeImage() {
var imageDisplay = document.getElementById('img');
var uploadedImage = document.getElementById('my-file-selector').files[0];
imageDisplay.src = URL.createObjectURL(uploadedImage);
}
initialize();