Get Data from University LMS - azure-web-app-service

I want to create a website like this https://www.iamasad.xyz/uaf-gpa-cgpa-calculator/. It gets data from the university lms, calculates gpa and cgpa based on registration number and then show to the user. it works like cgpa calculator How it is possible?

To create website as per the above requirement You can refer to this the GitHub sample .
This sample works to create GPA/CGPA calculator of students by using their registration number and gives us the result semester wise as well.
For more information please refer to this
GitHub samples.

Related

How to create excel dashboard with given data?

A job interview recently gave me a screening assessment that I was unable to do correctly because of my inexperience with excel. What is the best way to have completed this assignment?
excel assessment
The assignment is to create a user friendly dashboard for the week of 5/25 – 5/29 that reflects the progress towards goal for participation of each meal service. This dashboard will be shared with each campus’ administration staff as well as cafeteria managers and will be referenced during strategy meetings to improve participation % across the district.
Use the data provided in the Dashboard Assessment file provided to you to build the dashboard.
Note: You can choose any format you would like to present the deliverable. Make any necessary assumptions, just note them.
Our school has a departmental goal for each campus to meet 85% breakfast,80% lunch & 10% supper participation.

Spark Item Similarity Interpretation (Cross-Similarity and Similarity)

I've been using Spark Item Similarity through mahout by following the steps in this article:
https://mahout.apache.org/users/algorithms/intro-cooccurrence-spark.html
I was able to clean my data, setup a local-only spark/hadoop node and all that.
Now, my question relies more in the interpretation of the matrices. I've tried some Google queries with limited success.
I'm creating a multi-modal recommender - and one of my datasets is very similar to the Mahout example.
Example input:
Customer ActionName Product
11064612 view 241505
11086047 purchase 110915
11121878 view CERT_DL
11149030 purchase CERT_FS
11104130 view 111401
The output of mahout is 2 sets of matrices. A similarity matrix and a coocurrence matrix.
This is my similarity matrix (I assume mahout uses my "filter1" purchases)
**791207-WP** 791520-WP:11.350536461453885 791520:9.547158147208393 76130142:7.938639976084232 711215:7.0641921646893024 751309:6.805891904514283
So how would I interpret this? If someone purchased 791207-WP they could be interested in 791520-WP? (so I'd use the left part against purchases of a customer and rank products in the right part?).
The row for 791520-WP looks like this:
791520-WP 76151220:18.954662238247693 791604-WP:13.951210170984268
So, in theory, I'd recommend 76151220 to someone who bought 791520-WP, correct?
Part 2 of the question is interpreting the cross-similarity matrix. Remember my filter2 is "views".
How would I interpret this:
**790907** 76120956:14.2824428207241 791500-LXQ2:13.864741460885853 190907:10.735807818360627
I take this matrix as "someone who visited the 76120956 web page ended up purchasing 790907". So I should promote 790907 to customers who bought 76120956 and maybe even add a link between these 2 products on our site, for example.
Or is it "people who visited the webpage of 790907 ended up buying 76120956"?
My plan is not to use these as-is. I'll still use RowSimilarity and different sources to rank products - but I'm missing the basic interpretation of the outputs from mahout.
If you know of any documentation that clarifies this, that would be a great asset to have.
Thank you.
In both cases the matrix is telling you that the item-id key is similar to the listed items by the LLR value attached to each similar item. Similar in the sense that similar users purchased the items. In the second case it is saying that similar people viewed the items and this view also appears to have led of a purchase of the same item.
Cooccurrence works for purchases alone, cross-occurrence adds the check to make sure the view also correlated with a purchase. This allows you to use both for recommendations.
The output is meant to be used with a search engine generally and you would use a user's history of purchases and views as a 2 field query against the matrices, one in each field.
There are analogous methods to find item-based recommendations.
Better yet, use something like the Universal Recommender here: actionml.com/docs/ur with PredictionIO for an end-to-end system.

Netsuite RMA sample reference

I hope below question is very generic but seeking some expert advice to work on RMA process.
Generation of new sales order for replacements & refunding the customer the specified amount, generating item receipt to track items being returned prior to refunding customer.
eg:
Looking for sample suite script reference to refund back to customer's credit card $XXX (product amount paid + original shipping) for a given sales order.
-Bhasker
You will want to look into SuiteScript 1.0's nlapiTransformRecord or SuiteScript 2.0's N/record/transform. You should be able to transform a Sales Order into a Return Authorization with this API.
If you can give quite a bit more detail about what type of script you're looking for, what triggers you'd like to be able to use to set off this script, I can give a more detailed answer.

How NLP can be used to map a customer's response to some pre-defined action?

We want to map a customer's response to one of our actionable tasks.
Example 1 -
Customer: When will my vehicle be picked up?
System: Customer is asking for pickup date, so provide one.
Example 2 -
Customer: I don’t have title.
System: Customer has title issue. Create a task for support team to help him.
You can take a look at some APIs that will translate statements like that into intents. A great one I've worked with before is Nuance's mix.nlu which can be found here:
https://developer.nuance.com/public/index.php?task=mix

Azure ML Recommendations

I want to use Azure ML to find related products using information from receipts from a store.
I got a file of reciepts:
44366,136778
79619,88975
78861,78864
53395,78129,78786,79295,79353,79406,79408,79417,85829,136712
32340,33973
31897,32905
32476,32697,33202,33344,33879,34237,34422,48175,55486,55490,55498
17800
32476,32697,33202,33344,33879,34237,34422,48175,55490,55497,55498,55503
47098
136974
85832
Each row represent one receipt and each number is a product id.
Given a product id I want to get a list of similar products, i.e. products that was bought together by other customers.
Can anyone point me in the right direction of how do to this?
This seems a good fit for their frequently bought together service (https://datamarket.azure.com/dataset/amla/mba). You may have to preprocess the dataset to get it in the required format. This service has a web UI as well: https://marketbasket.cloudapp.net/
This is a typical problem for Recommender, you can use a model called Machbox recommender to cover such a problem.
Recommender typically use Scoring about items to propose and the use some tricky calculation to predict scores for items users had not scored yet ( a score would be typically 1 user bought the item, 0 he did not)
If you need more details let me know ..(you have access to a free version of Azure ML where you can try all this)
Regards

Resources